/* Navbar Link Styling */

.navbar a {

    color: #333 !important;

    font-weight: 500;

    margin: 0 8px;

    text-decoration: none;

}

/* Active Link */

.navbar a.active {

    color: #800040 !important;

    font-weight: bold;

    border-bottom: 2px solid #800040;

}

/* Cart Badge */

.badge {

    font-size: 0.7rem;

    padding: 0.3em 0.4em;

}

/* ==============
   GENERAL RESET
================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==============
     HEADER WRAPPER
  ================= */
.hdt-bottom-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s ease-in-out;
}

.hdt-bottom-header.is-sticky {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ==============
     CONTAINER
  ================= */
.hdt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Flex utility */
.hdt-flex {
    display: flex;
}

.hdt-align-center {
    align-items: center;
}

.hdt-justify-center {
    justify-content: center;
}

/* ==============
     NAVIGATION
  ================= */
.hdt-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hdt-nav__ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdt-menu-item {
    position: relative;
}

.hdt-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    padding: 12px 5px;
    transition: color 0.3s ease;
}

.hdt-menu-link:hover {
    color: #800040;
}

/* Active Link Styling */
.hdt-menu-link.active {
    color: #800040;
    font-weight: 600;
    border-bottom: 2px solid #800040;
}

/* ==============
     DROPDOWN MENU
  ================= */
.hdt-menu-item details {
    position: relative;
}

.hdt-menu-item summary {
    list-style: none;
    cursor: pointer;
}

.hdt-menu-item-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hdt-menu-item[open] .hdt-menu-item-arrow {
    transform: rotate(180deg);
}

/* Dropdown box */
.hdt-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    border-radius: 5px;
    z-index: 1000;
}

/* Show dropdown on hover */
.hdt-menu-item:hover .hdt-sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links */
.hdt-sub-menu .hdt-menu-link {
    padding: 10px 15px;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    white-space: nowrap;
}

.hdt-sub-menu .hdt-menu-link:hover {
    background: #f8f8f8;
    color: #800040;
}

/* ==============
     MOBILE DESIGN
  ================= */
.nav-toggle-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: none;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .nav-toggle-btn {
        display: block;
    }

    .hdt-nav__ul {
        flex-direction: column;
        gap: 15px;
        background: #fff;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        border-top: 1px solid #eaeaea;
    }

    /* Mobile dropdown visible when toggled */
    .hdt-navigation.active .hdt-nav__ul {
        display: flex;
    }

    .hdt-menu-link {
        padding: 10px;
        justify-content: flex-start;
    }

    /* Mobile dropdown sub-menu */
    .hdt-sub-menu {
        position: static;
        box-shadow: none;
        transform: translateY(0);
        display: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
    }

    .hdt-menu-item:hover .hdt-sub-menu {
        display: block;
    }
}

/* ==============
     THEME COLORS
  ================= */
.hdt-s-gradient {
    background: linear-gradient(to right, #fff, #fff);
}



/* CATEGORY */
.circle-category-bar {
    width: 100%;
    background: #fff;
    padding: 26px 0 10px 0;
    overflow-x: auto;
}

.circle-category-wrapper {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 14px;
}

.circle-category-item {
    text-align: center;
    min-width: 100px;
    position: relative;
    flex-shrink: 0;
}

.circle-category-item .circle-category-link {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 8px auto;
    border-radius: 50%;
    border: 2.5px solid #ddd;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.26s, box-shadow 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.circle-category-item.active .circle-category-link,
.circle-category-item .circle-category-link:hover,
.circle-category-item .circle-category-link:focus {
    border-color: #922b86;
    /* Your Theme/Primary Color */
    box-shadow: 0 4px 16px 0px #e4c7eb55;
}

.circle-category-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.18s;
}

.circle-category-link:hover img,
.circle-category-link:focus img {
    transform: scale(1.07) rotate(-4deg);
}

.circle-category-label {
    display: block;
    font-size: 13.6px;
    font-family: 'Archivo', Arial, sans-serif;
    color: #292929;
    font-weight: 500;
    margin-top: 7px;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Active underline effect */
.circle-category-item.active .circle-category-label {
    color: #922b86;
    /* highlight color */
    font-weight: 700;
    position: relative;
}

.circle-category-item.active .circle-category-label::after {
    content: "";
    display: block;
    height: 3px;
    background: #922b86;
    margin: 8px auto 0 auto;
    width: 50%;
    border-radius: 2px;
    transition: background 0.2s;
}

/* Emoji (optional) styling */
.emoji {
    font-size: 1em;
    vertical-align: middle;
    margin-left: 2px;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .circle-category-wrapper {
        gap: 18px;
    }

    .circle-category-item .circle-category-link {
        width: 64px;
        height: 64px;
    }

    .circle-category-label {
        font-size: 12px;
    }
}

@media (max-width: 540px) {
    .circle-category-bar {
        padding: 11px 0 0 0;
    }

    .circle-category-label {
        font-size: 11px;
    }
}

/* Hide scrollbar (optional) */
.circle-category-wrapper::-webkit-scrollbar {
    height: 0 !important;
    background: transparent;
}

/* Slider Styles */
/* ===== Hero Slider (renamed classes) ===== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-viewport {
    position: relative;
    width: 100%;
    height: 555px;
    overflow: hidden;
  }

  .hero-track {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .hero-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
  }

  .hero-media {
    display: block;
    width: 100%;
    height: 130%;
  }

  .hero-media source,
  .hero-media img {
    display: visible;
    width: 100%;
    height: 100%;
  }

  .hero-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
  }

  /* ===== Hero Text Overlay ===== */
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }

  .hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }

  /* ===== Hero Button ===== */
  .hero-btn {
    display: inline-block;
    background-color: #922b86;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
  }

  .hero-btn:hover,
  .hero-btn:focus {
    background-color: #a248a6;
  }

  /* ===== Responsive: Tablet ===== */
  @media (max-width: 992px) {
    .hero-viewport {
      height: 400px;
    }

    .hero-overlay {
      max-width: 90%;
      padding: 15px;
    }

    .hero-title {
      font-size: 2rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
    }

    .hero-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

  /* ===== Responsive: Mobile ===== */
  @media (max-width: 576px) {
    .hero-viewport {
      height: 280px;
    }

    .hero-overlay {
      padding: 12px;
      max-width: 95%;
      background: rgba(0, 0, 0, 0.55);
    }

    .hero-title {
      font-size: 1.5rem;
    }

    .hero-subtitle {
      font-size: 0.95rem;
    }

    .hero-btn {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
    }
  }


/* --- Collection get ready --- */
/* Section spacing */
.Get-ready {
  padding-top: 100px;
}

/* Heading styling */
.get-ready-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #C21807;
  margin-bottom: 10px;
}

/* Collection card styles */
.collection-card {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
      color: #ff0071;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.collection-text {
  text-align: center;
   
  padding: 10px 15px;
  border-radius: 5px;
}

.collection-text h2 {
        font-weight: 600;
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.collection-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: lowercase;
  margin: 0;
}


 :root {
            /* Updated Colors for 'Rani Rose' Palette */
            --primary-color: #A30046; /* Rani Rose (Deep Magenta/Pink) */
            --secondary-color: #F8C8DC; /* Light Rose/Pink - Used for background of social icons */
            --accent-color: #B8860B; /* Darker Gold/Bronze - Used for hover/lines */
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f9f7f4;
            --border-color: #e8e2d9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
     
 
        /* Back to Top Button - FIX: Default to hidden, opacity: 0 and use visibility in JS/scroll event */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            /* FIX: Initially hide and fade in with JS */
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-columns {
                gap: 30px;
            }
            
            .footer-column {
                flex: 1 1 180px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-columns {
                flex-direction: column;
                gap: 40px;
            }
            
            /* FIX: Center align everything in the column for better mobile layout */
            .footer-column {
                min-width: auto;
                text-align: center; 
            }

            .footer-logo {
                margin: 0 auto 20px auto;
            }

            .footer-socials {
                justify-content: center;
            }
            
            /* Center the text and the line for H4 titles */
            .footer-column h4 {
                text-align: center;
            }
            
            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            /* Center align list items */
            .footer-column ul {
                text-align: left; /* Keep text left aligned in list for readability */
                display: inline-block; /* Make the UL fit its content for centering */
            }


            
            .footer-left, .footer-right {
                flex-direction: column;
                gap: 10px;
            }

            .footer-left {
                gap: 5px; /* Tighter gap for text lines */
            }

            .newsletter-form {
                flex-direction: column;
                max-width: 300px; /* Constrain newsletter width for better centering */
                margin: 10px auto 0;
            }
            
            /* FIX: Make input and button full width on mobile */
            .newsletter-input, .newsletter-button {
                width: 100%; 
                border-radius: 30px !important; /* Override desktop styles */
                margin-bottom: 10px;
            }
            
            .newsletter-button {
                margin-bottom: 0;
            }
        }
        
        @media (max-width: 576px) {
            .footer {
                padding-top: 40px;
            }
            
            .footer-container {
                padding: 0 15px;
            }
            
            .footer-columns {
                gap: 30px;
            }
        }

/*infint caurosal*/
/* Infinite Slider */
.seamless-infinite-slider-section {
  padding-top: 40px;
}

.seamless-infinite-slider {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  width: 200%; /* Doubled to accommodate duplicates */
  animation: scroll-left 40s linear infinite;
}

.slider-track img {
  width: auto;
  height: 300px; /* Default fixed height */
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Pause animation on hover for better UX */
.seamless-infinite-slider:hover .slider-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .slider-track img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .slider-track img {
    height: 200px;
  }
}


/* Title 5 page */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: #a51616;
    }
    .sub-title {
      font-size: 1.3rem;
      font-weight: 400;
      color: #444;
      font-family: 'Poppins', sans-serif;
    }
    .sub-title em {
      font-family: 'Shadows Into Light', cursive;
      font-size: 1.4rem;
      color: #2c2c2c;
    }
    /* Cards */
    .custom-card {
      position: relative;
      border-radius: 20px;
      background-size: cover;
      background-position: center;
      color: #fff;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 20px;
      overflow: hidden;
    }
    .overlay {
      background: rgba(0, 0, 0, 0.25);
      position: absolute;
      inset: 0;
      border-radius: 20px;
    }
    .card-content {
      position: relative;
      z-index: 2;
    }
    .card-content h3 {
      font-family: 'Shadows Into Light', cursive;
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 5px;
    }
    .card-content p {
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      margin: 0;
    }

    /* Heights */
    .tall-card {
      min-height: 800px;
    }
    .small-card {
      min-height: 390px;
    }
  .custom-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/*review page*/
.anicham-reviews-section {
    background: #fff;
    padding: 3rem 1rem;
    font-family: 'Playfair Display', serif;
    color: #C21807;
}

.anicham-container {
    max-width: 1200px;
    margin: 0 auto;
}

.anicham-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.anicham-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.anicham-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #C21807;
}

.anicham-description {
    font-size: 1rem;
    color: #555;
}

.anicham-carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.anicham-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.anicham-carousel-item {
    flex: 0 0 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.anicham-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 14px 40px rgba(255, 255, 255, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anicham-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(207, 0, 141, 0.35);
}

.anicham-review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
}

.anicham-review-author {
    font-weight: bold;
    color: #622a7a;
    margin-bottom: 0.5rem;
}

.anicham-review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .anicham-carousel-item {
        flex: 0 0 100%;
    }
}


/* why choose us page*/
  :root {
    --color-blue: #db2777;
    --color-purple: #db2777;
    --color-pink: #db2777;
  }
 
  .why-maybell-new {
    background: #fff;
    padding: 4rem 1rem 4rem;
    font-family: 'Archivo', sans-serif;
    color: #222;
  }
 
  .container {
    max-width: 100%;
    margin: 0 auto;
  }
 
  .title {
    font-family: 'Georgia', serif;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    user-select: none;
    color: #000;
  }
 
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
    max-width: 950px;
    margin: 0 auto;
  }
 
  .feature-card {
    border: 1.5px solid #f1f1f1;
    background: #fafafa;
    border-radius: 12px;
    padding: 3rem 2rem 2rem;
    text-align: center;
    cursor: default;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .feature-card:hover {
    border-color: var(--color-purple);
    box-shadow: 0 10px 35px rgba(124, 58, 173, 0.12);
    transform: translateY(-7px);
  }
 
  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }
  .blue svg {
    stroke: var(--color-blue);
  }
  .purple svg {
    stroke: var(--color-purple);
  }
  .pink svg {
    stroke: var(--color-pink);
  }
 
  h3 {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #db2777;
    white-space: pre-line;
  }
 
  @media (max-width: 900px) {
    .features-grid {
      grid-template-columns: 1fr 1fr;
      gap: 1.8rem;
    }
    .feature-card {
      padding: 2.5rem 1.5rem 1.5rem;
    }
  }
 
  @media (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .why-maybell-new {
      padding: 2rem 1rem 3rem;
    }
  }
  /* Search Bar Styles */
.search-container {
    width: 280px; /* Adjust width as needed */
}

#searchInput {
    width: 100%;
}

.search-results {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050; /* Ensure it appears above other content */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-results a,
.search-results .no-results {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.search-results a:last-child {
    border-bottom: none;
}

.search-results a:hover {
    background-color: #f8f9fa;
}
.saree-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./ASSETS/images/hero-banner1.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  text-align: center;
  margin: 40px 0;
  border-radius: 10px;
}






:root{
      --primary: #ea1a85;
      --secondary: #f3f2f7;
      --card-radius: 20px;
      --card-padding: 1.3rem;
      --transition: 0.3s ease;
      --discount-bg: #ed6271;
      --text: #222;
      --muted: #6c6c6c;
      --white: #ffffff;
      --max-width: 1280px;
      --shadow-light: 0 4px 16px #ece0f6;
      --shadow-hover: 0 12px 25px rgba(236, 224, 246, 0.8);
    }


   

    .section-title{
      text-align:center;
      font-size:28px;
      font-weight:600;
      margin:8px 0 6px;
      color:var(--primary);
    }

    .section-subtitle{
      text-align:center;
      color:var(--muted);
      margin:0 auto 22px;
      font-size:14px;
      max-width:640px;
    }

    /* category row */
    .category-row{
      display:flex;
      flex-wrap:wrap;
      gap:18px;
      justify-content:center;
      margin-bottom:26px;
    }
    .category-card{
      flex:0 0 auto;
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      width:140px;
      cursor:pointer;
      transition:transform var(--transition);
    }
    .category-card:hover{ transform:translateY(-5px); }
    .category-img{
      width:140px;
      height:140px;
      border-radius:50%;
      object-fit:cover;
      margin-bottom:8px;
      border:4px solid var(--secondary);
      transition:border-color var(--transition);
      display:block;
    }
    .category-card:hover .category-img{ border-color:var(--primary); }
    .category-label{ font-size:15px; font-weight:500; color:#242424; }

    /* products grid (flex to keep your original structure) */
    .products-grid{
      display:flex;
      flex-wrap:wrap;
      gap:22px;
      justify-content:center;
    }

    /* responsive column sizes: 5 -> 4 -> 3 -> 2 -> 1 */
    .product-card{
      flex: 0 0 calc(20% - 18px); /* default 5 per row */
      background:var(--white);
      border-radius:var(--card-radius);
      padding:var(--card-padding);
      display:flex;
      flex-direction:column;
      align-items:center;
      position:relative;
      box-shadow:var(--shadow-light);
      transition:all var(--transition);
      overflow:hidden;
      cursor:pointer;
      min-height:420px;
    }

    .product-card:hover{
      transform:translateY(-8px);
      box-shadow:var(--shadow-hover);
    }

    .product-img-container{
      overflow:hidden;
      position:relative;
      width:100%;
      border-radius:10px;
      background:#fff;
    }

    .product-img{
      width:100%;
      height:300px;
      object-fit:cover;
      display:block;
      transition:transform var(--transition);
    }

    .product-card:hover .product-img{ transform:scale(1.08); }

    /* badge */
    .kurti-badge{
      position:absolute;
      top:1rem;
      left:1rem;
      background:var(--discount-bg);
      color:#fff;
      font-size:0.95rem;
      border-radius:20px;
      padding:0.25em 0.9em;
      z-index:2;
      transition:transform var(--transition);
    }
    .product-card:hover .kurti-badge{ transform:scale(1.1); }

    /* options overlay */
    .options-overlay{
      position:absolute;
      right:1.3rem;
      top:2.5rem;
      display:flex;
      flex-direction:column;
      gap:10px;
      z-index:3;
      opacity:0;
      transform:translateX(10px);
      transition:all var(--transition);
    }
    .product-card:hover .options-overlay{ opacity:1; transform:translateX(0); }
    .options-overlay .btn{
      background:#fff;
      border-radius:50%;
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 2px 6px #dfd3ea;
      padding:0;
      transition:all 0.2s ease;
      border:none;
    }
    .options-overlay .btn:hover{ background:var(--primary); color:#fff; transform:scale(1.1); }

    /* card content */
    .card-content{
      padding:1rem 0;
      text-align:center;
      transition:all var(--transition);
      width:100%;
    }
    .product-card:hover .card-content{ background-color: rgba(248,249,250,0.7); }

    .product-name{
      margin:12px 0 6px;
      font-size:16px;
      font-weight:500;
      color:#252f3b;
      text-align:center;
    }

    .price-container{ text-align:center; margin-bottom:0; }
    .price-new{ color:#d42b37; font-weight:500; margin-right:8px; font-size:1.22rem; }
    .price-old{ text-decoration:line-through; color:#888; font-size:1rem; }

    .select-btn{
      background:#fff;
      border:1px solid var(--primary);
      color:var(--primary);
      transition:all var(--transition);
      opacity:0;
      transform:translateY(10px);
      border-radius:24px;
      padding:8px 24px;
      font-size:14px;
      margin-top:10px;
    }
    .product-card:hover .select-btn{ opacity:1; transform:translateY(0); }
    .select-btn:hover{ background:var(--primary); color:#fff; transform:scale(1.05); }

    .view-all-btn{
      background:var(--primary);
      color:#fff;
      transition:all var(--transition);
      position:relative;
      overflow:hidden;
      border:none;
      border-radius:24px;
      padding:10px 30px;
      font-size:16px;
      margin-top:22px;
    }
    .view-all-btn:hover{ background:#5a2c62; transform:translateY(-3px); box-shadow:0 5px 15px rgba(106,52,114,0.3); }

    /* small ripple helper (keeps your original) */
    .view-all-btn::after{
      content:'';
      position:absolute;
      top:50%;
      left:50%;
      width:5px;
      height:5px;
      background:rgba(255,255,255,0.5);
      opacity:0;
      border-radius:100%;
      transform:scale(1,1) translate(-50%);
      transform-origin:50% 50%;
    }
    .view-all-btn:focus:not(:active)::after{ animation:ripple 1s ease-out; }
    @keyframes ripple{
      0%{ transform:scale(0,0); opacity:0.5; }
      100%{ transform:scale(20,20); opacity:0; }
    }

    /* Responsive breakpoints */
    @media (max-width: 1200px){
      .product-card{ flex:0 0 calc(25% - 18px); } /* 4 columns */
      .product-img{ height:250px; }
      .category-img{ width:120px; height:120px; }
    }

    @media (max-width: 992px){
      .product-card{ flex:0 0 calc(33.333% - 18px); } /* 3 columns */
      .product-img{ height:220px; }
      .category-card{ width:120px; }
    }

    @media (max-width: 768px){
      .product-card{ flex:0 0 calc(50% - 18px); } /* 2 columns */
      .product-img{ height:200px; }
      .product-card{ margin-bottom:1.2rem; }
      .kurti-badge{ font-size:0.8rem; padding:0.18em 0.8em; }
      .price-new, .price-old{ font-size:1rem; }
      .options-overlay{ opacity:1; transform:translateX(0); }
      .category-img{ width:100px; height:100px; }
      .category-card{ width:100px; }
      .section-title{ font-size:24px; }
      .section-subtitle{ font-size:13px; max-width:92vw; }
    }

    @media (max-width: 576px){
      .product-card{ flex:0 0 calc(100% - 18px); } /* single column stack for small phones */
      .product-img{ height:180px; }
      .product-card{ padding:10px; border-radius:12px; }
      .category-row{ gap:12px; }
      .category-img{ width:80px; height:80px; border-width:3px; }
      .category-card{ width:80px; }
      .category-label{ font-size:13px; }
      .container{ padding:12px; }
    }

    /* Horizontal scroll fallback for very tiny screens if you want a scroll UX */
    .products-scroll-container{
      width:100%;
      overflow-x:auto;
      padding-bottom:10px;
      display:none; /* hidden by default; shown on very small widths */
    }
    .products-scroll{
      display:flex;
      gap:22px;
      width:max-content;
      padding:0 10px;
    }

    @media (max-width: 400px){
      .products-grid{ display:none; }
      .products-scroll-container{ display:block; }
      .product-card{ flex:0 0 280px; min-height:330px; }
      .product-img{ height:240px; }
    }

    @media (min-width: 401px){
      .products-scroll-container{ display:none; }
    }

    /* Utility */
    .text-center{ text-align:center; }
    button.btn{ cursor:pointer; }
    .sr-only{ position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

