body{
  font-family:"Poppins",sans-serif;
  background:#fff;color:#111;
  overflow-x:hidden;
  animation:fadeInPage 1.2s ease;
}
@keyframes fadeInPage{
  from{opacity:0;transform:translateY(25px);}
  to{opacity:1;transform:translateY(0);}
}

.section{padding:95px 30px;}

.section-title{
  font-size:40px;font-weight:900;text-align:center;
  opacity:0;transform:translateY(35px);
  animation:sectionPop .9s ease-out forwards;
}
.section-title::after{
  content:"";
  width:90px;height:4px;margin:15px auto 0;
  border-radius:30px;display:block;
  background:linear-gradient(90deg,#ff0054,#ff6c6c,#ff0051);
  animation:glowBar 2.4s ease-in-out infinite alternate;
}

@keyframes glowBar{
  0%{box-shadow:0 0 12px #ff0054;}
  100%{box-shadow:0 0 28px #ff6c6c;}
}

@keyframes sectionPop{
  0%{opacity:0;transform:translateY(50px) scale(.92);}
  100%{opacity:1;transform:translateY(0) scale(1);}
}
.reveal{
  opacity:0;transform:translateY(35px) scale(.97);
  filter:blur(4px);
  transition:.9s cubic-bezier(.19,.77,.36,1.15);
}
.reveal.show{
  opacity:1;transform:translateY(0) scale(1);
  filter:blur(0);
}
.nav-link{
    color:#111;
    transition:.3s;
}
.nav-link:hover{
    color:#ff326a;
    letter-spacing:1px;
}
.mobile-link{
    color:#111;
    display:block;
    padding:8px 0;
    transition:.3s;
}
.mobile-link:hover{
    color:#ff326a;
    transform:scale(1.06);
}
.mobile-nav{
    animation:drop .35s ease;
}
@keyframes drop{
    from{opacity:0; transform:translateY(-10px);}
    to{opacity:1; transform:translateY(0);}
}
.btn-primary{
  background:linear-gradient(135deg,#000,#ff3b5c);
  color:#fff;padding:15px 32px;font-weight:700;
  border-radius:14px;transition:.45s;
  box-shadow:0 0 0 rgba(0,0,0,.15) inset;
}
.btn-primary:hover{
  transform:translateY(-6px) scale(1.08);
  box-shadow:0 16px 38px rgba(255,35,90,.5);
  background:linear-gradient(135deg,#ff3b5c,#000);
}
.hero-section{
    padding:110px 30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.hero-title{
    font-size:62px;
    font-weight:900;
    line-height:1.05;
}

.hero-title span{
    background:linear-gradient(90deg,#ff0e57,#ff7070);
    -webkit-background-clip:text;
    color:transparent;
    animation:textNeon 2.6s ease-in-out infinite alternate;
}

@keyframes textNeon{
  0%{ filter:drop-shadow(0 0 8px #ff326a); }
  100%{ filter:drop-shadow(0 0 22px #ff6d80); }
}

/* Image Styling */
.hero-img{
    width:100%;
    max-width:480px;
    border-radius:26px;
    transition:.65s;
    box-shadow:0 28px 65px rgba(0,0,0,.12);
}
.hero-img:hover{
  transform:perspective(900px) rotateY(8deg) scale(1.07);
  box-shadow:0 38px 75px rgba(0,0,0,.22);
}
.collection-banner{
  border-radius:24px;height:300px;font-size:32px;
  display:flex;align-items:flex-end;padding:26px;
  color:white;font-weight:900;text-transform:uppercase;
  background-size:cover;background-position:center;
  transition:.7s cubic-bezier(.23,1,.32,1.2);
}
.collection-banner:hover{
  transform:scale(1.08) translateY(-6px) rotate(.8deg);
  filter:brightness(1.18);
  box-shadow:0 26px 60px rgba(255,30,95,.38);
}

.circle-cat{text-align:center;}
.circle-cat img{
  width:140px;height:140px;border-radius:50%;
  object-fit:cover;border:6px solid #eee;
  transition:.55s;
}
.circle-cat img:hover{
  transform:scale(1.22) rotate(4deg);
  border-color:#ff1f58;
  box-shadow:0 18px 40px rgba(255,30,95,.45);
}

.product-card{
  border-radius:20px;padding:16px;background:#fff;
  transition:.55s;overflow:hidden;position:relative;
  box-shadow:0 10px 32px rgba(0,0,0,.08);
}
.product-card:hover{
  transform:translateY(-14px) scale(1.05);
  box-shadow:0 22px 60px rgba(0,0,0,.22);
}
.product-card img{transition:.65s;}
.product-card:hover img{transform:scale(1.25);}

.review-card{
  background:#fff;padding:45px;border-radius:22px;
  box-shadow:0 16px 48px rgba(0,0,0,.09);
  transition:.45s;
}
.review-card:hover{
  transform:translateY(-10px) scale(1.03);
}

.footer{background:#000;color:#ccc;padding:110px 30px;}
.footer-heading{font-size:26px;font-weight:900;margin-bottom:22px;}
.footer-list li{
  margin-bottom:10px;color:#bdbdbd;
  transition:.35s;
}
.footer-list li:hover{
  color:#ff5e7d;transform:translateX(8px);
}
.footer-bottom{
  text-align:center;margin-top:55px;
  color:#aaa;font-size:15px;
}

#cart-alert{
  position:fixed;top:38px;right:38px;
  background:#000;color:white;font-weight:800;
  padding:16px 26px;border-radius:12px;
  opacity:0;z-index:9999;font-size:17px;
  transform:translateX(70px);
  transition:.7s cubic-bezier(.3,.7,.4,1.5);
}
#cart-alert.show{
  opacity:1;transform:translateX(0);
}
@keyframes slideBrands{
  0%{transform:translateX(0);}
  45%{transform:translateX(-180%);}
  100%{transform:translateX(0);}
}
.animate-scrollSlow{
  animation:slideBrands 7s cubic-bezier(.55,.15,.45,1) infinite;
}
.animate-scrollSlow:hover{
  animation-play-state:paused;
}
@media(max-width:992px){
    nav ul{
        display:none; 
    }
    .mobileMenuBtn{
        display:block; 
    }
}
nav ul.active{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:65px;
    left:0;
    width:100%;
    background:#fff;
    padding:18px 0;
    gap:14px;
    box-shadow:0 15px 25px rgba(0,0,0,.1);
    border-bottom:2px solid #eee;
}

@media(max-width:900px){
    .hero-title{ font-size:48px; }
      footer .grid{
    grid-template-columns: repeat(2,1fr);
    text-align:center;
  }
}
@media(max-width:600px){
    .hero-section{ padding:90px 20px; }
    .hero-title{ font-size:38px; line-height:1.2; }
      footer .grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  footer .grid div{
    margin-bottom:25px;
  }
    #floatingCart{
    width:90%;
    left:50%;
    transform:translateX(-50%);
    bottom:15px;
    border-radius:18px;
  }
  #floatingCart h3{
    font-size:18px;
  }
  #cartItems{
    max-height:200px;
  }
    .flash-sale-grid{
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .flash-sale-grid > div{
    width: 100% !important;
    margin: 0 auto;
  }

  .flash-sale-grid img{
    height: 260px !important;
    object-fit: cover;
  }

  h2{
    font-size: 24px !important;
  }


}
@media(max-width:420px){
    .hero-title{ font-size:30px; }
}

@media(max-width:768px){
    .feature-banner img{
        height:350px;
    }
    .feature-content{
        left:50%;
        transform:translate(-50%,-50%);
        text-align:center;
        padding:0 18px;
        max-width:95%;
    }
    .feature-content h2{
        font-size:32px;
        line-height:1.2;
    }
    .feature-content p{
        font-size:16px;
        margin-top:8px;
    }
    .feature-content button{
        font-size:17px;
        padding:10px 24px;
    }
      .category-slider{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:22px;
    padding-bottom:8px;
  }
  .category-slider .group{
    scroll-snap-align:center;
    min-width:95px;
  }
  .category-slider img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
  }
  #categories h2{
    font-size:22px;
    margin-bottom:22px;
  }
  
    #newsletter-heading{
    font-size: 30px!important;
    line-height: 38px;
  }
  .newsletter-form{
    flex-direction: column!important;
    width: 100%;
  }
  .newsletter-form input{
    width: 100%!important;
  }
  .newsletter-form button{
    width: 100%;
  }
}

@media(max-width:500px){
    .feature-banner img{
        height:300px;
    }
    .feature-content h2{
        font-size:26px;
    }
    .feature-content p{
        font-size:15px;
    }
    .feature-content button{
        font-size:15px;
        padding:9px 20px;
    }
}

#shop .grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:35px;
}

@media(max-width:1024px){
    #shop .grid{
        grid-template-columns: repeat(2,1fr);
        gap:28px;
    }
    .product-card img{
        height:220px;
    }
      .category-slider{
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
  }
  .category-slider .group{
    min-width:100px;
  }

    section {
    padding-inline: 18px;
  }
}
@media(max-width:600px){
    #shop .grid{
        grid-template-columns: 1fr;
        gap:25px;
    }
    .product-card{
        width:100%;
        padding:12px;
    }
    .product-card img{
        height:250px; 
        object-fit:contain;
    }
    .product-card h3{
        font-size:18px;
        margin-top:8px;
    }
    .price{
        font-size:15px;
    }
    .product-card button{
        padding:10px 0;
        font-size:16px;
        border-radius:6px;
    }
}
@media(max-width:420px){
    .product-card img{
        height:220px;
    }
    .product-card h3{
        font-size:16px;
    }
    .product-card button{
        font-size:15px;
        padding:9px;
    }
}
@media(max-width:480px){
  .category-slider .group{
    min-width:85px;
  }
  .category-slider p{
    font-size:13px;
  }

    #newsletter-heading{
    font-size: 26px!important;
  }
}

