@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    padding-top: 100px; /* Adjusted for banner + navbar */
    margin: 0;
    padding: 0;
     font-family: "Inter", sans-serif !important;

  }
 
  
  h1, h2, h3, h4, h5, h6, .fw-bold, .overlay-heading, .carousel-caption h2, .carousel-caption h3 {
    font-family: 'Poppins', sans-serif;
  }
  
  .navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
  }

  .navbar.shrink .navbar-brand img {
    height: 30px;
  }


  .transition-navbar {
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
  }

  .transition-navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #mainNavbar {
    background-color: transparent;
    transition: all 0.4s ease;
  }

  #mainNavbar .nav-link,
  #mainNavbar i {
    color: white;
    transition: color 0.4s ease;
  }

  .logo-black {
    display: none;
  }

  .logo-white {
    display: inline;
  }

  
  #mainNavbar {
    background-color: transparent;
    transition: all 0.4s ease;
  }

  .nav-icon i {
    color: white;
    transition: color 0.4s ease;
  }

  .logo-black {
    display: none;
  }

  .logo-white {
    display: inline;
  }

  /* SCROLL STATE */
  #mainNavbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  #mainNavbar.scrolled .nav-icon i {
    color: black;
  }

  #mainNavbar.scrolled .logo-white {
    display: none;
  }

  #mainNavbar.scrolled .logo-black {
    display: inline;
  }

/* Default - White icons */
.nav-icon i {
    color: white;
    transition: color 0.3s ease;
  }
  
  /* On Scroll - Black icons */
  #mainNavbar.scrolled .nav-icon i {
    color: black;
  }
  /* Default (transparent navbar) */

 
  
  
  @media (max-width: 576px) {
    .navbar-brand img {
      height: 15px;
    
    
    }
  }
 
.mt-with-banner {
  margin-top: 26px; /* default for desktop */
  transition: margin-top 0.3s ease;
}

/* ✅ Mobile view (screen width <= 767px) */
@media (max-width: 767px) {
  .mt-with-banner {
    margin-top: 12px; /* or any value you want for mobile */
  }
}

  
  .mt-no-banner {
    margin-top: 0 !important;
  }
  
  .shrink {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    transition: all 0.3s ease;
  }
  
  
  #promoBanner {
    transition: opacity 0.3s ease;
  }
  
  .promo-banner {
    background-color: #ff009c;
    font-size: 8px;
    z-index: 1040;
    width: 100%;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    position: relative; /* Keep it from overlaying navbar */
    transition: top 0.3s ease;
  }
  
  .promo-hidden {
    display: none;
  }
  
 
  /* Promo banner height compensation */
/* .mt-with-banner {
  top: 32px;
} */

.mt-no-banner {
  top: 0 !important;
}

/* Remove box shadow if you want flat navbar look */
.scrolled {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
/* Smaller gap for icons */
.navbar .nav-icon {
  font-size: 16px;
  margin-left: 10px;
}

/* For mobile view */
@media (max-width: 768px) {
  .navbar .nav-icon {
    margin-left: 8px;
    font-size: 14px;
  }
}

  
    

/* Banner height compensation only for mobile */
@media (max-width: 768px) {
  /* .mt-with-banner {
    top: 10px !important;
  } */

  .mt-no-banner {
    top: 0 !important;
  }



  .navbar.scrolled {
    top: 0 !important; /* Stick to top when banner hides */
  }

  #promoBanner {
    font-size: 10px;
    padding: 6px 10px;
    height: auto;
    line-height: normal;
  }
}
@media (min-width: 768px) {
    #promoBanner {
        font-size: 12px;
    }
}
/* Desktop - don't apply margin top */
@media (min-width: 769px) {
  .mt-with-banner,
  .mt-no-banner {
    top: 0 !important;
  }

  #mainNavbar {
    top: 0 !important;
  }
}




/* Mobile adjustments */
@media (max-width: 768px) {
  #searchBox {
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  #searchBox input.form-control {
    font-size: 14px;
    padding: 10px;
  }

  #searchBox .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}




  .carousel-caption {
    bottom: 20%;
  }
  .carousel-caption {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .carousel-item.active .carousel-caption {
    opacity: 1;
  }
  .btn-pink {
    background-color: #ff009c;
    color: #fff;
    border: none;
    border-radius: 100px;
  }
  .btn-pink:hover {
    background-color: #e6008a; /* slightly darker on hover */
  }
  .carousel-img {
     /* or set a specific px value like 500px */
    object-fit: cover;
    object-position: center;
  }
    


  .custom-indicators {
    z-index: 5;
  }

  .indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .indicator-dot.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ff009c;
    animation: fillDot 4s linear forwards;
  }

  @keyframes fillDot {
    0% { width: 0%; }
    100% { width: 100%; }
  }


  .category-carousel .item img {
     /* optional for smooth corners */
    padding: 1px;       /* optional for inner image spacing */
  }
 
  .category-carousel .item {
    position: relative;
  }

  .category-carousel .overlay-heading {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
   
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
  }

  .category-carousel .item img {
    display: block;
    width: 100%;
    height: 50%;
  } 





   

  .product-card {
    transition: transform 0.3s ease;
  }

  .product-img {
   
    object-fit: cover;
    width: 100%;
  }
  
  .wishlist-btn,
  .plus-btn {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    padding: 6px 9px;
    font-size: 14px;
    color: #ff009c;
    z-index: 10;
  }
  
  .wishlist-btn:hover,
  .plus-btn:hover {
    background-color: #ff009c;
    color: white;
  }
  
  
  
  
  .offer-badge {
    background-color: #ff0000;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 9;
  }

  
  .product-card:hover .plus-btn {
    opacity: 1;
    visibility: visible;
  }
  
  .plus-btn-inside,
  .wishlist-btn {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    padding: 6px 9px;
    font-size: 14px;
    color: #ff009c;
    z-index: 10;
  }
  
  
  
  .wishlist-btn:hover,
  .plus-btn:hover {
    background-color: #ff009c;
    color: white;
  }
  
  .offer-badge {
    background-color: #ff009c;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 5;
  }
  
  .custom-carousel-btn {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .product-card:hover .custom-carousel-btn {
    opacity: 1;
    visibility: visible;
  }
  
  .custom-carousel-btn i {
    font-size: 14px;
    color: #000;
  }

 .product-card .hover-btn,
.product-card .plus-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .hover-btn,
.product-card:hover .plus-btn {
  opacity: 1;
}

.hover-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
  color: #000;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.product-card .hover-button,
.product-card .plus-btn-inside {
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.product-card:hover .hover-button,
.product-card:hover .plus-btn-inside {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px;
  border-radius: 50%;
}

/* ✅ Plus Button: inside image bottom-left */
.plus-btn-inside {
  bottom: 10px;
  left: 10px;
  background: white;
  border: none;
  border-radius: 50%;
  padding: 6px 10px;
  font-size: 16px;
  color: #ff009c;
  z-index: 10;
}






.essentials-banner {
  position: relative;
  /*height: 400px;*/
  overflow: hidden;
}

.essentials-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.essentials-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Full overlay */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
}

.explore-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive button */
@media (max-width: 768px) {
    .explore-btn {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
}

/* Responsive */










  .kurtas-card img {
    height: 300px;
    object-fit: cover;
  }
  .kurtas-carousel-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s ease;
  }
  .kurtas-card:hover .kurtas-carousel-btn {
    opacity: 1;
  }
  .kurtas-offer {
    background-color: #ff009c;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
  }
  .kurtas-plus,
  .kurtas-wishlist {
    background-color: #fff;
    border: none;
    font-size: 14px;
    border-radius: 50%;
    padding: 6px 8px;
  }

  



  
  
  .coord-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .coord-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Overlay text box */
  .coord-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    color: #fff;
  }
  
  /* Button hover effect */
  .coord-overlay .btn:hover {
    background-color: #ff009c;
    color: #fff;
    border-color: #ff009c;
  }
  
  /* Responsive mobile adjustments */
  @media (max-width: 768px) {
    .coord-banner {
      height: auto;
    }
  
    .coord-image {
      height: 60vh;
    }
  
    .coord-overlay h2 {
      font-size: 1.8rem;
    }
  
    .coord-overlay p {
      font-size: 1rem;
    }
  
    .coord-overlay .btn {
      font-size: 0.9rem;
      padding: 8px 20px;
    }
  }
  

 

  .dress-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .dress-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .dress-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    color: #fff;
  }
  
  .dress-overlay .btn:hover {
    background-color: #ff009c;
    color: #fff;
    border-color: #ff009c;
  }
  
  /* Responsive mobile view */
  @media (max-width: 768px) {
    .dress-banner {
      height: auto;
    }
  
    .dress-image {
      height: 60vh;
    }
  
    .dress-overlay h2 {
      font-size: 1.8rem;
    }
  
    .dress-overlay p {
      font-size: 1rem;
    }
  
    .dress-overlay .btn {
      font-size: 0.9rem;
      padding: 8px 20px;
    }
  }
  




  


  .feature-icon {
    width: 40px;
    height: auto;
  }
  
  .feature-icons-section {
    background-color: #f0d3e5; /* soft beige like your image */
  }
  
  @media (max-width: 768px) {
    .feature-icon {
      width: 35px;
    }
    .feature-icons-section p {
      font-size: 0.75rem;
    }
  }
  
  .footer a:hover {
    color: #ff009c !important;
    text-decoration: underline;
  }
  




  .work-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .work-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 600px;
    width: 90%;
    padding: 20px;
    text-align: center;
    color: #fff;
  }
  
  /* Headings and button */
  .work-text-overlay h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .work-text-overlay p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .work-text-overlay .btn {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 0;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  
  .work-text-overlay .btn:hover {
    background-color: #ff009c;
    color: #fff;
  }
  
  @media (max-width: 768px) {
  .work-text-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px;
    width: 95%;
  }

  .work-text-overlay h2 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }

  .work-text-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .work-text-overlay .btn {
    font-size: 0.8rem;
    padding: 6px 16px;
    width: auto;
    display: inline-block;
  }
}

  

  