@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Karla:wght@400;600;700&display=swap');

:root {
  --deep: #1a1209;
  --deep-fg: #f5f0e8;
  --accent: #fcc831;
  --accent-fg: #1a1209;
  --copper: #fcc831;
  --copper-dark: #e6a800;
  --sale: #d63a2f;
  --bg: #f9f5ef;
  --card: #fff;
  --muted: #f0ebe1;
  --muted-fg: #8a7a65;
  --fg: #1a1209;
  --border: #e0d9cc;
  --radius: 10px;
  --shadow-float: 0 8px 32px rgba(26,18,9,0.18);
  --shadow-hero: 0 24px 80px rgba(26,18,9,0.28);
}

/* FILTER BAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
/* Sidebar layout */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.shop-layout.sidebar-open {
  grid-template-columns: 240px 1fr;
}
.products-area { min-width: 0; }

/* Filter Sidebar - Redesigned to accordion style */
.filter-sidebar {
  display: none;
  background: var(--card);
  padding: 0;
  height: fit-content;
  position: sticky;
  top: 90px;
  width: 250px;
}
.filter-sidebar.open { display: block; }

.fsb-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.fsb-header-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.fsb-clear-text {
  font-size: 14px;
  font-weight: 600;
  color: #42a2a2;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.fsb-clear-text:hover {
  opacity: 0.8;
}

.fsb-accordion-item {
  border-bottom: 1px solid #f2f2f2;
}
.fsb-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: #2d2d2d;
}
.fsb-trigger-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.fsb-dot {
  width: 5px;
  height: 5px;
  background-color: #c4c4c4;
  border-radius: 50%;
  display: inline-block;
}
.fsb-chevron {
  color: #2d2d2d;
  transition: transform 0.2s;
}
.fsb-accordion-item.open .fsb-chevron {
  transform: rotate(180deg);
}
.fsb-accordion-content {
  display: none;
  padding: 0 0 16px 17px;
}
.fsb-accordion-item.open .fsb-accordion-content {
  display: block;
}

.fsb-list { list-style: none; }
.fsb-list li { margin-bottom: 6px; }
.fsb-item {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  text-align: left;
  transition: color .15s;
}
.fsb-item:hover, .fsb-item.active {
  color: #2d2d2d;
  font-weight: 600;
}

.fsb-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.fsb-size {
  padding: 6px 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  transition: border-color .15s;
}
.fsb-size.active { border-color: #42a2a2; color: #42a2a2; }

/* Responsive sidebar */
@media (max-width: 768px) {
  .shop-layout.sidebar-open { grid-template-columns: 1fr; }
  .filter-sidebar.open { position: static; }
}

  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-fg);
  min-width: 80px;
  flex-shrink: 0;
}
.filter-pill {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--fg);
  transition: border-color .15s, background .15s, color .15s;
  font-family: 'Karla', sans-serif;
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}
.filter-price-row { gap: 12px; }
.price-slider {
  flex: 1;
  max-width: 200px;
  accent-color: var(--accent);
  cursor: pointer;
}
.price-val-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
}
.clear-btn {
  margin-left: auto;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted-fg);
  font-family: 'Karla', sans-serif;
  transition: border-color .15s, color .15s;
}
.clear-btn:hover { border-color: var(--sale); color: var(--sale); }

/* ACTIVE TAGS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 0;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #1a1209;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
  cursor: pointer;
  transition: opacity .15s;
}
.filter-tag:hover { opacity: .8; }

/* NO RESULTS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--muted-fg);
}
.no-results h3 {
  font-size: 22px; font-weight: 700;
  margin: 12px 0 8px; color: var(--fg);
}

/* BADGE TYPE (BESTSELLER / NEW / HOT) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.badge-type {
  position: absolute;
  top: 36px; left: 8px;
  background: var(--deep);
  color: var(--deep-fg);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 7px;
  border-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}

.font-display { font-family: 'Bebas Neue', sans-serif; }

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--deep);
  color: var(--deep-fg);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.announce-bar .track-order {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--deep-fg);
  text-decoration: none;
  opacity: .8;
}
.announce-bar .track-order:hover { opacity: 1; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,245,239,.97);
  backdrop-filter: blur(12px);
}
.nav-main {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-link img { height: 44px; width: auto; max-width: 250px; object-fit: contain; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
  letter-spacing: .06em;
}
.logo-text span { color: var(--accent); }

nav.main-nav {
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fg);
  text-decoration: none;
  padding: 12px 0;
  display: block;
  transition: color .2s;
}
.nav-item > a:hover, .nav-item > a.active { color: var(--accent); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  padding: 8px;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s;
}
.dropdown a:hover { background: var(--muted); color: var(--accent); }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--muted);
  border-radius: 999px;
  padding: 7px 16px;
  border: 1px solid var(--border);
}
.search-bar input {
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'Karla', sans-serif;
  color: var(--fg);
  width: 200px;
}
.search-bar input::placeholder { color: var(--muted-fg); }
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  color: var(--fg);
  position: relative;
  transition: background .15s;
}
.icon-btn:hover { background: var(--muted); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: #1a1209;
  color: #fcc831;
  font-size: 9px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 5px;
  min-width: 16px;
  text-align: center;
}
.mobile-menu-btn { display: none; }

/* CAMPAIGN HERO */
.campaign-hero {
  background: var(--bg);
  padding: 0 0 40px; 
}
.campaign-subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 24px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
}
.campaign-subnav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color 0.2s;
  padding: 4px 8px;
}
.campaign-subnav a:hover {
  color: var(--accent);
}
.campaign-subnav a.active {
  background: #fdd835;
  color: var(--deep);
  border-radius: 999px;
  padding: 6px 16px;
}

.campaign-marquee {
  overflow: hidden;
  padding: 24px 0;
  width: 100%;
}
.campaign-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.campaign-track:hover {
  animation-play-state: paused;
}
.campaign-banner {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  width: 32vw; /* Shows approx 3 banners at a time on desktop */
  min-width: 300px; /* Don't get too small on mobile */
  flex-shrink: 0;
}
.campaign-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.campaign-banner:hover img {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .campaign-banner {
    width: 48vw; /* Shows approx 2 banners at a time */
  }
}
@media (max-width: 768px) {
  .campaign-hero {
    padding-bottom: 0 !important;
  }
  .section {
    padding-top: 12px !important;
  }
  .campaign-marquee {
    overflow-x: auto !important;
    padding: 16px 0 24px 0 !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .campaign-marquee::-webkit-scrollbar {
    display: none;
  }
  .campaign-track {
    animation: none !important;
    display: flex !important;
    gap: 16px !important;
    width: max-content !important;
    padding: 0 16px !important;
    align-items: flex-start !important;
  }
  .campaign-banner {
    width: 85vw !important; 
    border-radius: 20px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    height: auto !important;
    background: transparent !important;
    display: block !important;
  }
  .campaign-subnav {
    justify-content: flex-start;
    padding: 12px 16px;
  }
}

/* NEW ARRIVALS & TRENDING CATEGORIES */
.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* NA Track */
.na-track {
  gap: 16px;
  padding-bottom: 8px;
}
.na-card {
  position: relative;
  flex: 0 0 calc(20% - 13px);
  min-width: 260px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 3/4;
}
.na-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.na-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.na-card:hover img {
  transform: scale(1.04);
}

/* TC Track */
.tc-track {
  gap: 0;
  flex-wrap: wrap;
}
.tc-card {
  position: relative;
  flex: 0 0 16.666%;
  min-width: 220px;
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e8e8e8;
}
.tc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tc-card:hover img {
  transform: scale(1.04);
}
.tc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
  pointer-events: none;
}
.tc-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .na-card { flex: 0 0 calc(33.333% - 11px); }
  .tc-card { flex: 0 0 25%; }
}

/* Desktop/Laptop Default Styling for Section Headers */
.section-header-mobile {
  text-align: center;
  margin-bottom: 32px;
}
.section-header-mobile h2 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}
.section-header-mobile a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

@media (max-width: 768px) {
  body { background-color: #F8F6F0; } /* Match warmer background of reference */
  .section { padding: 24px 0 !important; }
  .section[style*="padding: 10px"] { padding: 10px 0 24px 0 !important; }
  
  .na-track { padding-bottom: 24px !important; }

  .na-card { flex: 0 0 100px !important; min-width: 100px !important; height: 140px !important; border-radius: 8px !important; }
  .tc-card { flex: 0 0 80px !important; min-width: 80px !important; height: auto !important; border-radius: 0 !important; background: transparent !important; }
  .tc-card img { border-radius: 12px !important; width: 80px !important; height: 80px !important; }
  .tc-label { font-size: 11px; bottom: 8px; position: static !important; }

  .section-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .section-header-mobile h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
  }
  .section-header-mobile a {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
  }
}

/* MARQUEE */
.marquee-section {
  background: var(--bg);
  border-top: 1px solid var(--accent);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg);
}
.marquee-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 64px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 32px; }
.section-title { font-size: 28px; font-weight: 700; }
.section-sub { font-size: 13px; color: var(--muted-fg); margin-top: 4px; }

/* OFFERS MARQUEE */
.offers-marquee { overflow: hidden; margin-top: 24px; }
.offers-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.offers-track:hover { animation-play-state: paused; }
.offer-card {
  width: 300px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  cursor: pointer;
}
.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.offer-card:hover img { transform: scale(1.05); }
.offer-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,18,9,.85);
  color: var(--deep-fg);
  padding: 14px 16px;
  backdrop-filter: blur(4px);
}
.offer-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1; }
.offer-sub { font-size: 11px; opacity: .8; margin-top: 2px; }

/* CATEGORIES */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cat-card { text-align: center; cursor: pointer; text-decoration: none; color: var(--fg); }
.cat-img-wrap {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--muted);
  aspect-ratio: 1;
}
.cat-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.07); }
.cat-label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* PRODUCTS */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.btn-border {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--fg);
  transition: background .15s;
}
.btn-border:hover { background: var(--muted); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(26,18,9,.13); transform: translateY(-2px); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--muted);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Rating Badge inside image */
.badge-rating {
  position: absolute;
  bottom: 8px; left: 8px;
  background: #fff;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Color Swatches inside image */
.color-swatches {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(255,255,255,0.9);
  padding: 4px 6px;
  border-radius: 20px;
  display: flex;
  gap: 3px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.color-swatches span {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.product-info { padding: 12px; display: flex; flex-direction: column; flex-grow: 1; }

.pi-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.pi-brand {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
}
.wishlist-btn-new {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.wishlist-btn-new:hover { color: var(--accent); }

.pi-name {
  font-size: 11px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

.pi-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.pi-price { font-size: 14px; font-weight: 800; color: #111; }
.pi-was { font-size: 12px; color: #999; text-decoration: line-through; }
.pi-off { font-size: 11px; font-weight: 700; color: #03a685; }

.pi-lowest-price {
  background: #f7f0ff;
  color: #7d49b6;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 8px;
  border: 1px solid #ebd9ff;
}
.pi-lowest-price span { font-weight: 800; }

.pi-offer {
  font-size: 10px;
  font-weight: 700;
  color: #03a685;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* FOOTER */
footer {
  background: var(--deep);
  color: var(--deep-fg);
  margin-top: 64px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand p { font-size: 13px; opacity: .75; margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 13px;
  color: var(--deep-fg);
  text-decoration: none;
  opacity: .75;
  transition: opacity .15s, color .15s;
}
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  opacity: .6;
  max-width: 1280px;
  margin: 0 auto;
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  color: var(--deep-fg);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--deep-fg);
  cursor: pointer;
  font-size: 28px;
}
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--deep-fg);
  text-decoration: none;
  letter-spacing: .06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .15s;
}
.mobile-nav a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  nav.main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .search-bar { display: none; }
  .float-card { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-title { font-size: clamp(52px, 12vw, 80px); }
  .hero-image-wrap { justify-content: center; }
  .hero-img { max-width: 320px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .announce-bar .track-order { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .product-info { padding: 8px; }
  .pi-price { font-size: 13px; }
  .pi-name { font-size: 10px; margin-bottom: 6px; }
  .pi-lowest-price { font-size: 9px; padding: 3px 6px; margin-bottom: 6px; }
  .pi-offer { font-size: 9px; }
}


/* MOBILE UI EXCLUSIVE */
@media (max-width: 768px) {
  body, html { overflow-x: hidden; }
  .desktop-only { display: none !important; }
  .mobile-only { display: initial; } /* Don't force block */
  .mobile-flex { display: flex !important; }
  body { padding-bottom: 80px !important; }
}
@media (min-width: 769px) {
  .mobile-only, .mobile-flex, .mobile-bottom-nav, .shop-bottom-actions { display: none !important; }
}
.mobile-header {
  background-color: #fcc831;
  color: #1a1209;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1209;
}
.mobile-header-logo img { height: 34px; width: auto; max-width: 200px; object-fit: contain; }
.mobile-header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.mobile-header-actions svg { width: 20px; height: 20px; color: #1a1209; cursor: pointer; }
.mobile-tabs {
  display: flex;
  background-color: #fcc831;
  color: #1a1209;
  padding: 0 8px;
}
.mobile-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(26,18,9,0.65);
}
.mobile-tab svg { width: 18px; height: 18px; }
.mobile-tab.active {
  background-color: #f9f5ef;
  color: #fcc831;
}
.mobile-tab.active svg { color: #fcc831; }
.mobile-pincode {
  display: none !important;
}
.mobile-pincode span { font-weight: 400; color: #666; }

/* Force horizontal scroll for Trending Categories on Mobile */
@media (max-width: 768px) {
  .tc-track {
    flex-wrap: nowrap !important;
    gap: 12px !important;
    padding-bottom: 8px;
  }
  .tc-card.mobile-tc-card {
    flex-shrink: 0;
  }
}

.mobile-gender-tabs {
  display: flex;
  background-color: #f9f5ef;
  border-bottom: 1px solid #e0d9cc;
}
.mobile-gender-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-gender-tab.active {
  color: #1a1209;
  border-bottom: 2px solid #fcc831;
}
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background-color: #f9f5ef;
  border-top: 1px solid #e0d9cc;
  display: flex; /* Force flex removed */
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
}
.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #666;
  text-decoration: none;
}
.mobile-bottom-item svg { width: 20px; height: 20px; }
.mobile-bottom-item.active { color: #e6a800; }
.mobile-dots {
  display: flex;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: -8px auto 16px auto !important;
  width: 100% !important;
  clear: both !important;
  height: 12px;
}
.mobile-dot {
  display: block !important;
  border-radius: 50% !important;
  background: #ccc !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0;
  width: 6px !important;
  height: 6px !important;
}
.mobile-dot.active {
  width: 8px !important;
  height: 8px !important;
  background: var(--accent) !important;
}
.mobile-dot.small {
  width: 6px !important;
  height: 6px !important;
  background: #d4d4d4 !important;
}
.mobile-dot.tiny {
  width: 4px !important;
  height: 4px !important;
  background: #e0e0e0 !important;
}

/* Shop Mobile Styles */
.shop-mobile-header { background: #fcc831; padding: 8px 12px 6px 12px; color: #1a1209; display: flex; align-items: center; justify-content: space-between; }
.shop-mobile-logo { display: flex; align-items: center; font-weight: 900; font-size: 18px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.12em; color: #1a1209; text-transform: uppercase; }
.shop-mobile-logo img { height: 32px; width: auto; max-width: 200px; margin-right: 6px; object-fit: contain; }
.shop-mobile-actions { display: flex; gap: 12px; align-items: center; }
.shop-mobile-actions svg { color: #1a1209; width: 18px; height: 18px; }
.shop-mobile-actions .cart-badge { background: #1a1209; color: #fcc831; border: none; font-weight: 800; width: 14px; height: 14px; font-size: 9px; }

.shop-search-bar { background: #fcc831; display: flex; align-items: center; padding: 0 12px 12px 12px; }
.shop-search-bar .search-inner { background: #fdfaf7; width: 100%; border-radius: 6px; display: flex; align-items: center; padding: 6px 10px; color: #1a1209; }
.shop-search-bar input { background: transparent; border: none; outline: none; width: 100%; margin-left: 6px; font-size: 12px; color: #1a1a1a; }
.shop-search-bar input::placeholder { color: #888; }
.shop-search-bar svg { stroke: #fcc831; width: 16px; height: 16px; }

.shop-mobile-content { background: #fdfaf7; padding: 12px; }
.shop-breadcrumbs { font-size: 10px; color: #e6a800; margin-bottom: 6px; font-weight: 700; display: flex; gap: 4px; align-items: center; }
.shop-breadcrumbs span { color: #1a1a1a; }
.shop-breadcrumbs svg { stroke: #e6a800; width: 8px; height: 8px; }

.shop-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.shop-title-left h1 { font-size: 16px; font-weight: 800; color: #1a1a1a; margin: 0 0 2px 0; font-family: 'Inter', sans-serif; }
.shop-title-left p { font-size: 10px; color: #888; margin: 0; font-weight: 500; }
.shop-view-toggles { display: flex; gap: 4px; }
.shop-view-toggle { border: 1px solid #dcb694; background: white; padding: 3px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.shop-view-toggle.active { background: #fdfaf7; color: #e6a800; }
.shop-view-toggle svg { width: 12px; height: 12px; }
.shop-view-toggle.active svg { stroke: #e6a800; fill: #e6a800; }

.shop-banner { background: #32432d; border-radius: 8px; padding: 8px 10px; color: white; display: flex; justify-content: space-between; align-items: center; margin: 0 0 12px 0; position: relative; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1); width: 100%; }
.shop-banner-icon { background: #FDF9F1; color: #fcc831; width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 8px; flex-shrink: 0; transform: rotate(-5deg); }
.shop-banner-icon svg { width: 14px; height: 14px; fill: currentColor; }
.shop-banner-text { flex: 1; min-width: 0; }
.shop-banner-text p { font-size: 9px; margin: 0 0 1px 0; opacity: 0.9; color: #EAEAEA; }
.shop-banner-text h3 { font-size: 12px; margin: 0; font-weight: 700; line-height: 1.2; }
.shop-banner-text h3 span { color: #E7995A; }
.shop-banner-btn { background: #fcc831; color: white; padding: 5px 8px; border-radius: 4px; font-weight: 700; font-size: 10px; border: none; flex-shrink: 0; margin-left: 6px; white-space: nowrap; }

.shop-quick-filters { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.shop-quick-filters::-webkit-scrollbar { display: none; }
.sq-filter { white-space: nowrap; border: 1px solid #eee; background: white; padding: 5px 8px; border-radius: 6px; font-size: 10px; font-weight: 600; color: #1a1a1a; display: flex; align-items: center; gap: 4px; cursor: pointer; flex-shrink: 0; }
.sq-filter svg { width: 10px; height: 10px; }
.sq-filter-icon { padding: 5px 6px; }

.shop-product-card { background: white; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; position: relative; margin-bottom: 16px; text-decoration: none; border: 1px solid #eee; }
.spc-img-wrap { position: relative; padding-top: 130%; background: #f5f5f5; }
.spc-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.spc-badge { position: absolute; top: 8px; left: 8px; background: white; color: #333; font-size: 9px; font-weight: 800; padding: 4px 6px; border-radius: 4px; letter-spacing: 0.5px; }
.spc-badge.applique { top: 28px; background: #f0f0f0; }
.spc-fav { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: white; }
.spc-fav svg { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.spc-rating { position: absolute; bottom: 8px; left: 8px; background: white; padding: 4px 8px; border-radius: 12px; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: #1a1a1a; }
.spc-rating svg { color: #f59e0b; width: 12px; height: 12px; fill: currentColor; }
.spc-colors { position: absolute; bottom: 8px; right: 8px; background: white; padding: 4px; border-radius: 12px; display: flex; gap: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.spc-color { width: 12px; height: 12px; border-radius: 50%; border: 1px solid #eee; }
.spc-details { padding: 12px; display: flex; flex-direction: column; }
.spc-brand { font-size: 12px; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; }
.spc-title { font-size: 12px; color: #555; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.spc-prices { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.spc-price { font-size: 15px; font-weight: 800; color: #1a1a1a; }
.spc-mrp { font-size: 12px; color: #999; text-decoration: line-through; }
.spc-discount { font-size: 12px; color: #22c55e; font-weight: 700; }
.spc-offer-tag { background: #f3e8ff; color: #7e22ce; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; display: inline-block; margin-bottom: 8px; align-self: flex-start; }
.spc-promo { font-size: 11px; color: #16a34a; font-weight: 600; display: flex; align-items: center; gap: 4px; }

.shop-bottom-actions { 
  position: fixed; 
  bottom: 55px; /* Directly above mobile-bottom-nav */
  left: 0; 
  width: 100%;
  background: white; 
  display: flex !important; 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05); 
  z-index: 900; 
  border-top: 1px solid #eee;
}
.shop-bottom-actions button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 0; background: none; border: none; font-size: 14px; font-weight: 700; color: #1a1a1a; cursor: pointer; }
.shop-bottom-actions button small { display: block; font-size: 10px; color: #888; font-weight: 500; margin-top: 2px; }
.shop-bottom-actions .divider { width: 1px; background: #eee; }

/* Filter Modal */
.mobile-filter-modal { position: fixed; inset: 0; background: white; z-index: 9999; display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-filter-modal.open { transform: translateY(0); }
.mf-header { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid #f0f0f0; background: #faf8f5; }
.mf-header h2 { font-size: 18px; font-weight: 800; margin: 0; }
.mf-header .clear-all { color: #e6a800; font-size: 14px; font-weight: 700; background: none; border: none; cursor: pointer; }
.mf-body { display: flex; flex: 1; overflow: hidden; }
.mf-tabs { width: 110px; background: #faf8f5; overflow-y: auto; border-right: 1px solid #f0f0f0; }
.mf-tab { padding: 16px 12px; font-size: 13px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 8px; border-left: 3px solid transparent; cursor: pointer; }
.mf-tab.active { background: #f3ede4; color: #1a1a1a; border-left-color: #e6a800; font-weight: 700; }
.mf-tab svg { width: 16px; height: 16px; color: #888; flex-shrink: 0; }
.mf-tab.active svg { color: #e6a800; }
.mf-content { flex: 1; overflow-y: auto; padding: 16px; background: #fdfaf7; }
.mf-content-title { font-size: 15px; font-weight: 800; margin-bottom: 16px; color: #1a1a1a; }
.mf-checkbox { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #333; cursor: pointer; }
.mf-checkbox input { width: 18px; height: 18px; accent-color: #e6a800; }
.mf-checkbox span { color: #888; font-size: 12px; }
.mf-popular { margin-top: 24px; margin-bottom: 24px; }
.mf-popular-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #1a1a1a; }
.mf-popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mf-pop-card { text-align: center; }
.mf-pop-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 6px; margin-bottom: 4px; }
.mf-pop-card span { font-size: 10px; font-weight: 600; color: #333; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mf-selected { margin-bottom: 24px; }
.mf-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mf-pill { background: #f3ede4; padding: 6px 12px; border-radius: 16px; font-size: 12px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 6px; }
.mf-pill button { background: none; border: none; padding: 0; color: #888; font-size: 14px; display: flex; align-items: center; cursor: pointer; }
.mf-footer { padding: 16px; background: #fdfaf7; border-top: 1px solid #f0f0f0; }
.mf-btn-apply { width: 100%; padding: 14px; background: #e6a800; color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; }

/* Sort Modal */
.mobile-sort-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-sort-modal.open { opacity: 1; pointer-events: auto; }
.ms-content { background: #fdfaf7; border-radius: 20px 20px 0 0; padding: 20px 16px 16px; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-sort-modal.open .ms-content { transform: translateY(0); }
.ms-handle { width: 40px; height: 4px; background: #ddd; border-radius: 2px; margin: -10px auto 16px; }
.ms-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ms-header h2 { font-size: 18px; font-weight: 800; margin: 0; }
.ms-header .close-btn { background: #333; color: white; border: none; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; }
.ms-option { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #f0f0f0; cursor: pointer; }
.ms-option:last-of-type { border-bottom: none; }
.ms-opt-left { display: flex; align-items: center; gap: 16px; }
.ms-opt-icon { background: #f3ede4; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #e6a800; }
.ms-opt-text h4 { margin: 0 0 2px 0; font-size: 14px; font-weight: 700; color: #1a1a1a; }
.ms-opt-text p { margin: 0; font-size: 12px; color: #888; }
.ms-radio { width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ms-radio.active { border-color: #e6a800; }
.ms-radio.active::after { content: ""; width: 10px; height: 10px; background: #e6a800; border-radius: 50%; }
.ms-btn-apply { width: 100%; padding: 14px; background: #e6a800; color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; margin-top: 16px; cursor: pointer; }

@media (max-width: 768px) {
  #shop { padding: 0 !important; }
  #shop .section-inner { padding: 0 !important; }
  #shop-header-default { display: none !important; }
  #filter-sidebar { display: none !important; }
  .shop-layout { display: block !important; margin: 0 !important; gap: 0 !important; }
  .products-grid { gap: 12px !important; grid-template-columns: repeat(2, 1fr) !important; padding: 0; }
  /* Override products-grid for mobile shop */
  #products-grid.mobile-shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
}


@media (min-width: 769px) {
  .mobile-only, .mobile-flex, .mobile-bottom-nav, .shop-bottom-actions, .mobile-sort-modal, .mobile-filter-modal { display: none !important; }
}

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



/* --- CARD IMAGE CAROUSEL (SWIPEABLE) --- */
.card-carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: #f5f5f5;
  overflow: hidden;
}
.card-img-carousel {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
  touch-action: pan-x;                  /* ← allows horizontal swipe on mobile */
  -webkit-overflow-scrolling: touch;    /* ← smooth momentum scroll on iOS */
}
.card-img-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.card-img-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}
.card-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 2;
}
.card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
}
.card-dot.active {
  background: white;
  transform: scale(1.2);
}
/* Ensure rating badge stays on top */
.badge-rating {
  z-index: 3;
}

/* FIX GRID GAP */
@media(max-width: 480px) {
  .products-grid { padding: 0 !important; width: 100%; }
  .section-inner { padding: 0 8px !important; }
}

/* DESKTOP: Disable carousel swipe â€” show only cover image, hide dots */
@media (min-width: 769px) {
  .card-img-carousel {
    overflow-x: hidden !important;
    scroll-snap-type: none !important;
    pointer-events: none;
  }
  .card-img-carousel img:not(:first-child) {
    display: none !important;
  }
  .card-img-carousel img:first-child {
    pointer-events: none;
  }
  .card-dots {
    display: none !important;
  }
  /* Restore hover zoom on desktop for first image */
  .product-card:hover .card-img-carousel img:first-child {
    transform: scale(1.06);
  }
  .card-img-carousel img {
    transition: transform 0.5s ease;
  }
}

/* â”€â”€ Yellow accent text fix (auto-added by rebrand) â”€â”€ */
.btn-primary, .sq-filter.active, .mobile-gender-tab.active, .fsb-size.active { color: #1a1209 !important; }
.announce-bar.desktop-only { display: none !important; }

