/* ============================================
   SHEHWAAR — Design System
   Palette: Charcoal / Off-White / Gold / Dusty Rose
   Type: Cormorant Garamond (display) + Inter (body)
============================================ */

:root {
  --black:      #1a1a1a;
  --off-white:  #f5f0e8;
  --gold:       #c9a84c;
  --gold-light: #e8d5a3;
  --rose:       #e8d5c4;
  --grey-1:     #2e2e2e;
  --grey-2:     #555;
  --grey-3:     #888;
  --grey-4:     #ddd;
  --white:      #fff;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;

  --radius: 4px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);

  --container: 1280px;
  --header-h: 72px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--black); background: var(--white); line-height: 1.6; font-size: 15px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Announcement Bar ─────────────────── */
.announcement-bar {
  background: var(--black);
  color: var(--gold-light);
  font-size: 12px;
  font-family: var(--body);
  letter-spacing: 0.08em;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.marquee-wrap {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-wrap span { flex-shrink: 0; padding-right: 48px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Header ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: var(--header-h);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { flex-shrink: 0; }
.logo-text {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--black);
}

/* Nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-1);
  transition: color var(--transition);
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--gold); }
.nav-highlight {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 6px 14px !important;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 20px;
  display: flex;
  gap: 32px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
}
.dropdown--sm { flex-direction: column; gap: 4px; min-width: 180px; padding: 12px; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-col { display: flex; flex-direction: column; gap: 6px; }
.dropdown-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--grey-3); text-transform: uppercase; margin-bottom: 4px; }
.dropdown a { font-size: 13px; color: var(--grey-2); padding: 3px 0; transition: color var(--transition); }
.dropdown a:hover { color: var(--gold); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--grey-1);
  position: relative;
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--off-white); color: var(--black); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 800;
}

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: calc(90vh - var(--header-h) - 36px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2421 50%, #1a1a1a 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/hero-pattern.svg') center/cover;
  opacity: 0.04;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 600px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 15px;
  color: rgba(245,240,232,0.7);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--body);
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 2px solid rgba(245,240,232,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover { background: var(--grey-1); }
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ── Section base ─────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-bg { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--off-white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
}
.section-sub { color: var(--grey-2); margin-top: 20px; font-size: 15px; }

/* ── Product Card ─────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: var(--off-white);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-preorder { background: var(--rose); color: var(--black); }
.product-info { padding: 18px 20px 22px; }
.product-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--black);
}
.product-desc { font-size: 13px; color: var(--grey-3); margin-bottom: 12px; line-height: 1.5; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--grey-3); }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-size: 17px; font-weight: 600; color: var(--black); }
.product-price-old { font-size: 13px; color: var(--grey-3); text-decoration: line-through; }
.add-to-cart {
  width: 38px; height: 38px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.add-to-cart:hover { background: var(--gold); transform: scale(1.1); }

/* ── Couple Section ───────────────────── */
.couple-section { background: var(--off-white); }
.couple-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 960px; margin: 0 auto; }
.couple-card { text-align: center; }
.couple-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--rose);
  margin-bottom: 24px;
}
.couple-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.couple-tag { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-3); margin-bottom: 8px; }
.couple-name { font-family: var(--display); font-size: 26px; font-weight: 400; margin-bottom: 12px; }
.couple-desc { font-size: 14px; color: var(--grey-2); margin-bottom: 20px; line-height: 1.6; }
.couple-divider { text-align: center; font-size: 32px; color: var(--gold); line-height: 1; padding: 16px 0; align-self: center; }

/* ── Category Tiles ──────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--off-white);
  display: block;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  padding: 32px 20px 20px;
  letter-spacing: 0.05em;
}

/* ── Marquee Banner ──────────────────── */
.marquee-banner {
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}

/* ── Trust Badges ─────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.trust-item { text-align: center; }
.trust-icon { font-size: 36px; margin-bottom: 12px; }
.trust-title { font-family: var(--display); font-size: 18px; margin-bottom: 8px; }
.trust-desc { font-size: 13px; color: var(--grey-2); line-height: 1.6; }

/* ── Reviews ──────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--grey-1); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--black); }
.review-product { font-size: 12px; color: var(--grey-3); margin-top: 2px; }
.review-date { font-size: 11px; color: var(--grey-4); margin-top: 4px; }

/* ── Fragrance Chronicle ─────────────── */
.chronicle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 800px; margin: 0 auto; }
.chronicle-list { counter-reset: item; }
.chronicle-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-4);
  counter-increment: item;
}
.chronicle-list li::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold);
  min-width: 36px;
  font-weight: 300;
}
.chronicle-list a { font-family: var(--display); font-size: 18px; font-weight: 400; }
.chronicle-list a:hover { color: var(--gold); }
.chronicle-col-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--grey-2);
  font-style: italic;
}

/* ── Cart Sidebar / Toast ─────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--black);
  color: var(--off-white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-hover);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold); font-size: 18px; }

/* ── Forms ────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--grey-1); }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--grey-4);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--body);
  color: var(--black);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--gold); }
.form-control::placeholder { color: var(--grey-3); }

/* ══════════════════════════════════════════════
   RESPONSIVE SYSTEM — Clean Single Source
══════════════════════════════════════════════ */

/* ── Desktop dropdown ─────────────────────── */
@media (min-width: 769px) {
  /* Hide mobile-only drawer elements completely */
  .nav-drawer-top    { display: none !important; }
  .nav-drawer-bottom { display: none !important; }
  .nav-toggle        { display: none !important; }
  .mobile-bottom-nav { display: none !important; }

  /* Show desktop nav normally */
  .main-nav {
    position: static !important;
    transform: none !important;
    left: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
    display: flex !important;
    align-items: center;
  }
  .nav-links-wrap {
    flex: 1;
    overflow: visible;
  }
  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
  }
  .nav-list > li > a {
    font-size: 12.5px;
    padding: 8px 8px;
    color: var(--grey-1);
    border-bottom: none;
    white-space: nowrap;
  }
  .dropdown {
    display: flex !important;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--grey-4);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 20px;
    gap: 32px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--transition);
  }
  .dropdown--sm { flex-direction: column; gap: 4px; min-width: 180px; padding: 12px; }
  .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a { color: var(--grey-2); font-size: 13px; padding: 3px 0; }
  .dropdown a::before { display: none; }
  .dropdown-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--grey-3); text-transform: uppercase; margin-bottom: 4px; }
}

/* ── Footer responsive ─────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
  .footer-brand { grid-column: 1/-1; }
}

/* ══════════════════════════════════════════════
   MOBILE ≤ 768px
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 22px; }
  .section-title { font-size: 22px !important; }
  .section-eyebrow { font-size: 10px; }
  .section-sub { font-size: 13px; margin-top: 10px; }

  /* Announcement */
  .announcement-bar { height: 30px; font-size: 10px; }

  /* Header */
  .header-inner { gap: 8px; padding: 0 16px; }
  .logo-text { font-size: 18px; }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 901;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--black);
    transition: all .3s;
    transform-origin: center;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Drawer */
  .main-nav {
    position: fixed;
    top: 0; left: -105%;
    width: 82%; max-width: 310px;
    height: 100%;
    background: #111;
    z-index: 950;
    display: flex;
    flex-direction: column;
    transition: left .32s cubic-bezier(.4,0,.2,1);
    box-shadow: 6px 0 40px rgba(0,0,0,.5);
    overflow: hidden;
  }
  .main-nav.open { left: 0; }

  /* Drawer top bar */
  .nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
    background: #0d0d0d;
  }
  .nav-drawer-brand {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #f5f0e8;
  }
  .nav-drawer-close {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    cursor: pointer;
    border: none;
    transition: background .2s;
  }
  .nav-drawer-close:hover { background: rgba(201,168,76,.25); color: var(--gold); }

  /* Links scroll area */
  .nav-links-wrap {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links-wrap::-webkit-scrollbar { width: 3px; }
  .nav-links-wrap::-webkit-scrollbar-thumb { background: rgba(201,168,76,.25); border-radius: 2px; }

  /* Nav list */
  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  .nav-list > li { width: 100%; }
  .nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(245,240,232,.75);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s, background .2s;
    width: 100%;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a.active { color: var(--gold); background: rgba(201,168,76,.06); }

  /* Chevron on dropdowns */
  .has-dropdown > a::after {
    content: '';
    width: 7px; height: 7px;
    border-right: 1.5px solid rgba(255,255,255,.3);
    border-bottom: 1.5px solid rgba(255,255,255,.3);
    transform: rotate(45deg);
    transition: transform .22s;
    flex-shrink: 0;
  }
  .has-dropdown.open > a::after { transform: rotate(-135deg); }

  /* Dropdown panel on mobile */
  .dropdown {
    display: none !important;
    position: static;
    background: rgba(255,255,255,.03);
    border: none;
    box-shadow: none;
    padding: 0;
    flex-direction: column;
    gap: 0;
    min-width: auto;
    border-radius: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }
  .has-dropdown.open .dropdown { display: flex !important; }
  .dropdown-col { gap: 0; }
  .dropdown-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(201,168,76,.65);
    padding: 8px 22px 3px 30px;
    margin: 0;
    background: none;
    border: none;
  }
  .dropdown a {
    display: block;
    padding: 8px 22px 8px 30px;
    font-size: 13px;
    color: rgba(245,240,232,.55);
    border: none;
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dropdown a::before { display: none; }
  .dropdown a:hover { color: var(--gold); }
  .nav-highlight {
    color: var(--gold) !important;
    border: none !important;
  }

  /* Drawer bottom CTA */
  .nav-drawer-bottom {
    display: flex;
    gap: 10px;
    padding: 16px 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
    background: #0d0d0d;
  }
  .nav-drawer-cta-primary {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius);
    background: var(--gold);
    color: #000;
    letter-spacing: .04em;
    transition: background .2s;
  }
  .nav-drawer-cta-primary:hover { background: var(--gold-light, #e8d5a3); }
  .nav-drawer-cta-secondary {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(245,240,232,.65);
    transition: border-color .2s, color .2s;
  }
  .nav-drawer-cta-secondary:hover { border-color: rgba(255,255,255,.4); color: #fff; }

  /* Overlay */
  .nav-overlay.show { display: block; }

  /* ── Hero slider ── */
  .hero-slider { min-height: 340px; max-height: 64vw; }
  .slide { min-height: 340px; }
  .slide-img-desk { min-height: 340px; max-height: 64vw; }
  .slide-overlay { background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.62)); align-items: flex-end; }
  .slide-content { padding: 0 16px 28px; }
  .slide-content-inner { max-width: 100%; }
  .slide-title { font-size: clamp(18px,5.5vw,28px); line-height: 1.2; margin-bottom: 7px; }
  .slide-sub { font-size: 12px; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .slide-btn { padding: 9px 18px; font-size: 12px; }
  .slider-prev { left: 8px; width: 32px; height: 32px; font-size: 13px; }
  .slider-next { right: 8px; width: 32px; height: 32px; font-size: 13px; }
  .slider-dots { bottom: 8px; }
  .slider-dot { width: 6px; height: 6px; }
  .slider-dot.active { width: 16px; }

  /* Marquee */
  .marquee-banner { height: 32px; font-size: 10px; }

  /* ── Product cards ── */
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .product-img-wrap { aspect-ratio: 1/1.05; }
  .product-info { padding: 8px 10px 12px; }
  .product-name { font-size: 12px !important; line-height: 1.3; margin-bottom: 3px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-desc { display: none; }
  .product-cat { font-size: 9px; margin-bottom: 2px; }
  .product-rating { margin-bottom: 5px; gap: 3px; }
  .stars { font-size: 10px !important; letter-spacing: 0; }
  .rating-count { font-size: 9px; }
  .product-price { font-size: 12px !important; font-weight: 700; }
  .product-price-old { font-size: 10px; }
  .add-to-cart { width: 28px; height: 28px; }
  .add-to-cart svg { width: 12px; height: 12px; }
  .product-badge { font-size: 8px; padding: 2px 6px; top: 6px; left: 6px; }

  /* ── Sections ── */
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-item { display: flex; align-items: flex-start; gap: 14px; text-align: left; background: var(--off-white); padding: 14px 16px; border-radius: var(--radius); }
  .trust-icon { font-size: 26px; flex-shrink: 0; margin-bottom: 0; }
  .trust-title { font-size: 14px; margin-bottom: 3px; }
  .trust-desc { font-size: 12px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 16px; }
  .review-text { font-size: 12px; margin-bottom: 10px; }

  .chronicle-grid { grid-template-columns: 1fr; gap: 24px; }
  .chronicle-list a { font-size: 15px; }

  .section-dark p { font-size: 13px !important; }

  /* ── Footer ── */
  .site-footer { padding-top: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding-bottom: 28px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-logo { font-size: 22px; }
  .footer-col-title { font-size: 9.5px; margin-bottom: 10px; }
  .footer-col a { font-size: 12px; padding: 3px 0; }
  .footer-contact-item { font-size: 11.5px; }
  .footer-bottom { padding: 14px 0; font-size: 11px; }

  /* ── Bottom nav ── */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 990;
    background: #111;
    border-top: 1px solid rgba(255,255,255,.08);
    height: 58px;
    align-items: stretch;
    box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  }
  .mbn-item {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px;
    color: rgba(245,240,232,.4);
    font-size: 9px; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    text-decoration: none; position: relative; transition: color .2s;
  }
  .mbn-item.active, .mbn-item:hover { color: var(--gold); }
  .mbn-item.active::after {
    content: '';
    position: absolute; top: 0; left: 22%; right: 22%;
    height: 2px; background: var(--gold);
    border-radius: 0 0 3px 3px;
  }
  .mbn-cart-wrap { position: relative; display: flex; }
  .mbn-badge {
    position: absolute; top: -5px; right: -8px;
    background: var(--gold); color: #000;
    font-size: 9px; font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 3px;
  }
  body { padding-bottom: 58px; }
  .toast { bottom: 70px !important; right: 12px; left: 12px; }
}

/* ══════════════════════════════════════════════
   MOBILE ≤ 480px
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .section-title { font-size: 19px !important; }
  .product-grid { gap: 8px; }
  .product-info { padding: 7px 8px 10px; }
  .product-name { font-size: 11px !important; }
  .product-price { font-size: 12px !important; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; gap: 16px; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr; border-bottom: 1px solid var(--grey-4); padding: 14px 0; position: relative; }
  .cart-product { gap: 10px; margin-bottom: 8px; }
  .cart-img-link { width: 60px; height: 60px; }
  .cart-product-name { font-size: 13px; }
  .cart-line-total { font-weight: 700; }
  .cart-remove { position: absolute; top: 14px; right: 0; }
  .cart-actions { flex-direction: column; gap: 8px; }
  .cart-actions .btn { width: 100%; justify-content: center; }
  .cart-summary { position: static; }

  /* Checkout */
  .checkout-steps-bar { padding: 10px 0; }
  .step-num { width: 22px; height: 22px; font-size: 10px; }
  .step-label { font-size: 10px; }
  .step-divider { width: 28px; margin: 0 4px; }
  .checkout-layout { grid-template-columns: 1fr; gap: 16px; }
  .checkout-summary { position: static; order: -1; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .place-order-btn { font-size: 14px; padding: 14px; }

  /* Product detail */
  .product-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-detail-name { font-size: 20px !important; }
  .product-trust { grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; }
  .ptrust-item { font-size: 11px; }
  .fragrance-profile { grid-template-columns: 1fr 1fr; gap: 10px; }
  .delivery-info { grid-template-columns: 1fr; gap: 10px; }
  .tab-btn { padding: 10px 10px; font-size: 11px; }
  .atc-main { width: 100%; justify-content: center; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; padding-top: 16px; }
  .shop-toolbar { flex-wrap: wrap; gap: 8px; }
  .search-form, .sort-select { width: 100%; }
  .filter-toggle { width: 100%; justify-content: center; }

  /* Success */
  .success-card { padding: 20px 14px; }
  .success-title { font-size: 22px; }
  .success-details { grid-template-columns: 1fr 1fr; gap: 8px; }
  .order-number { font-size: 18px; }
  .success-actions { flex-direction: column; gap: 8px; }
  .success-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding-top: 32px; }
}
/* ══════════════════════════════════════════════════════════
   SHEHWAAR — TARGETED MOBILE FIXES
   These rules fix cart, slider, checkout on mobile
   Append to end of style.css
══════════════════════════════════════════════════════════ */

/* ── 1. Remove gold "Shop Now →" text overlay on slider ── */
/* The slide-btn already exists inside slide-overlay.
   On mobile, ensure the overlay text doesn't bleed outside */
.hero-slider { overflow: hidden; }
.slide-overlay { pointer-events: none; }
.slide-btn { pointer-events: all; }

/* ── 2. Remove the second gold marquee band ── */
/* The "Shop Now →" text appearing below banner = the .marquee-banner
   leaking in. Keep only one marquee banner */
.marquee-banner + .marquee-banner { display: none; }

/* ── 3. Cart page — clean mobile layout ── */
@media (max-width: 768px) {
  .cart-page { padding: 20px 0 72px; }
  .cart-layout { display: flex; flex-direction: column; gap: 0; }
  .cart-items { order: 1; }
  .cart-summary { order: 2; margin-top: 20px; position: static !important; }

  .cart-table-head { display: none !important; }

  .cart-row {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-4);
    position: relative;
  }

  /* Image */
  .cart-img-link {
    width: 72px !important;
    height: 72px !important;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }

  /* Product info takes remaining space */
  .cart-product {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .cart-product-name {
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cart-product-cat {
    font-size: 11px;
    color: var(--grey-3);
    margin-bottom: 4px;
  }
  .cart-price {
    font-size: 13px;
    color: var(--grey-2);
    margin-bottom: 8px;
  }
  .cart-price::before { content: none !important; }

  /* Qty inline below name */
  .cart-qty {
    display: flex;
    align-items: center;
  }
  .qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-4);
    border-radius: 4px;
    overflow: hidden;
    height: 32px;
  }
  .qty-btn {
    width: 28px; height: 32px;
    font-size: 16px;
    background: var(--off-white);
    color: var(--grey-1);
    border: none;
    display: flex; align-items: center; justify-content: center;
  }
  .qty-input {
    width: 36px; height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--grey-4);
    border-right: 1px solid var(--grey-4);
    font-size: 13px;
    background: white;
  }

  /* Line total */
  .cart-line-total {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
  }
  .cart-line-total::before { content: none !important; }

  /* Remove button - top right absolute */
  .cart-remove {
    position: absolute;
    top: 14px;
    right: 0;
    display: flex;
    align-items: center;
  }
  .remove-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-3);
    font-size: 14px;
    background: var(--off-white);
    border: 1px solid var(--grey-4);
  }

  /* Right column: price + qty + total stacked */
  .cart-price, .cart-qty, .cart-line-total { width: auto; }

  .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }
  .cart-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  /* Order summary card */
  .cart-summary {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 20px;
  }
  .summary-title { font-size: 18px; margin-bottom: 16px; }
  .summary-row { font-size: 14px; }
  .summary-total { font-size: 16px; }
  .checkout-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }
  .summary-trust {
    font-size: 10px;
    gap: 4px;
  }
  .payment-badge strong { font-size: 13px; }
  .payment-badge p { font-size: 11px; }
}

/* ── 4. Checkout page — clean mobile ── */
@media (max-width: 768px) {
  .checkout-steps-bar { padding: 12px 0; }
  .checkout-steps { gap: 0; justify-content: center; }
  .step-num { width: 26px; height: 26px; font-size: 11px; }
  .step-label { font-size: 11px; }
  .step-divider { width: 32px; margin: 0 6px; }

  .checkout-page { padding: 20px 0 72px; }
  .checkout-layout {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .checkout-form-wrap { order: 2; }
  .checkout-summary {
    order: 1;
    position: static !important;
    padding: 16px;
    border-radius: var(--radius);
  }
  .form-grid-2 { grid-template-columns: 1fr !important; gap: 12px; }
  .form-section { margin-bottom: 20px; padding-bottom: 20px; }
  .form-section-title { font-size: 17px; margin-bottom: 14px; }
  .form-control { padding: 11px 12px; font-size: 14px; }
  .payment-option { padding: 14px; }
  .place-order-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 15px;
    padding: 15px;
  }
  .checkout-disclaimer { font-size: 11px; }

  .checkout-items { max-height: 200px; overflow-y: auto; }
  .checkout-item { gap: 10px; }
  .checkout-item-img { width: 48px; height: 48px; }
  .checkout-item-name { font-size: 12px; }
  .checkout-item-total { font-size: 13px; font-weight: 700; }
  .checkout-guarantees { grid-template-columns: 1fr 1fr; gap: 6px; }
  .guarantee-item { font-size: 11px; }
  .summary-title { font-size: 17px; margin-bottom: 14px; }
}

/* ── 5. Slider — fix on mobile ── */
@media (max-width: 768px) {
  .hero-slider {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
  }
  .slide {
    min-height: 0 !important;
    height: auto !important;
    position: relative;
  }
  .slide-img-desk {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .slide-img-mob {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .slide-hide-mob { display: none !important; }

  /* Overlay anchored to bottom of image */
  .slide-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    top: auto;
    height: auto;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    padding: 20px 16px 16px;
    display: flex;
    align-items: flex-end;
  }
  .slide-content {
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  .slide-content-inner { max-width: 100%; }
  .slide-title {
    font-size: clamp(16px, 4.5vw, 24px) !important;
    margin-bottom: 6px;
    line-height: 1.2;
    color: #fff;
  }
  .slide-sub {
    font-size: 11px !important;
    margin-bottom: 12px;
    color: rgba(255,255,255,.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .slide-btn {
    padding: 9px 18px !important;
    font-size: 12px !important;
    display: inline-flex;
  }
  .slider-prev { left: 8px; width: 30px; height: 30px; font-size: 13px; }
  .slider-next { right: 8px; width: 30px; height: 30px; font-size: 13px; }
  .slider-dots { bottom: 6px; }
  .slider-dot { width: 5px; height: 5px; }
  .slider-dot.active { width: 14px; }

  /* Marquee banner */
  .marquee-banner {
    height: 32px !important;
    font-size: 10px !important;
  }
}

/* ── 6. Mobile nav — force correct behavior ── */
@media (max-width: 768px) {
  /* Ensure drawer is hidden by default */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: -110% !important;
    width: 82% !important;
    max-width: 300px !important;
    height: 100% !important;
    background: #111111 !important;
    z-index: 950 !important;
    display: flex !important;
    flex-direction: column !important;
    transition: left .3s ease !important;
    overflow: hidden !important;
    box-shadow: none;
  }
  .main-nav.open {
    left: 0 !important;
    box-shadow: 6px 0 40px rgba(0,0,0,.5) !important;
  }

  /* Drawer top bar */
  .nav-drawer-top {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
    background: #0a0a0a;
  }
  .nav-drawer-brand {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #f5f0e8;
  }
  .nav-drawer-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border: none;
    line-height: 1;
  }

  /* Nav links scroll area */
  .nav-links-wrap {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Nav items */
  .nav-list {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
  }
  .nav-list > li { width: 100%; }
  .nav-list > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(245,240,232,.75) !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
    width: 100% !important;
    letter-spacing: .01em;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a.active { color: var(--gold) !important; background: rgba(201,168,76,.06) !important; }

  .has-dropdown > a::after {
    content: '›';
    font-size: 18px;
    color: rgba(255,255,255,.3);
    transition: transform .22s;
    line-height: 1;
  }
  .has-dropdown.open > a::after { transform: rotate(90deg); }

  /* Dropdown hidden by default on mobile */
  .dropdown {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(255,255,255,.03) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 !important;
    flex-direction: column !important;
    gap: 0 !important;
    min-width: auto !important;
    border-radius: 0 !important;
    transition: none !important;
  }
  .has-dropdown.open .dropdown { display: flex !important; }
  .dropdown-col { gap: 0; }
  .dropdown-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: rgba(201,168,76,.6) !important;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 8px 20px 2px 28px !important;
    border: none;
    background: none;
    margin: 0;
  }
  .dropdown a {
    display: block !important;
    padding: 8px 20px 8px 28px !important;
    font-size: 13px !important;
    color: rgba(245,240,232,.55) !important;
    border: none !important;
    white-space: nowrap;
  }
  .dropdown a::before { display: none !important; }
  .dropdown a:hover { color: var(--gold) !important; }

  .nav-highlight {
    color: var(--gold) !important;
    border: none !important;
    background: rgba(201,168,76,.06) !important;
  }

  /* Bottom CTA */
  .nav-drawer-bottom {
    display: flex !important;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
    background: #0a0a0a;
  }
  .nav-drawer-cta-primary {
    flex: 1; text-align: center;
    padding: 10px 8px;
    font-size: 12px; font-weight: 600;
    border-radius: var(--radius);
    background: var(--gold); color: #000;
    display: block;
  }
  .nav-drawer-cta-secondary {
    flex: 1; text-align: center;
    padding: 10px 8px;
    font-size: 12px; font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(245,240,232,.65);
    display: block;
  }
}

/* ── 7. Desktop — hide mobile-only elements ── */
@media (min-width: 769px) {
  .nav-drawer-top    { display: none !important; }
  .nav-drawer-bottom { display: none !important; }
  .mobile-bottom-nav { display: none !important; }
  .nav-toggle        { display: none !important; }

  /* Restore desktop nav */
  .main-nav {
    position: static !important;
    left: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    overflow: visible !important;
    transition: none !important;
  }
  .nav-links-wrap { flex: 1; overflow: visible; }
  .nav-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: wrap !important;
  }
  .nav-list > li > a {
    display: block !important;
    padding: 8px 9px !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    color: var(--grey-1) !important;
    border-bottom: none !important;
    background: transparent !important;
    width: auto !important;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a.active { color: var(--gold) !important; background: transparent !important; }
  .has-dropdown > a::after { display: none; }
  .has-dropdown > a::before { display: none; }

  /* Desktop dropdowns */
  .dropdown {
    display: flex !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    background: var(--white) !important;
    border: 1px solid var(--grey-4) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-hover) !important;
    padding: 20px !important;
    gap: 32px !important;
    min-width: 300px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(6px) !important;
    transition: all var(--transition) !important;
    flex-direction: row !important;
  }
  .dropdown--sm {
    flex-direction: column !important;
    gap: 4px !important;
    min-width: 180px !important;
    padding: 12px !important;
  }
  .has-dropdown:hover .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .dropdown-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: .1em !important;
    color: var(--grey-3) !important;
    text-transform: uppercase !important;
    padding: 0 0 4px 0 !important;
    background: none !important;
    border: none !important;
    margin: 0 0 4px !important;
    display: block;
  }
  .dropdown a {
    display: block !important;
    padding: 3px 0 !important;
    font-size: 13px !important;
    color: var(--grey-2) !important;
    border: none !important;
    background: transparent !important;
    white-space: nowrap;
  }
  .dropdown a:hover { color: var(--gold) !important; }
  .nav-highlight {
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    border-radius: var(--radius) !important;
    padding: 6px 14px !important;
    background: transparent !important;
  }
}
/* ══════════════════════════════════════════════════════
   SHEHWAAR v4 FIXES
   1. Cart mobile — complete redesign
   2. Checkout mobile — padding/alignment
   3. Side menu visibility
   4. Slider "Shop Now" on desktop alignment
   5. WhatsApp float button
   6. Product image hover swap
══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
   1. CART — Complete Mobile Redesign
   Layout: [Image] [Name+Cat+Price] [Qty+Total+Remove]
───────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .cart-page { padding: 24px 0 80px; }
  .cart-table-head { display: none !important; }

  .cart-row {
    display: grid !important;
    grid-template-columns: 76px 1fr auto !important;
    grid-template-rows: auto auto !important;
    gap: 0 12px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--grey-4) !important;
    align-items: start !important;
    position: relative !important;
  }

  /* Col 1: Image */
  .cart-product {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .cart-img-link {
    width: 76px !important;
    height: 76px !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    display: block;
  }
  .cart-img-link img { width: 100%; height: 100%; object-fit: cover; }
  /* Hide product info text from inside .cart-product since it renders separately */
  .cart-product-info { display: none !important; }

  /* We need to show name separately — override the grid to show product info */
  /* Actually the name IS inside cart-product div, so restructure display */
  .cart-product {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
  }
  .cart-product-info { display: flex !important; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
  .cart-product-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    font-family: var(--display) !important;
    display: block !important;
  }
  .cart-product-cat { font-size: 11px; color: var(--grey-3); }
  .cart-badge-small { font-size: 10px; display: inline-block; width: fit-content; }

  /* Col 2 row 2: Price */
  .cart-price {
    grid-column: 1 !important;
    grid-row: 2 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--gold) !important;
    padding-top: 8px !important;
    display: flex;
    align-items: center;
  }
  .cart-price::before { content: none !important; }

  /* Col 3 row 2: Qty + Total + Remove */
  .cart-qty {
    grid-column: 2 !important;
    grid-row: 2 !important;
    padding-top: 8px !important;
  }
  .qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--grey-4);
    border-radius: 4px;
    overflow: hidden;
    height: 32px;
    width: fit-content;
  }
  .qty-btn {
    width: 30px; height: 32px;
    font-size: 16px;
    background: var(--off-white);
    color: var(--grey-1);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .qty-input {
    width: 38px; height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--grey-4);
    border-right: 1px solid var(--grey-4);
    font-size: 13px;
    background: #fff;
    -moz-appearance: textfield;
  }
  .qty-input::-webkit-outer-spin-button,
  .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

  /* Line total — hidden on mobile, price is enough */
  .cart-line-total {
    grid-column: 3 !important;
    grid-row: 2 !important;
    padding-top: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  .cart-line-total::before { content: none !important; }

  /* Remove button — top right */
  .cart-remove {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    padding-top: 2px !important;
  }
  .remove-btn {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #eee;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-3);
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
  }
  .remove-btn:hover { background: #fee; color: #c0392b; border-color: #fcc; }

  /* Cart actions */
  .cart-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
    padding-top: 0 !important;
  }
  .cart-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  .btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--grey-4);
    padding: 11px 20px;
    font-size: 13px;
    border-radius: var(--radius);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body);
    cursor: pointer;
  }

  /* Cart summary */
  .cart-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
  .cart-summary {
    margin-top: 24px !important;
    position: static !important;
    border-radius: var(--radius);
    padding: 20px !important;
    background: var(--off-white);
  }
  .summary-title { font-size: 18px; padding-bottom: 14px; margin-bottom: 16px; }
  .summary-row { font-size: 14px; padding: 6px 0; }
  .summary-total { font-size: 17px; }
  .free-delivery-bar { height: 5px; margin-top: 8px; }
  .summary-free-note { font-size: 12px; margin-top: 6px; }
  .payment-badge {
    padding: 12px;
    gap: 10px;
    margin-bottom: 14px;
  }
  .payment-badge span { font-size: 22px; }
  .payment-badge strong { font-size: 13px; }
  .payment-badge p { font-size: 11px; }
  .checkout-btn {
    padding: 14px !important;
    font-size: 15px !important;
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 14px !important;
  }
  .summary-trust { font-size: 10px; gap: 2px; }

  /* Empty cart */
  .empty-cart { padding: 48px 20px; }
  .empty-cart-icon { font-size: 52px; }
}

/* ─────────────────────────────────────────────────────
   2. CHECKOUT — Mobile Alignment
───────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .checkout-steps-bar { padding: 14px 0; }
  .checkout-steps { gap: 0; justify-content: center; }
  .step { gap: 6px; }
  .step-num { width: 26px; height: 26px; font-size: 11px; }
  .step-label { font-size: 11px; font-weight: 500; }
  .step-divider { width: 28px; margin: 0 4px; }

  .checkout-page { padding: 0 0 80px; }

  /* Collapsible order summary on mobile */
  .checkout-summary {
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 6px solid var(--off-white) !important;
    position: static !important;
    padding: 16px !important;
    background: var(--off-white) !important;
    order: -1;
  }
  .checkout-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .checkout-form-wrap {
    padding: 20px 16px;
  }

  /* Summary title as toggle */
  .summary-title {
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    cursor: pointer;
  }

  .checkout-items { max-height: 180px; overflow-y: auto; gap: 12px; }
  .checkout-item { gap: 10px; padding: 6px 0; }
  .checkout-item-img { width: 46px; height: 46px; }
  .checkout-item-name { font-size: 13px; font-weight: 500; }
  .checkout-item-total { font-size: 13px; font-weight: 700; flex-shrink: 0; }
  .checkout-qty-badge { width: 16px; height: 16px; font-size: 9px; top: -5px; right: -6px; }

  .summary-rows { margin-top: 12px; gap: 8px; }
  .summary-row { font-size: 13px; }
  .summary-total { font-size: 16px; }
  .checkout-guarantees { grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 14px; }
  .guarantee-item { font-size: 11px; gap: 4px; }

  /* Form sections */
  .form-section { margin-bottom: 0; padding: 20px 0; border-bottom: 1px solid var(--grey-4); }
  .form-section:last-of-type { border-bottom: none; }
  .form-section-title { font-size: 16px; margin-bottom: 14px; font-weight: 600; }
  .form-group { margin-bottom: 14px; }
  .form-label { font-size: 12px; margin-bottom: 5px; }
  .form-control { padding: 11px 13px; font-size: 14px; border-radius: 6px; }
  .form-grid-2 { grid-template-columns: 1fr !important; gap: 14px; }

  .payment-option { padding: 14px; border-radius: 6px; }
  .payment-option-inner { gap: 10px; }
  .payment-option strong { font-size: 14px; }
  .payment-option p { font-size: 12px; }
  .payment-icon { font-size: 24px; }

  .place-order-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 15px !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-top: 16px !important;
    letter-spacing: .04em;
  }
  .checkout-disclaimer { font-size: 11px; margin-top: 10px; }
}

/* ─────────────────────────────────────────────────────
   3. SIDE MENU — Better visibility & colors
───────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Ensure the drawer sits ABOVE everything */
  .main-nav {
    z-index: 9999 !important;
    background: #0f1923 !important; /* deep navy-dark, luxurious */
  }
  .nav-drawer-top {
    background: #0a1219 !important;
    padding: 20px 20px !important;
  }
  .nav-drawer-brand {
    color: #f5f0e8 !important;
    font-size: 22px !important;
    letter-spacing: .2em !important;
  }
  .nav-drawer-close {
    background: rgba(201,168,76,.15) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(201,168,76,.25) !important;
    font-size: 16px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .nav-list > li > a {
    color: rgba(245,240,232,.82) !important;
    padding: 15px 20px !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(255,255,255,.04) !important;
    letter-spacing: .02em !important;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a.active {
    color: var(--gold) !important;
    background: rgba(201,168,76,.07) !important;
    padding-left: 24px !important;
  }
  .has-dropdown > a::after {
    content: '›' !important;
    font-size: 20px !important;
    color: rgba(255,255,255,.25) !important;
    font-weight: 300 !important;
  }

  .dropdown { background: rgba(201,168,76,.04) !important; }
  .dropdown-label { color: rgba(201,168,76,.7) !important; font-size: 9px !important; }
  .dropdown a {
    color: rgba(245,240,232,.55) !important;
    padding: 9px 20px 9px 30px !important;
    font-size: 13px !important;
  }
  .dropdown a:hover { color: var(--gold) !important; background: rgba(201,168,76,.08) !important; }

  .nav-highlight { color: var(--gold) !important; font-weight: 600 !important; }

  .nav-drawer-bottom { background: #0a1219 !important; padding: 16px 20px !important; }
  .nav-drawer-cta-primary {
    background: var(--gold) !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 11px !important;
    letter-spacing: .04em !important;
  }
  .nav-drawer-cta-secondary {
    border-color: rgba(255,255,255,.12) !important;
    color: rgba(245,240,232,.6) !important;
    font-size: 13px !important;
    padding: 11px !important;
  }

  /* Overlay darker */
  .nav-overlay {
    background: rgba(0,0,0,.65) !important;
    backdrop-filter: blur(3px);
  }
}

/* ─────────────────────────────────────────────────────
   4. SLIDER — Desktop "Shop Now" alignment fix
───────────────────────────────────────────────────── */
/* Desktop: overlay takes full height, content centered left */
@media (min-width: 769px) {
  .hero-slider { position: relative; min-height: 480px; max-height: 85vh; }
  .slider-track { height: 100%; }
  .slide { height: 100%; min-height: 480px; max-height: 85vh; position: relative; }
  .slide-img-desk {
    width: 100%;
    height: 100%;
    min-height: 480px;
    max-height: 85vh;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0; left: 0;
  }
  .slide-overlay {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 55%, transparent 100%) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .slide-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px !important;
    width: 100%;
  }
  .slide-content-inner { max-width: 520px; }
  .slide-title {
    font-size: clamp(32px, 5vw, 64px) !important;
    color: #fff !important;
    font-weight: 300 !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    font-family: var(--display) !important;
  }
  .slide-sub {
    font-size: 15px !important;
    color: rgba(255,255,255,.8) !important;
    margin-bottom: 28px !important;
    max-width: 400px !important;
    display: block !important;
    line-height: 1.7 !important;
  }
  .slide-btn {
    padding: 13px 28px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: var(--gold) !important;
    color: #000 !important;
    border-radius: var(--radius) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    letter-spacing: .05em !important;
  }
  .slide-btn:hover { background: var(--gold-light, #e8d5a3) !important; }
  .slider-prev { left: 20px; }
  .slider-next { right: 20px; }
}

/* Mobile slider */
@media (max-width: 768px) {
  .hero-slider { min-height: 0 !important; max-height: none !important; }
  .slider-track { height: auto !important; }
  .slide { min-height: 0 !important; max-height: none !important; height: auto !important; position: relative; }
  .slide-img-desk {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }
  .slide-img-mob {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/5;
    object-fit: cover;
  }
  .slide-hide-mob { display: none !important; }
  .slide-overlay {
    position: absolute !important;
    bottom: 0; left: 0; right: 0; top: auto !important;
    height: auto !important;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, transparent 100%) !important;
    padding: 24px 16px 14px !important;
    display: flex !important;
    align-items: flex-end !important;
  }
  .slide-content { padding: 0 !important; width: 100%; max-width: 100%; }
  .slide-content-inner { max-width: 100%; }
  .slide-title { font-size: clamp(17px, 4.5vw, 26px) !important; margin-bottom: 6px !important; line-height: 1.2 !important; color: #fff !important; }
  .slide-sub { font-size: 11px !important; margin-bottom: 12px !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; color: rgba(255,255,255,.85) !important; }
  .slide-btn { padding: 9px 18px !important; font-size: 12px !important; }
  .slider-prev { left: 8px !important; width: 30px !important; height: 30px !important; font-size: 13px !important; }
  .slider-next { right: 8px !important; width: 30px !important; height: 30px !important; font-size: 13px !important; }
  .slider-dot { width: 5px !important; height: 5px !important; }
  .slider-dot.active { width: 14px !important; }
}

/* ─────────────────────────────────────────────────────
   5. WHATSAPP FLOAT BUTTON — Desktop + Mobile
───────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,.35));
  transition: transform .2s ease, filter .2s;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 20px rgba(37,211,102,.5));
}
.whatsapp-float-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  position: relative;
  transition: background .2s;
}
.whatsapp-float-btn:hover { background: #1ebe5d; }
.whatsapp-float-btn svg { width: 28px; height: 28px; fill: #fff; flex-shrink: 0; }
/* Pulse ring */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: wapulse 2s ease-out infinite;
}
@keyframes wapulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
.whatsapp-float-label {
  background: #fff;
  color: #128C7E;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px 6px 10px;
  border-radius: 0 24px 24px 0;
  margin-left: -8px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  display: none;
  letter-spacing: .02em;
}
.whatsapp-float:hover .whatsapp-float-label { display: block; }

/* On mobile, keep above bottom nav */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 72px; right: 14px; }
  .whatsapp-float-btn { width: 48px; height: 48px; }
  .whatsapp-float-btn svg { width: 24px; height: 24px; }
  .whatsapp-float-label { display: none !important; }
}

/* ─────────────────────────────────────────────────────
   6. PRODUCT IMAGE HOVER — swap to second image
───────────────────────────────────────────────────── */
.product-img-wrap { overflow: hidden; position: relative; }
.product-img-wrap img.img-primary  { opacity: 1; transition: opacity .4s ease, transform .5s ease; }
.product-img-wrap img.img-hover {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease, transform .5s ease;
  transform: scale(1.04);
}
.product-card:hover .product-img-wrap img.img-primary  { opacity: 0; transform: scale(1.04); }
.product-card:hover .product-img-wrap img.img-hover    { opacity: 1; transform: scale(1); }

/* Fallback: if no hover image, just scale */
.product-img-wrap img:only-child { transition: transform .5s ease; }
.product-card:hover .product-img-wrap img:only-child { transform: scale(1.06); }


/* ═══════════════════════════════════════════════════════
   SIDE DRAWER — Complete rewrite with new class names
   No conflicts with desktop nav
═══════════════════════════════════════════════════════ */

/* Hamburger — only visible on mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--black);
  flex-shrink: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .hamburger { display: flex; align-items: center; justify-content: center; }
}

/* Desktop nav — hidden on mobile */
.desktop-nav { display: flex; align-items: center; flex: 1; }
@media (max-width: 768px) { .desktop-nav { display: none !important; } }

/* Overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1000;
  transition: background .35s ease;
}
.drawer-overlay.do-show {
  display: block;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
}

/* Body lock */
.drawer-body-lock { overflow: hidden !important; }

/* Side drawer */
.side-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 88vw;
  height: 100%;
  height: 100dvh;
  background: #0d1117;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: left .32s cubic-bezier(.4,0,.2,1);
  box-shadow: none;
  overflow: hidden;
}
.side-drawer.sd-open {
  left: 0;
  box-shadow: 8px 0 48px rgba(0,0,0,.6);
}

/* Drawer head */
.sd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  background: #080d12;
  border-bottom: 1px solid rgba(201,168,76,.15);
  flex-shrink: 0;
}
.sd-logo { display: flex; align-items: center; }
.sd-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.sd-close:hover { background: rgba(201,168,76,.25); }

/* Drawer body */
.sd-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 0 16px;
}
.sd-body::-webkit-scrollbar { width: 2px; }
.sd-body::-webkit-scrollbar-thumb { background: rgba(201,168,76,.2); }

/* Nav links */
.sd-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,240,232,.72);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s, padding-left .2s;
  text-decoration: none;
}
.sd-link:hover { color: var(--gold); background: rgba(201,168,76,.06); padding-left: 24px; }
.sd-link--active { color: var(--gold) !important; background: rgba(201,168,76,.07) !important; }
.sd-link--gold { color: var(--gold) !important; font-weight: 600; }
.sd-link--gold:hover { background: rgba(201,168,76,.1) !important; }
.sd-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: .6;
}
.sd-link:hover .sd-icon,
.sd-link--active .sd-icon,
.sd-link--gold .sd-icon { opacity: 1; }

/* Accordion */
.sd-accordion { border-bottom: 1px solid rgba(255,255,255,.04); }
.sd-acc-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,240,232,.72);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: color .2s, background .2s;
}
.sd-acc-toggle:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.sd-acc-toggle span { flex: 1; }
.sd-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: .4;
  transition: transform .25s ease;
}
.sd-accordion.sd-acc-open .sd-chevron { transform: rotate(180deg); opacity: .8; }
.sd-accordion.sd-acc-open .sd-acc-toggle { color: var(--gold); }

/* Accordion body */
.sd-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(201,168,76,.03);
}
.sd-acc-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201,168,76,.55);
  padding: 10px 20px 4px 20px;
  display: block;
}
.sd-sub-link {
  display: block;
  padding: 8px 20px 8px 28px;
  font-size: 13px;
  color: rgba(245,240,232,.5);
  transition: color .2s, padding-left .2s;
  text-decoration: none;
}
.sd-sub-link:hover { color: var(--gold); padding-left: 32px; }

/* Drawer footer */
.sd-foot {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  background: #080d12;
  border-top: 1px solid rgba(201,168,76,.12);
}
.sd-foot-btn {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sd-foot-btn--primary {
  background: var(--gold);
  color: #000;
  letter-spacing: .04em;
}
.sd-foot-btn--primary:hover { background: #e8d5a3; }
.sd-foot-btn--wa {
  background: #25D366;
  color: #fff;
}
.sd-foot-btn--wa:hover { background: #1ebe5d; }

/* ═══════════════════════════════════════════════════
   DESKTOP NAV DROPDOWNS
═══════════════════════════════════════════════════ */
.desk-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
}
.desk-nav-list > li { position: relative; }
.desk-nav-list > li > a {
  display: block;
  padding: 8px 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-1);
  white-space: nowrap;
  transition: color .2s;
}
.desk-nav-list > li > a:hover,
.desk-nav-list > li > a.active { color: var(--gold); }
.desk-collab {
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius) !important;
  padding: 5px 12px !important;
  color: var(--gold) !important;
}
.desk-collab:hover { background: rgba(201,168,76,.08) !important; }

.desk-has-drop { position: relative; }
.desk-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--grey-4);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 18px;
  display: flex;
  gap: 28px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 500;
}
.desk-dropdown--sm { flex-direction: column; gap: 4px; min-width: 160px; padding: 10px; }
.desk-has-drop:hover .desk-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desk-dd-col { display: flex; flex-direction: column; gap: 2px; }
.desk-dd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 6px;
}
.desk-dropdown a {
  font-size: 13px;
  color: var(--grey-2);
  padding: 3px 0;
  transition: color .15s;
  display: block;
}
.desk-dropdown a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   BOTTOM NAV
═══════════════════════════════════════════════════ */
.mob-bottom-nav { display: none; }
@media (max-width: 768px) {
  .mob-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 990;
    background: #0d1117;
    border-top: 1px solid rgba(201,168,76,.15);
    height: 58px;
    align-items: stretch;
  }
  body { padding-bottom: 58px; }
  .mbn-item {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px;
    color: rgba(245,240,232,.35);
    font-size: 9px; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    text-decoration: none; position: relative;
    transition: color .2s;
  }
  .mbn-item.active, .mbn-item:hover { color: var(--gold); }
  .mbn-item.active::after {
    content: '';
    position: absolute; top: 0; left: 20%; right: 20%;
    height: 2px; background: var(--gold);
    border-radius: 0 0 3px 3px;
  }
  .mbn-cart-wrap { position: relative; display: inline-flex; }
  .mbn-badge {
    position: absolute; top: -5px; right: -8px;
    background: var(--gold); color: #000;
    font-size: 9px; font-weight: 700;
    min-width: 16px; height: 16px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; padding: 0 3px;
  }
  .toast { bottom: 70px !important; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: #080d12;
  color: rgba(245,240,232,.6);
  margin-top: 0;
}
.footer-top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), #c9a84c, var(--gold), transparent);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo-wrap { display: inline-block; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  color: rgba(245,240,232,.55);
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(245,240,232,.4);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,.6);
  transition: all .2s;
}
.footer-social-btn:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold); }
.footer-wa-social:hover { background: rgba(37,211,102,.15); border-color: #25D366; color: #25D366; }

.footer-col { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.footer-col a {
  font-size: 13px;
  color: rgba(245,240,232,.5);
  transition: color .2s, padding-left .2s;
  display: block;
  padding: 1px 0;
}
.footer-col a:hover { color: rgba(245,240,232,.9); padding-left: 4px; }

.footer-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(245,240,232,.45);
}
.fti-icon { font-size: 14px; flex-shrink: 0; }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(245,240,232,.3); }
.footer-bottom-tagline { font-size: 12px; color: rgba(245,240,232,.25); }
.footer-bottom-links { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.footer-bottom-links a { color: rgba(245,240,232,.3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,.15); }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; flex-direction: row; gap: 40px; flex-wrap: wrap; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 36px 0 32px; }
  .footer-brand { grid-column: 1/-1; flex-direction: column; gap: 0; }
  .footer-tagline { font-size: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 0; }
  .footer-bottom-tagline { display: none; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,.3));
  transition: transform .2s, filter .2s;
}
.wa-float:hover { transform: scale(1.05); filter: drop-shadow(0 6px 20px rgba(37,211,102,.5)); }
.wa-float-circle {
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.wa-float-circle::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}
.wa-float-label {
  display: none;
  background: #fff;
  color: #128C7E;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px 7px 10px;
  border-radius: 0 24px 24px 0;
  margin-left: -8px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  letter-spacing: .02em;
}
.wa-float:hover .wa-float-label { display: block; }
@media (max-width: 768px) {
  .wa-float { bottom: 70px; right: 14px; }
  .wa-float-circle { width: 46px; height: 46px; }
  .wa-float-label { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   PRODUCT IMAGE HOVER SWAP
═══════════════════════════════════════════════════ */
.product-img-wrap { overflow: hidden; position: relative; }
.product-img-wrap img.img-primary {
  transition: opacity .4s ease, transform .5s ease;
  opacity: 1;
}
.product-img-wrap img.img-hover {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .4s ease, transform .5s ease;
}
.product-card:hover .product-img-wrap img.img-primary { opacity: 0; transform: scale(1.04); }
.product-card:hover .product-img-wrap img.img-hover   { opacity: 1; transform: scale(1); }
.product-img-wrap img:only-child { transition: transform .5s ease; }
.product-card:hover .product-img-wrap img:only-child  { transform: scale(1.06); }
