/* START OF SECTION: BODY */
body{
    min-height: 100vh;
    height: auto;
}
/* END OF SECTION: BODY */

/* START OF SECTION: HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 65vh;
  min-height: 320px;
  margin: 1.5rem auto 0;
  box-sizing: border-box;
  padding: 0 1.25rem;
  overflow: hidden;
  background: transparent;
  border-radius: 14px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.carousel-slide.active img {
  transform: scale(1.1);
}

.carousel-content {
  position: absolute;
  bottom: 80px;
  left: 10px;
  color: white;
  z-index: 2;
  max-width: 600px;
}

.carousel-content h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin: 0;
}

.carousel-content p {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 3, 105, 0.8);
  padding: 0.18rem 0.4rem;
  color: white;
  width: 50px;
  letter-spacing: 0.5px;
  line-height: 1.05;
  z-index: 3;
  display: flex;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.carousel-btn:hover {
  background: #fc0369;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 30px;
}

.carousel-btn.next {
  right: 30px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #fc0369;
  transform: scale(1.2);
}


.carousel-btn {
  display: none !important;
}
/* END OF SECTION: HERO CAROUSEL */

/* START OF SECTION: BANNER */
.banner-container{
  margin-top: 20px;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.banner-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "Exo 2", sans-serif;
    color: white;
    text-align: center;
    font-size: 50px;
    margin: 0;
    white-space: nowrap;
    z-index: 2;
}

.banner-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* END OF SECTION: BANNER */

/* START OF SECTION: MERCHANDISE GRID */
.M-big-container{
    margin: 0px 45px;
    font-family: "Exo 2", sans-serif;

}
.M-big-container h1{
    font-size: 35px;
    color: white;
    margin-left: 50px;
}
.M-sub-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 60px;
    
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}
.M-small-container{
     background-color: rgb(13, 21, 32);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgb(22, 83, 239);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    max-width: 280px;
}
.small-img-container{
    
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.small-img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transform: scale(1.03);
    transition: transform 220ms ease;
}
.small-img-container img:hover{
    transform: scale(1.06);
}
.small-text-container{
    padding: 18px 16px;
    margin: 0;
    display: block;
}
.small-text-container{
    
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.small-text-container h2{
    font-size: 22px;
    margin: 0 0 6px 0;
    line-height: 1.15;
}
.small-text-container p{
    font-size: 12px;
    margin: 0 0 10px 0;
    opacity: 0.85;
}
.small-text-container h3{
    color: rgb(5, 133, 230);
    font-size: 20px;
    margin: 8px 0 0 0;
}
.small-img-container h3 {
    display: none;
}


.M-small-container{
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
    .M-small-container:hover,
    .M-small-container:focus-within{
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 2px 12px rgba(22,83,239,0.06) inset;
        border-color: rgba(49,77,223,0.9);
        cursor: pointer;
    }
}

.M-small-container:focus-within{
    outline: 2px solid rgba(49,77,223,0.12);
}
.slider-track {
    display: contents; 
}


.prev, .next {
    display: none; 
}
/* END OF SECTION: MERCHANDISE GRID */

/* START OF SECTION: CHECKOUT */
#check-out-headertext{
    font-family: "Exo 2", sans-serif;
    font-size: 40px;
    text-align: center;
    margin: 0 0 30px 0;
}
.M-medium-container{
    
    width: min(1200px, 100%);
    margin: 60px auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-sizing: border-box;
}

.M-medsub-container{
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    gap: 12px;
}

.checkout-div-one,
.checkout-div-two {
    width: 100%;
    min-height: 220px;
    overflow: hidden;
}

.M-medsub-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.checkout-div-three{
    width: 100%;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.checkout-div-three img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .M-medsub-container img:hover,
    .checkout-div-three img:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    }
}
.long-offer-container{
    background-color: rgb(13,21,32);
    width: 1170px;
    height: 250px;
    margin: 80px 170px;
    border-radius: 15px;
    line-height: 23px;
    padding: 15px;

}
.long-offer-container h1{
    font-family: "Exo 2", sans-serif;
    font-weight: lighter;
    text-align: center;
    font-size: 40px;
    color: rgb(254, 3, 105);
}
.long-offer-container h3{
    font-family: "Exo 2", sans-serif;
    font-weight: lighter;
    text-align: center;
    font-size: 20px;
}
.subscribe-cont{
    text-align: center;
    display: flex;
    gap: 15px;
    margin: 40px 240px;

}
#input-box{
    width: 560px;
    height: 35px;
    border-radius: 13px;
    background-color: rgba(255, 255, 255, 0.80);
    padding-left: 15px;
}
.long-offer-container button{
    background-color:rgb(49, 77, 223);
    border: none;
    color:white;
    font-family: "Exo 2", sans-serif;
    width: 100px;
    padding: 5px;
    border-radius: 12px;

}
.long-offer-container button:hover{
    background-color: rgb(16, 38, 156);
}
.site-footer{
    border-top: solid 1px rgb(22, 83, 239);
}
/* END OF SECTION: CHECKOUT */

/* START OF SECTION: NEWSLETTER */
.newsletter-cta {
    padding: 52px 18px 60px;
    margin: 0 auto 32px;
    max-width: 1160px;
    box-sizing: border-box;
}

.newsletter-inner {
    background: radial-gradient(120% 140% at 10% 10%, rgba(43,120,255,0.08), transparent 35%),
                radial-gradient(140% 140% at 90% 20%, rgba(255,42,127,0.08), transparent 40%),
                #0f172a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(2,6,23,0.5), inset 0 1px 0 rgba(255,255,255,0.02);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.newsletter-copy h2 {
    margin: 0 0 6px;
    font-family: "Exo 2", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    color: #ff2a7f;
    letter-spacing: 0.4px;
}

.newsletter-copy p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.98rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 2fr auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 12px auto 0;
}

.newsletter-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.12);
    color: #0b1224;
    font-size: 0.98rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: rgba(11,18,36,0.6);
}

.newsletter-button {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(46,112,255,0.4);
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 700;
    font-family: "Exo 2", sans-serif;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
    justify-self: end;
    margin-left: 26px;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(37,99,235,0.4);
    background: linear-gradient(90deg, #1d4ed8, #1e3a8a);
}

@media screen and (max-width: 900px) {
    .newsletter-inner {
        padding: 24px;
    }
    .newsletter-form {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
        gap: 12px;
    }
    .newsletter-button {
        margin-left: 0;
        width: 100%;
        justify-self: stretch;
    }
}

@media screen and (max-width: 540px) {
    .newsletter-cta {
        padding: 28px 12px 40px;
        margin: 38px auto 18px;
    }
    .newsletter-inner {
        padding: 18px;
        gap: 14px;
    }
    .newsletter-copy h2 {
        font-size: 1.3rem;
    }
    .newsletter-copy p {
        font-size: 0.95rem;
    }
    .newsletter-button {
        margin-left: 0;
        width: 100%;
        justify-self: stretch;
        text-align: center;
    }
}
/* END OF SECTION: NEWSLETTER */

/* START OF SECTION: MEDIA QUERIES */
@media screen and (max-width: 768px) {
    .banner-container {
        height: 180px;
        margin-top: 15px;
    }

    .banner-text {
        font-size: 32px;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-content {
        bottom: 50px;
        left: 30px;
    }

    #check-out-headertext {
        font-size: 28px;
        text-align: left;
        margin: 0 0 20px 4px;
        padding: 0;
    }

    .M-medium-container {
        width: 100%;
        margin: 32px auto;
        padding: 0 14px;
    }

    .M-medsub-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
        width: 100%;
    }

    .checkout-div-three {
        width: 100%;
        margin-top: 12px;
    }

    .long-offer-container {
        width: auto;
        margin: 40px 20px;
        height: auto;
        padding: 30px 20px;
    }

    .long-offer-container h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .long-offer-container h3 {
        font-size: 16px;
        line-height: 24px;
    }
}


@media screen and (max-width: 430px) {
    .banner-container {
        height: 140px;
        margin-top: 15px;
    }

    .banner-text {
        font-size: 20px;
    }
    .banner-container{
  margin-top: 30px;
  height: 150px;
  position: relative;
  
}


.hero-carousel {
    height: 50vh;
    min-height: 280px;
    margin: 1rem auto 0;
    padding: 0 0.75rem;
}

.carousel-content {
    bottom: 20px;
    left: 15px;
}

.carousel-content h2 {
    font-size: 0.875rem;
    line-height: 1.2;
}

.carousel-content p {
    font-size: 0.625rem;
    line-height: 1.3;
}

.carousel-dots {
    bottom: 15px;
    gap: 8px;
}

    .M-big-container h1{
        font-size: 35px;
        color: white;
        margin-left: 10px;
    }

    #check-out-headertext{
        font-family: "Exo 2", sans-serif;
        font-size: 18px;
        text-align: left;
        margin: 0 0 16px 4px;
        width: auto;
        padding: 0;
    }
    .M-medsub-container{
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .M-medsub-container img {
        border-radius: 6px;
    }

    .checkout-div-three{
        width: 100%;
        margin-top: 12px;
    }

    .checkout-div-three img {
        border-radius: 6px;
    }
.long-offer-container{
    background-color: rgb(13,21,32);
    width: auto;
    height: auto;
    margin: 20px;
    border-radius: 15px;
    padding: 20px;

}
.long-offer-container h1{
    font-family: "Exo 2", sans-serif;
    font-weight: lighter;
    text-align: center;
    font-size: 20px;
    color: rgb(254, 3, 105);
    margin: 0;
    line-height: 30px;
}
.long-offer-container h3{
    font-family: "Exo 2", sans-serif;
    font-weight: lighter;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.subscribe-cont{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin:60px 5px ;
    width: 300px;
    justify-content: center;
    align-items: center;

}
#input-box{
    width: 250px;
    height: 35px;
    border-radius: 13px;
    background-color: rgba(255, 255, 255, 0.80);
    padding-left: 15px;
    border: none;
}
.long-offer-container button{
    background-color:rgb(49, 77, 223);
    border: none;
    color:white;
    font-family: "Exo 2", sans-serif;
    width: 100px;
    padding: 5px;
    border-radius: 5px;
    height: 40px;

}
}

@media screen and (max-width: 1200px) {
    .M-sub-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
    .long-offer-container {
        width: 90%;
        margin: 40px auto;
    }
    
    .M-small-container {
        min-height: 520px;
    }
}

@media screen and (max-width: 900px) {
    
    .M-sub-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .M-small-container{
        min-height: 430px;
    }
    .small-img-container{
        height: 300px;
    }
    .M-big-container h1{
        font-size: 28px;
        margin-left: 16px;
    }
}

@media screen and (max-width: 600px) {
    
    .M-sub-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 14px;
    }
    .M-small-container{
        min-height: 400px;
    }
    .small-img-container{
        height: 240px;
    }
    .M-big-container h1{
        font-size: 26px;
    }
    .M-medium-container, .M-medsub-container, .checkout-div-three{
        width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .long-offer-container{
        width: 95%;
        margin: 20px auto;
        height: auto;
        padding: 20px;
    }
}
/* END OF SECTION: MEDIA QUERIES */
