*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

:root{
  --primary:#e91e63;
  --dark:#222;
  --gray:#f5f5f5;
}

/* HEADER */
.top-header{
  background:var(--primary);
  color:#fff;
  font-size:14px;
}
.top-header .container{
  display:flex;
  justify-content:space-between;
  padding:8px 30px;
}
.top-header .container{
  display:flex;
  justify-content:space-between;
  padding:12px 40px;   
  line-height:1.6;
}
.top-header span{
  margin-right:20px;
}
.top-header {
  position: relative;
  z-index: 1000;
}
.navbar {
  margin-top: -10px;   
}

/* NAVBAR */
.navbar{
  background:#fff;
  position:sticky;
  top:0;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
  z-index:999;
}
.logo img {
  cursor: pointer;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 30px;
}
.logo img{height:50px}

.nav-right{
  display:flex;
  align-items:center;
}

/* MENU ONE LINE */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
  position:relative;
}
.hamburger .close-icon{
  display:none;
}
.nav-menu{
  display:flex;
  align-items:center;
  list-style:none;
  gap:10px;
}
.nav-menu a{
  text-decoration:none;
  color:var(--dark);
  padding:10px 16px;
  font-weight:500;
}
.nav-menu a:hover{color:var(--primary)}

/* ===== MOBILE MENU LOGO ===== */
.mobile-menu-logo{
  display:none;
}

/* ===== SHOW LOGO INSIDE MENU (≤900px) ===== */
@media (max-width:900px){

  .mobile-menu-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 0 10px;
    border-bottom:1px solid #eee;
    margin-bottom:10px;
  }

  .mobile-menu-logo img{
    height:60px;
    width:auto;
  }
}

/* DROPDOWN */
.dropdown{position:relative}
.drop-btn{display:flex;align-items:center;gap:6px}
.arrow{transition:.3s}

.dropdown:hover .arrow{transform:rotate(180deg)}

.dropdown-menu{
  position:absolute;
  top:45px;
  left:0;
  width:230px;
  background:#fff;
  list-style:none;
  border-radius:10px;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:.3s;
}
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  display:flex;
  gap:10px;
  padding:12px 18px;
  color:#222;
}
.dropdown-menu a:hover{
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  color:#fff;
}

/* ICONS */
.nav-icons a{
  color:#222;
  margin-left:15px;
  font-size:18px;
}

.nav-icons a{
  font-size:18px;
  padding:4px;   
}

.nav-icons{
  display:flex;
  align-items:center;
  gap:12px;   
}

:root{
  --primary:#e91e63;
  --secondary:#ff6f9f;
  --dark:#222;
}

@media (max-width:900px){

  /* ===== MOBILE MENU WRAPPER ===== */
  .nav-menu{
    position:fixed;
    top:80px;
    right:-100%;
    width:100%;
    height:calc(100vh - 80px);
    background:#ffffff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:22px;
    transition:0.5s ease;
    z-index:999;
  }

  .nav-menu.active{
    right:0;
  }

  /* ===== MENU ITEMS ===== */
  .nav-menu li{
    list-style:none;
    width:100%;
    text-align:center;
    opacity:0;
    transform:translateY(30px);
    animation:menuItem .6s forwards;
  }

  .nav-menu li:nth-child(1){animation-delay:.1s}
  .nav-menu li:nth-child(2){animation-delay:.2s}
  .nav-menu li:nth-child(3){animation-delay:.3s}
  .nav-menu li:nth-child(4){animation-delay:.4s}
  .nav-menu li:nth-child(5){animation-delay:.5s}

  @keyframes menuItem{
    to{
      opacity:1;
      transform:translateY(0);
    }
  }

  /* ===== LINKS STYLE ===== */
  .nav-menu a{
    font-size:22px;
    font-weight:500;
    color:#222;
    padding:12px 20px;
    position:relative;
    transition:.4s;
    display:inline-block;
  }

  /* Underline animation */
  .nav-menu a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:3px;
    background:linear-gradient(90deg,#e91e63,#ff6f9f);
    transition:.4s;
    transform:translateX(-50%);
    border-radius:5px;
  }

  .nav-menu a:hover::after{
    width:60%;
  }

  .nav-menu a:hover{
    color:#e91e63;
    transform:scale(1.08);
  }

  /* ===== DROPDOWN ===== */
  .dropdown-menu{
    display:none;
    margin-top:10px;
  }

  .dropdown.active .dropdown-menu{
    display:block;
    animation:dropFade .4s ease;
  }

  @keyframes dropFade{
    from{
      opacity:0;
      transform:translateY(-10px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }

  .dropdown-menu a{
    font-size:18px;
    padding:8px 0;
    color:#555;
  }

  /* Arrow rotate */
  .dropdown .arrow{
    transition:.4s;
  }

  .dropdown.active .arrow{
    transform:rotate(180deg);
  }
}

/* ================= MOBILE VIEW ================= */
@media(max-width:900px){

  /* ===== MENU DRAWER ===== */
  .nav-menu{
    background:linear-gradient(180deg,#ffffff,#fff0f6);
    border-top-left-radius:25px;
    border-bottom-left-radius:25px;
    animation:menuFade .4s ease;
  }

  @keyframes menuFade{
    from{
      opacity:0;
      transform:translateX(80px);
    }
    to{
      opacity:1;
      transform:translateX(0);
    }
  }

  /* Menu Items */
  .nav-menu li{
    border:none;
  }

  .nav-menu a{
    font-size:18px;
    font-weight:500;
    padding:16px 14px;
    border-radius:12px;
    transition:.35s;
  }

  .nav-menu a:hover{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    padding-left:22px;
  }

  /* ===== DROPDOWN MOBILE ===== */
  .dropdown-menu{
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    animation:dropSlide .4s ease;
  }

  @keyframes dropSlide{
    from{
      opacity:0;
      transform:translateY(-10px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }

  .dropdown-menu a{
    padding:12px 10px;
    font-size:16px;
  }

  .dropdown-menu a:hover{
    background:linear-gradient(90deg,#fce4ec,#ffe3ee);
    color:var(--primary);
  }

  /* ===== HAMBURGER ===== */
  .hamburger{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    padding:8px 10px;
    border-radius:10px;
    color:#fff;
    box-shadow:0 8px 20px rgba(233,30,99,.4);
    transition:.3s;
  }

  .hamburger:hover{
    transform:scale(1.1) rotate(5deg);
  }
}

/* ========== MOBILE VIEW (≤900px) ========== */
@media (max-width:900px){

  /* Header hide */
  .top-header{
    display:none;
  }

  /* Navbar layout */
  .nav-container{
    padding:15px 5px;
  }

  /* Logo left */
  .logo{
    flex:1;
  }

  @media (max-width:900px){

  .nav-right{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .nav-icons{
    display:flex;
    align-items:center;
  }

  .nav-icons a{
    font-size:18px;
    margin-left:0;
  }

  .hamburger{
    display:block;
  }
}

  /* Hamburger right */
  .hamburger{
    display:block;
    font-size:26px;
    cursor:pointer;
    z-index:1001;
  }

  /* ===== MENU DRAWER ===== */
  .nav-menu{
    position:fixed;
    top:86px;                 
    right:-100%;
    width:75%;
    height:calc(100vh - 70px);
    background:#fff;
    flex-direction:column;
    padding:20px;
    transition:0.4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,0.2);
    overflow-y:auto;          
  }

  .nav-menu.active{
    right:0;
  }

  .nav-menu li{
    border-bottom:1px solid #eee;
  }

  .nav-menu a{
    padding:14px 10px;
    font-size:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#222;
  }

  /* ===== DROPDOWN (SERVICES) ===== */
  .dropdown-menu{
    position:static;
    display:none;
    background:#fafafa;
    border-left:3px solid #e91e63;
    margin-top:6px;
    padding-left:15px;
    max-height:180px;
    overflow-y:auto;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

  .dropdown-menu a{
    font-size:16px;
    padding:10px 0;
    color:#444;
  }

  /* Arrow rotate */
  .dropdown.active .arrow{
    transform:rotate(180deg);
  }
}

/* banner */

.banner-slider{
  position:relative;
  width:100%;
  height:70vh;
  overflow:hidden;
}

/* SLIDES */
.slides{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 0.6s ease;
}

.slide.active{
  opacity:1;
}

/* ===== BANNER ARROWS ONLY ===== */
.banner-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#fff;
  padding:14px;
  cursor:pointer;
  border-radius:50%;
  z-index:10;
}
.banner-arrow:hover{
  background:#e91e63;
}
.banner-arrow.left{left:20px}
.banner-arrow.right{right:20px}


/* DOTS */
.dots{
  position:absolute;
  bottom:20px;
  width:100%;
  text-align:center;
}
.dots span{
  display:inline-block;
  width:12px;
  height:12px;
  margin:0 5px;
  background:#ddd;
  border-radius:50%;
  cursor:pointer;
}
.dots span.active{
  background:#e91e63;
}

/* RESPONSIVE */
@media(max-width:768px){
  .banner-slider{height:45vh}
  .banner-arrow{padding:10px}
}

@media(max-width:480px){
  .banner-slider{height:35vh}
}

/* ===== SHOP BY SECTION ===== */
.shop-by{
  background:#fdeff2;
  padding:40px 40px;
}

.shop-container{
  max-width:1300px;
  margin:auto;
  text-align:center;
}

.section-title{
  font-size:36px;
  font-weight:600;
  color:#111;
}

.title-line{
  display:block;
  width:80px;
  height:4px;
  background:#e91e63;
  margin:15px auto 50px;
  border-radius:2px;
}

/* GRID */
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

/* CARD */
.category-card{
  text-decoration:none;
  color:#111;
}

.card-img{
  overflow:hidden;
  border-radius:12px;
}

.card-img img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:0.6s ease;
}

/* Hover zoom image */
.category-card:hover img{
  transform:scale(1.08);
}

/* TITLE */
.category-card h3{
  margin-top:18px;
  font-size:22px;
  font-weight:500;
  display:inline-block;
  position:relative;
  padding-bottom:6px;
}

/* Underline animation */
.category-card h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:3px;
  background:#e91e63;
  transition:0.4s ease;
}

/* Hover underline */
.category-card:hover h3::after{
  width:100%;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:1024px){
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .card-img img{
    height:360px;
  }
}

/* Mobile */
@media(max-width:600px){
  .shop-by{
    padding:30px 20px;
  }
  .section-title{
    font-size:28px;
  }
  .category-grid{
    grid-template-columns:1fr;
  }
  .card-img img{
    height:300px;
  }
}

/* ===== VIDEO SECTION ===== */
.video-section{
  padding:10px 0;
  background:linear-gradient(135deg,#fff,#fdeff2);
}

/* Heading container */
.video-container{
  max-width:1300px;
  margin:auto;
  text-align:center;
  padding:0 20px 40px;
}

/* Heading */
.video-title{
  font-size:38px;
  font-weight:600;
  color:#222;
}

.video-line{
  display:block;
  width:90px;
  height:4px;
  background:#e91e63;
  margin:15px auto 40px;
  border-radius:4px;
}

/* FULL WIDTH VIDEO */
.video-wrapper{
  width:100%;
  height:500px;
  overflow:hidden;
  background:#000;
}

.video-wrapper video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .video-title{
    font-size:32px;
  }
  .video-wrapper{
    height:420px;
  }
}

@media(max-width:500px){
  .video-title{
    font-size:26px;
  }
  .video-wrapper{
    height:300px;
  }
}

/* ===== COLLECTION GRID ===== */
.collections-grid{
  padding:20px 40px;
  background:linear-gradient(135deg,#fff,#fdeff2);
}

.collections-header{
  text-align:center;
  margin-bottom:60px;
}

.collections-header h2{
  font-size:38px;
  font-weight:600;
  color:#222;
}

.collections-header span{
  display:block;
  width:90px;
  height:4px;
  background:#e91e63;
  margin:15px auto;
  border-radius:4px;
}

/* ===== PRODUCT GRID ===== */
.collections-cards{
  max-width:1800px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */
.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
  transition:.35s;
}
.product-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.img-box{
  position:relative;
  display:block;
  height:260px;
  overflow:hidden;
}
.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}
.product-card:hover img{
  transform:scale(1.12);
}

/* WISHLIST */
.wishlist{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e91e63;
  font-size:18px;
  box-shadow:0 6px 15px rgba(0,0,0,.2);
}

/* INFO */
.card-info{
  padding:10px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.card-info h3{
  font-size:18px;
  color:#222;
}
.card-info p{
  margin-top:4px;
  font-size:16px;
  font-weight:600;
  color:#e91e63;
}

/* CART */
.cart{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  transition:.3s;
}
.cart:hover{
  transform:scale(1.1);
}

/* ===== EXPLORE BUTTON ===== */
.collections-explore{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:60px;
}
.collections-explore a{
  padding:16px 46px;
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-size:18px;
  box-shadow:0 12px 30px rgba(233,30,99,.35);
}

/* ===== PRODUCT GRID ===== */
.collections-cards{
  max-width:1800px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr); /* Desktop */
  gap:30px;
}

/* ===== 1200px to 900px → 3 Cards ===== */
@media (max-width:1200px) and (min-width:901px){
  .collections-cards{
    grid-template-columns:repeat(3,1fr);
  }
}

/* ===== Below 900px → 2 Cards ===== */
@media(max-width:900px){
  .collections-cards{
    grid-template-columns:repeat(2,1fr);
  }
  .img-box{
    height:230px;
  }
}

/* ===== Mobile → 1 Card ===== */
@media(max-width:500px){
  .collections-cards{
    grid-template-columns:1fr;
  }
  .img-box{
    height:200px;
  }

  .collections-header h2{
    font-size:28px;
  }
}

/* ===== 1200px to 900px → 1 Card Hide ===== */
@media (max-width:1200px) and (min-width:901px){

  /* grid 3 columns */
  .collections-cards{
    grid-template-columns:repeat(3,1fr);
  }

  /* last product card hide */
  .collections-cards .product-card:nth-child(4){
    display:none;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .collections-cards{
    grid-template-columns:repeat(2,1fr);
  }
  .img-box{
    height:230px;
  }
}

@media(max-width:500px){
  .collections-cards{
    grid-template-columns:1fr;
  }
  .img-box{
    height:200px;
  }
}
/* Mobile → 1 card */
@media(max-width:500px){
  .collections-header h2{
    font-size:28px;
  }
}

/* Testimonial  */
/* SECTION */
.testimonial-section{
  padding:40px 16px; 
  background:#fdeff2;
  overflow:hidden;
}

/* WRAPPER */
.testimonial-wrapper{
  max-width:100%;
  margin:auto;
  padding:0 10px;     
  overflow:hidden;
}

/* TRACK */
.testimonial-track{
  display:flex;
  gap:20px;
}

/* CARD */
.testimonial-card{
  background:#fff;
  border-radius:22px;
  padding:24px;
  width:100%;
  max-width:100%;
  flex-shrink:0;
  box-shadow:0 8px 25px rgba(0,0,0,.12);
}

/* DESKTOP */
@media(min-width:901px){
  .testimonial-wrapper{
    max-width:1300px;
  }
  .testimonial-card{
    width: calc((100% - 40px) / 3);
  }
}

/* USER */
.user{
  display:flex;
  align-items:center;
  gap:15px;
}

.user img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.testimonial-card p{
  font-size:16px;
  line-height:1.6;
  color:#555;
}

.floating-call{
  position:fixed;
  right:16px;
  bottom:16px;      /* NOT 0 */
  z-index:999;
}

/* Mobile safety */
@media(max-width:600px){
  .floating-call{
    bottom:20px;
    right:14px;
  }
}

/* ===== VISIT US SECTION ===== */
.visit-section{
  padding:20px 20px;
  background:linear-gradient(135deg,#fff,#fdeff2);
  text-align:center;
}

.visit-container{
  max-width:1100px;
  margin:auto;
}

.visit-title{
  font-size:42px;
  font-weight:600;
  color:#222;
}

.visit-subtitle{
  max-width:800px;
  margin:15px auto 25px;
  font-size:18px;
  color:#444;
  line-height:1.7;
}

.visit-line{
  display:block;
  width:90px;
  height:4px;
  background:#e91e63;
  margin:20px auto 60px;
  border-radius:4px;
}

/* BUSINESS CARD */
.business-card{
  background:linear-gradient(145deg,#111,#222);
  color:#fff;
  max-width:520px;
  margin:0 auto 60px;
  padding:45px 35px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.business-card h3{
  font-size:34px;
  margin-bottom:20px;
  text-decoration:underline;
}

.day{
  font-size:18px;
  opacity:.9;
}

.time{
  font-size:28px;
  font-weight:600;
  margin:10px 0;
}

.note{
  font-size:16px;
  opacity:.8;
}

.business-card hr{
  border:none;
  height:1px;
  background:rgba(255,255,255,.3);
  margin:25px 0;
}

.off{
  font-size:20px;
  font-weight:500;
}

.contact-info{
  margin-top:25px;
  font-size:16px;
  line-height:1.7;
}
.contact-info i{
  color:#ff6f9f;
  margin-right:8px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .visit-title{font-size:34px;}
  .business-card{padding:35px 25px;}
}

@media(max-width:500px){
  .visit-section{padding:30px 15px;}
  .visit-title{font-size:28px;}
  .visit-subtitle{font-size:16px;}
  .business-card h3{font-size:26px;}
  .time{font-size:22px;}
}

/* ===== FOOTER ===== */
.footer{
  background:linear-gradient(135deg,#2b2b2b,#3b2b30);
  color:#eee;
  padding:80px 20px 0;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* COMMON */
.footer-box h4{
  font-size:22px;
  margin-bottom:20px;
  color:#ff6f9f;
  position:relative;
}
.footer-box h4::after{
  content:"";
  width:45px;
  height:3px;
  background:#ff6f9f;
  position:absolute;
  left:0;
  bottom:-8px;
}

/* BRAND */
.footer-box.brand img{
  width:200px;
  margin-bottom:15px;
}
.footer-box.brand h3{
  font-size:22px;
  margin-bottom:10px;
}
.footer-box.brand p{
  font-size:15px;
  line-height:1.7;
  color:#ccc;
}

/* LINKS */
.footer-box ul{
  list-style:none;
  padding:0;
}
.footer-box ul li{
  margin-bottom:10px;
}
.footer-box ul li a{
  color:#ddd;
  text-decoration:none;
  transition:.3s;
}
.footer-box ul li a:hover{
  color:#ff6f9f;
  padding-left:5px;
}

/* CONTACT */
.footer-box p{
  font-size:15px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#ddd;
}
.footer-box i{
  color:#ff6f9f;
}

/* BOTTOM */
.footer-bottom{
  margin-top:60px;
  background:#1f1f1f;
  padding:18px;
  text-align:center;
}
.footer-bottom p{
  font-size:14px;
  color:#aaa;
}
.footer-bottom span{
  color:#ff6f9f;
}
.footer a {
  color: inherit;      
  text-decoration: none; 
  font-weight: inherit;
}
.footer a:hover {
  color: inherit;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
/* Tablet */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer{
    padding:60px 15px 0;
  }

  .footer-container{
    grid-template-columns:1fr;
  }

  /* Sirf BRAND center rahe */
  .footer-box.brand{
    text-align:center;
  }

  /* Baaki sab side me */
  .footer-box:not(.brand){
    text-align:left;
  }

  .footer-box:not(.brand) h4::after{
    left:0;
    transform:none;
  }

  .footer-box:not(.brand) p{
    justify-content:flex-start;
  }
}

/* Mobile */
@media(max-width:500px){
  .footer{
    padding:60px 15px 0;
  }
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-box h4::after{
    left:50%;
    transform:translateX(-50%);
  }
  .footer-box p{
    justify-content:center;
  }
}

/* Mobile (580px se niche) */
@media (max-width: 580px) {
  .footer {
    padding: 60px 15px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Sirf BRAND center rahe */
  .footer-box.brand {
    text-align: center;
  }

  /* Baaki sab left align */
  .footer-box:not(.brand) {
    text-align: left;
  }

  .footer-box:not(.brand) h4::after {
    left: 0;
    transform: none;
  }

  .footer-box:not(.brand) p {
    justify-content: flex-start;
  }

  /* Agar kisi box ko center chahiye */
  .footer-box.brand h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-box.brand p {
    justify-content: center;
  }
}

/* ===== FLOATING CONTACT ICONS ===== */
.floating-contact{
  position:fixed;
  right:20px;
  bottom:30px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

/* Common button style */
.float-btn{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:0.3s ease;
}

/* Call */
.call-btn{
  background:#1e88e5;
}

/* WhatsApp */
.whatsapp-btn{
  background:#25d366;
}

/* Hover effect */
.float-btn:hover{
  transform:scale(1.12);
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:600px){
  .floating-contact{
    right:15px;
    bottom:20px;
  }

  .float-btn{
    width:48px;
    height:48px;
    font-size:22px;
  }
}


/* ================ 
About  Page Section 
==================== */

/* ===== ABOUT BANNER ===== */
.about-banner{
  position:relative;
  width:100%;
  height:70vh;
  background:url("images/about\ banner.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* Dark overlay */
.about-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  );
}

/* Content */
.about-banner-content{
  position:relative;
  text-align:center;
  color:#fff;
  padding:0 20px;
  max-width:900px;
}

.about-banner-content h1{
  font-size:56px;
  font-weight:600;
  margin-bottom:15px;
  text-transform:uppercase;
}

.about-banner-content p{
  font-size:22px;
  letter-spacing:1px;
  color:#ffb3c9;
}

/* ===== RESPONSIVE ===== */

/* Laptop small */
@media(max-width:1200px){
  .about-banner{
    height:60vh;
  }
  .about-banner-content h1{
    font-size:48px;
  }
}

/* Tablet */
@media(max-width:900px){
  .about-banner{
    height:50vh;
  }
  .about-banner-content h1{
    font-size:40px;
  }
  .about-banner-content p{
    font-size:20px;
  }
}

/* Mobile */
@media(max-width:600px){
  .about-banner{
    height:42vh;
  }
  .about-banner-content h1{
    font-size:30px;
  }
  .about-banner-content p{
    font-size:16px;
  }
}

/* Small Mobile */
@media(max-width:400px){
  .about-banner{
    height:38vh;
  }
  .about-banner-content h1{
    font-size:26px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section{
  padding:50px 40px;
  background:#fff;
  overflow:hidden;
}

.about-container{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

/* IMAGE */
.about-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.about-content h2{
  letter-spacing:0.5px;
}

.about-tag{
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  /* -webkit-background-clip:text; */
  -webkit-text-fill-color:transparent;
}

.about-image img{
  width:100%;
  max-width:520px;
  border-radius:50%;
  border:10px solid #fff;
  box-shadow:0 25px 60px rgba(0,0,0,0.25);
  transition:transform 0.8s ease;
}

.about-image{
  max-height:700px; 
  /* overflow:hidden; */
}

/* Hover zoom */
.about-image img:hover{
  transform:scale(1.08);
}

/* CONTENT */
.about-content{
  flex:1;
}

.about-tag{
  display:inline-block;
  margin-bottom:12px;
  color:#e91e63;
  font-weight:600;
  letter-spacing:1px;
}

.about-content h2{
  font-size:42px;
  margin-bottom:20px;
  color:#111;
}

.about-content p{
  font-size:17px;
  color:#555;
  line-height:1.8;
  margin-bottom:18px;
}

/* BUTTON */
.about-btn{
  display:inline-block;
  margin-top:25px;
  padding:14px 40px;
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-size:18px;
  box-shadow:0 12px 30px rgba(233,30,99,.35);
  transition:0.4s ease;
}

.about-btn:hover{
  transform:translateY(-3px) scale(1.05);
}
.about-image.style-one{
  position:relative;
  max-width:520px;
}

.about-image.style-one img{
  width:100%;
  height:550px;           
  object-fit:cover; 
  border-radius:20px;
  position:relative;
  z-index:2;
  box-shadow:0 30px 70px rgba(0,0,0,0.25);
  transition:0.6s ease;
}

.about-image.style-one .bg-shape{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#e91e63,#ff9ebc);
  border-radius:30px;
  top:30px;
  left:-30px;
  z-index:1;
}

.about-image.style-one img:hover{
  transform:translateY(-8px);
}

/* ===== RESPONSIVE ===== */

/* Laptop */
@media(max-width:1200px){
  .about-content h2{
    font-size:36px;
  }
}
@media(max-width:600px){
  .about-image.style-one img{
    height:300px;
  }
}
/* Tablet */
@media(max-width:900px){
  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-image img{
    max-width:420px;
  }

  .about-content h2{
    font-size:32px;
  }
}

/* Mobile */
@media(max-width:600px){
  .about-section{
    padding:60px 20px;
  }

  .about-image img{
    max-width:300px;
  }

  .about-content h2{
    font-size:26px;
  }

  .about-content p{
    font-size:15px;
  }
}

/* ===== MISSION & VISION ===== */
.mv-section{
  padding:40px 60px;
  background:#5a3d3d;
  color:#fff;
  overflow:hidden;
}

.mv-title{
  text-align:center;
  font-size:40px;
  font-weight:600;
}

.mv-line{
  display:block;
  width:90px;
  height:4px;
  background:#e91e63;
  margin:15px auto 10px;
  border-radius:4px;
}

.mv-container{
  margin-top: 2rem;
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
}

.mv-container.reverse{
  flex-direction:row-reverse;
}

/* TEXT */
.mv-text{
  flex:1;
  position:relative;
}

.mv-text h3{
  font-size:28px;
  margin-bottom:18px;
}

.mv-text p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:16px;
  color:#e6f5f3;
}

.quote{
  font-size:90px;
  position:absolute;
  top:-40px;
  left:-10px;
  color:#ffffff40;
}

/* BUTTON */
.mv-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 38px;
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  color:#fff;
  text-decoration:none;
  border-radius:40px;
  font-size:18px;
  transition:.4s;
}
.mv-btn:hover{
  transform:translateY(-4px) scale(1.05);
}

/* MISSION IMAGE */
.mv-image{
  flex:1;
  position:relative;
}

.img-bg{
  margin-top: 2rem;
  position:absolute;
  top:-30px;
  right:-30px;
  width:100%;
  height:100%;
  background:#59b2c1;
  z-index:0;
}

.mv-image img{
  position:relative;
  width:100%;
  max-width:520px;
  border:10px solid #fff;
  box-shadow:0 25px 50px rgba(0,0,0,.35);
  transition:.7s ease;
}
.mv-image img:hover{
  transform:scale(1.07);
}

/* VISION STACK */
/* FIX vision image cut issue */
.mv-stack{
  flex:1;
  position:relative;
  min-height:520px;   
  overflow:visible;  
}


.stack-img{
  width:260px;
  border:8px solid #fff;
  box-shadow:0 25px 45px rgba(0,0,0,.35);
  position:absolute;
  transition:.6s ease;
}

/* ===== VISION STACK (ALL SCREENS SAME) ===== */
.mv-stack{
  flex:1;
  position:relative;
  min-height:520px;
  display:flex;
  justify-content:center;
}

/* Images */
.stack-img{
  position:absolute;
  width:260px;
  border:8px solid #fff;
  box-shadow:0 25px 45px rgba(0,0,0,.35);
  transition:.6s ease;
}

/* Center aligned stack */
.img1{
  top:0;
  left:50%;
  transform:translateX(-60%) rotate(-6deg);
}

.img2{
  top:90px;
  left:50%;
  transform:translateX(-10%) rotate(4deg);
}

.img3{
  top:200px;
  left:50%;
  transform:translateX(-45%) rotate(-2deg);
}

.stack-img:hover{
  transform:translateX(-45%) scale(1.08);
  z-index:10;
}

.img1{top:0; left:0; transform:rotate(-6deg);}
.img2{top:60px; left:120px; transform:rotate(4deg);}
.img3{top:150px; left:40px; transform:rotate(-2deg);}

.stack-img:hover{
  transform:scale(1.08) rotate(0deg);
  z-index:10;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .mv-container{
    flex-direction:column;
    text-align:center;
  }
  .mv-container.reverse{
    flex-direction:column;
  }
  .quote{
    position:static;
    font-size:20px;
  }
  .mv-stack{
    height:420px;
  }
}

@media(max-width:600px){
  .mv-section{
    padding:60px 20px;
  }
  .mv-title{
    font-size:30px;
  }
  .stack-img{
    width:200px;
  }
}

/* ===== TABLET & MOBILE ===== */
@media(max-width:900px){
  .stack-img:hover{
    transform:scale(1.05);
  }
}

@media(max-width:768px){
  .mv-stack{
    min-height:420px;
  }

  .stack-img{
    width:200px;
  }
}

@media(max-width:480px){
  .mv-stack{
    min-height:360px;
  }

  .stack-img{
    width:170px;
  }
}

@media(max-width:768px){
  .mv-stack{
    max-width:300px;
    height:420px;
  }

  .stack-img{
    width:200px;
  }

  .img2{ top:85px; }
  .img3{ top:175px; }
}

@media(max-width:480px){
  .mv-stack{
    max-width:260px;
    height:360px;
  }

  .stack-img{
    width:170px;
  }

  .img2{ top:70px; }
  .img3{ top:150px; }
}

/* Small mobile */
@media(max-width:500px){
  .stack-img{
    max-width:260px;
  }
}

.mv-stack{
  position:relative;
  width:100%;
  max-width:360px;
  height:520px;
  margin:0 auto;      
}

/* ===== DESKTOP ONLY ===== */
@media(min-width:901px){

  /* Vision stack */
  .mv-stack{
    position:relative;
    min-height:520px;
  }

  .stack-img{
    width:260px;
    position:absolute;
  }

  .img1{
    top:0;
    left:50%;
    transform:translateX(-60%) rotate(-6deg);
  }

  .img2{
    top:90px;
    left:50%;
    transform:translateX(-10%) rotate(4deg);
  }

  .img3{
    top:200px;
    left:50%;
    transform:translateX(-45%) rotate(-2deg);
  }

  .stack-img:hover{
    transform:translateX(-45%) scale(1.07);
    z-index:10;
  }
}

/* <!--===== PRIVACY&POLICY SECTION ===== --> */
/* ===== PRIVACY SECTION ===== */
.privacy-section{
  padding:30px 8px;
  background:linear-gradient(135deg,#fde7ef,#fff);
}

.privacy-wrapper{
  max-width:1300px;
  margin:auto;
  background:#fff;
  border-radius:25px;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
  padding:60px;
}

/* HEADER */
.privacy-header{
  text-align:center;
  margin-bottom:5px;
}

.privacy-header h1{
  font-size:42px;
  color:#e91e63;
}

.privacy-header p{
  max-width:800px;
  margin:15px auto 0;
  font-size:17px;
  color:#555;
  line-height:1.7;
}

/* CONTENT */
.privacy-content{
  display:flex;
  gap:60px;
}

/* TEXT */
.privacy-text{
  flex:2;
}

.privacy-text h3{
  margin-top:30px;
  font-size:22px;
  color:#222;
}

.privacy-text p,
.privacy-text li{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-top:10px;
}

.privacy-text ul{
  padding-left:20px;
  margin-top:10px;
}

.contact-line a{
  color:#e91e63;
  text-decoration:none;
}

.effective-date{
  margin-top:30px;
  font-style:italic;
  color:#444;
}

/* IMAGES */
.privacy-images{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:25px;
  align-items:center;
}

.privacy-images img{
  width:100%;
  max-width:320px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
  transition:0.6s ease;
}

.privacy-images img:hover{
  transform:scale(1.08);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .privacy-content{
    flex-direction:column;
  }
  .privacy-images{
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
  }
}

@media(max-width:900px){
  .privacy-images{
    display:none;
  }
}

@media(max-width:600px){
  .privacy-wrapper{
    padding:35px 20px;
  }
  .privacy-header h1{
    font-size:30px;
  }
  .privacy-images img{
    max-width:260px;
  }
}

/* <!-- ===== RETURN & EXCHANGE POLICY SECTION ===== --> */
/* ===== RETURN & EXCHANGE POLICY ===== */
.re-policy-section{
  padding:30px 8px;
  background:linear-gradient(135deg,#fde7ef,#fff);
}

.re-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:50px;
}

/* CARD */
.re-card{
  background:#fff;
  border-radius:25px;
  padding:50px 40px;
  box-shadow:0 25px 55px rgba(0,0,0,0.12);
  transition:0.6s ease;
  position:relative;
  overflow:hidden;
}

.re-card:hover{
  transform:translateY(-10px);
}

/* ICON */
.re-icon{
  width:70px;
  height:70px;
  background:linear-gradient(90deg,#e91e63,#ff6f9f);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  margin-bottom:25px;
}

/* HEADINGS */
.re-card h2{
  font-size:34px;
  color:#222;
}

.re-card span{
  display:block;
  width:60px;
  height:4px;
  background:#e91e63;
  margin:15px 0 25px;
}

/* TEXT */
.re-card p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:15px;
}

.re-card ul{
  padding-left:20px;
  margin:20px 0;
}

.re-card li{
  font-size:16px;
  margin-bottom:10px;
  color:#444;
}

/* NOTE */
.re-note{
  margin-top:20px;
  font-weight:600;
  color:#222;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .re-container{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .re-card{
    padding:35px 25px;
  }
  .re-card h2{
    font-size:28px;
  }
}

/* ===== =====  CONTACT PAGE SECTION ===== =====  */
/* ===== CONTACT BANNER ===== */
.contact-banner{
  position:relative;
  height:320px;
  background:url("images/contact\ banner.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.banner-overlay{
  position:absolute;
  inset:0;
  /* background:linear-gradient(120deg,rgba(233,30,99,.85),rgba(0,0,0,.65)); */
}

.banner-content{
  position:relative;
  text-align:center;
  color:#fff;
  animation:fadeDown 1.2s ease;
}

.banner-content h1{
  font-size:48px;
  margin-bottom:10px;
}

.banner-content p{
  font-size:18px;
  opacity:.9;
}

.contact-section{
  padding:70px 10px;
  background:#f6f9fc;
}

.contact-wrapper{
  max-width:1300px;
  margin:auto;
}

/* INFO CARDS */
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-bottom:50px;
}

.info-box{
  background:#fff;
  padding:8px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.info-box i{
  font-size:28px;
  color:#ff6f9f;
  margin-bottom:10px;
}

.info-box h4{
  margin-bottom:8px;
  font-size:18px;
}

.info-box p{
  color:#555;
  line-height:1.6;
}

/* MAIN AREA */
.contact-main{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
}

/* MAP */
.map-area{
  height:620px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.map-area iframe{
  width:100%;
  height:100%;
  border:0;
}

/* FORM */
.form-area{
  background:#fff;
  padding:45px;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.form-area h2{
  margin-bottom:25px;
  font-size:26px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  padding:18px;
  border-radius:14px;
  border:1px solid #ddd;
  font-size:15px;
}

.contact-form button{
  background: linear-gradient(90deg, #e91e63, #ff6f9f);
  color:#fff;
  border:none;
  padding:15px;
  border-radius:14px;
  font-size:16px;
  cursor:pointer;
}

.contact-form button:hover{
  background:#4823a5;
}

/* ================= RESPONSIVE ================= */
/* Tablets */
@media(max-width:1024px){
  .contact-info-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .contact-main{
    grid-template-columns:1fr;
  }
}
/* 950px se niche address hide */
@media (max-width: 949px) {
  .contact-info-grid .info-box:first-child {
    display: none;
  }
}
@media (max-width: 949px) {
  .address-box {
    display: none;
  }
}
/* 950px se niche address hide + grid adjust */
@media (max-width: 949px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid .info-box:first-child {
    display: none;
  }
}
/* Mobile */
@media(max-width:600px){
  .contact-info-grid{
    grid-template-columns:1fr;
  }

  .form-area{
    padding:30px 20px;
  }

  .form-area h2{
    font-size:22px;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){
  .contact-container{
    grid-template-columns:1fr;
  }
  .contact-cards{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .banner-content h1{
    font-size:34px;
  }
  .contact-right{
    padding:30px 20px;
  }
}

/*==================== GALLERY PAGE SECTION ====================*/
/* ===== GALLERY BANNER ===== */
.gallery-banner{
  position:relative;
  width:100%;
  height:70vh;
  min-height:320px;
  background:
    /* linear-gradient(135deg,rgba(233,30,99,.75),rgba(255,111,159,.75)), */
    url("images/gallery\ banner.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.gallery-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
  z-index:1;
}

.gallery-banner-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:20px;
  color:#fff;
}

.gallery-banner-content h1{
  font-size:56px;
  font-weight:700;
  margin-bottom:15px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.gallery-banner-content p{
  font-size:18px;
  line-height:1.7;
  color:#f5f5f5;
  margin-bottom:25px;
}

.breadcrumb{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  background:rgba(255,255,255,.15);
  padding:10px 18px;
  border-radius:30px;
}

.breadcrumb a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}
.breadcrumb a:hover{
  color:#ffe3ee;
}

.breadcrumb span{
  color:#ffe3ee;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media(max-width:992px){
  .gallery-banner{
    height:60vh;
  }
  .gallery-banner-content h1{
    font-size:42px;
  }
  .gallery-banner-content p{
    font-size:16px;
  }
}

/* Mobiles */
@media(max-width:600px){
  .gallery-banner{
    height:50vh;
    min-height:260px;
  }
  .gallery-banner-content h1{
    font-size:32px;
  }
  .gallery-banner-content p{
    font-size:14px;
  }
  .breadcrumb{
    font-size:13px;
    padding:8px 14px;
  }
}

.gallery-section {
  padding: 60px 20px;
  background: #f8f9fc;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(40px);
  opacity: 0;
  transition: 0.6s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Mobile */
@media(max-width:768px){
  .gallery-title{font-size:2rem;}
}

.gallery-item {
  opacity: 1 !important;
  transform: none !important;
}


/* DRESS PAGE SECTION  */
/* FILTER BUTTON */
.filter-btn{
  display:none;
  margin:15px;
  padding:8px 14px;
  border:1px solid #000;
  background:#fff;
  cursor:pointer;
}
.category-wrapper a {
  text-decoration: none;
  color: inherit;
}

/* LAYOUT */
.layout{
  display:flex;
}

/* FILTER */
.filter{
  width:260px;
  padding:20px;
  border-right:1px solid #ddd;
  background:#fff;
}

.filter-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.close{
  display:none;
  font-size:20px;
  cursor:pointer;
}

/* BOX */
.box{
  margin-bottom:10px;
}

.box-title{
  background:#eaf1ff;
  padding:12px;
  cursor:pointer;
}

.box-content{
  display:none;
  padding:10px;
}

.box-content label{
  display:block;
  margin-bottom:6px;
}

/* PRODUCTS */
.products{
  flex:1;
  padding:30px;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

/* MOBILE */
@media(max-width:900px){
  .filter-btn{
    display:inline-block;
  }

  .filter{
    position:fixed;
    right:0;
    top:0;
    height:100vh;
    transform:translateX(100%);
    transition:.4s;
    z-index:1000;
    border:none;
  }

  .filter.active{
    transform:translateX(0);
  }

  .close{
    display:block;
  }

  .overlay.active{
    opacity:1;
    pointer-events:auto;
  }

  .layout{
    flex-direction:column;
  }
}

