/* ============================================================================
   GAURISHANKAR DECORE HOME — CONSOLIDATED STYLESHEET
   ----------------------------------------------------------------------------
   Single source of truth. Replaces: test3style.css + cart-system.css +
   every duplicated :root block that was concatenated into the old file.

   DELIVERY NOTES (what was fixed vs. the old code)
   ----------------------------------------------------------------------------
   1.  ONE :root. The old file declared :root 5+ times with conflicting values
       (three --cream, two --radius-sm, --font-sans redefined, etc). All merged
       into the single token block below. Nothing silently overrides anymore.
   2.  Undefined variables fixed. --dark, --gold, --gold2, --text, --font-serif,
       --hh, "color: dark" etc. were never defined and rendered as garbage.
       They are now mapped onto the real brand tokens.
   3.  Single font system: Cormorant Garamond (display) + Jost (body).
       The old file fought between Playfair/Inter and Cormorant/Jost.
   4.  The purple/indigo mobile block (#6d28d9 / #4f46e5 headings on mobile)
       is GONE. Mobile now uses the crimson + gold brand like everything else.
   5.  Mobile responsiveness rebuilt with clamp()-driven fluid type & spacing
       instead of dozens of hard-coded px breakpoint overrides.
   6.  Search dropdown, hero card, gallery, products, flash sale, testimonials,
       FAQ, contact, location all use real brand colors and consistent spacing.
   ============================================================================ */


/* ============================================================================
   1. DESIGN TOKENS  — the only :root in the file
   ============================================================================ */
:root {
  /* ---- Brand palette (crimson + gold) ---- */
  --brand-crimson:       #520814;
  --brand-crimson-dark:  #2d040c;
  --brand-crimson-xdk:   #1a0208;
  --brand-crimson-deep:  #4a0b1b;
  --brand-crimson-light: #7a1830;
  --brand-crimson-mid:   #9e2a45;
  --brand-crimson-rose:  #c45870;
  --brand-crimson-pearl: #fdf0f4;

  --brand-gold:          #c4a265;
  --brand-gold-deep:     #a8853a;
  --brand-gold-light:    #dcc89b;
  --brand-gold-pale:     #f5efe0;
  --brand-gold-bright:   #c8973a;

  /* ---- Neutrals ---- */
  --espresso:      #1a1814;
  --espresso-mid:  #2d2a24;
  --ink:           #1c1410;
  --ink-soft:      #3d2e1e;
  --cream:         #faf9f6;
  --cream-warm:    #f5f2eb;
  --cream-deep:    #ede3d4;
  --paper:         #fefcf8;
  --surface:       #ffffff;
  --whatsapp:      #25d366;
  --whatsapp-deep: #128c4a;

  /* ---- Semantic text ---- */
  --text-primary:   #2d2a24;
  --text-secondary: #6b6560;
  --text-muted:     #9e9892;

  /* ---- Borders ---- */
  --border:        #e8e4dc;
  --border-light:  #f0ece5;
  --border-strong: rgba(26, 18, 10, 0.18);

  /* ---- Aliases for old/undefined variables (back-compat) ---- */
  /* The old CSS referenced these names; map them so nothing renders broken. */
  --dark:        var(--espresso);
  --dark3:       var(--espresso-mid);
  --gold:        var(--brand-gold);
  --gold2:       var(--brand-gold-light);
  --text:        var(--text-primary);
  --muted:       var(--text-secondary);
  --cream2:      var(--cream-warm);
  --burg:        var(--brand-crimson);

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgb(26 24 20 / 0.05), 0 1px 2px rgb(26 24 20 / 0.04);
  --shadow-md: 0 4px 16px rgb(26 24 20 / 0.06), 0 2px 6px rgb(26 24 20 / 0.04);
  --shadow-lg: 0 12px 40px rgb(26 24 20 / 0.10), 0 4px 12px rgb(26 24 20 / 0.05);
  --shadow-xl: 0 24px 56px rgb(26 24 20 / 0.14), 0 8px 20px rgb(26 24 20 / 0.06);

  /* ---- Radii ---- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* ---- Motion ---- */
  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   0.18s;
  --t-smooth: 0.30s;
  --t-bounce: 0.40s;

  /* ---- Typography: ONE system ---- */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;
  /* aliases used throughout old code */
  --font-sans:    var(--font-body);
  --font-serif:   var(--font-display);

  /* ---- Fluid type scale (drives mobile responsiveness) ---- */
  --fs-eyebrow: clamp(0.62rem, 0.4vw + 0.5rem, 0.72rem);
  --fs-small:   clamp(0.78rem, 0.4vw + 0.68rem, 0.9rem);
  --fs-body:    clamp(0.9rem,  0.5vw + 0.78rem, 1.05rem);
  --fs-lg:      clamp(1.05rem, 0.9vw + 0.85rem, 1.4rem);
  --fs-h3:      clamp(1.3rem,  1.6vw + 0.9rem, 2.1rem);
  --fs-h2:      clamp(1.9rem,  3.4vw + 1rem, 3.4rem);
  --fs-h1:      clamp(2.3rem,  4.5vw + 1.1rem, 4.4rem);

  /* ---- Fluid spacing rhythm ---- */
  --space-xs: clamp(0.5rem, 0.4vw + 0.4rem, 0.75rem);
  --space-sm: clamp(0.75rem, 0.7vw + 0.55rem, 1.1rem);
  --space-md: clamp(1rem, 1.2vw + 0.7rem, 1.75rem);
  --space-lg: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  --space-xl: clamp(2rem, 3.5vw + 1.1rem, 4rem);
  --space-2xl: clamp(2.8rem, 5vw + 1.2rem, 5.5rem);

  /* ---- Section rhythm ---- */
  --section-py: clamp(3rem, 7vw, 6rem);
  --section-px: clamp(1rem, 5vw, 5rem);
  --container:  1480px;

  /* ---- Z-index scale ---- */
  --z-base: 1;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-header: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-portal: 500;
  --z-toast: 600;

  /* ---- Hero card offset (was undefined --hh) ---- */
  --hero-card-top: clamp(90px, 14vh, 160px);

  /* ---- Nav / drawer / tab sizing ---- */
  --nav-bar-height: clamp(40px, 4.2vw, 52px);
  --drawer-width:   clamp(280px, 82vw, 360px);
  --tab-bar-height: clamp(60px, 9vw, 72px);
  --danger:      #c0392b;
  --danger-pale: #fdf0ee;
}


/* ============================================================================
   2. RESET & BASE
   ============================================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* Luxury grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-toast);
  opacity: 0.02;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4t5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Kb8yLhUWaF/4M3/OwDsNI3p38ytZp05b5fFWGRmw/8AkbPEOJgzd4NtKGXb/uaTzRbZi/G8TnI2QJTQpHHc/OEi5z4EuOJxP7AEGFxZ0JkfVAjqXTI8AxQoKDH3M/AAAAASUVORK5CYII=");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }


/* ============================================================================
   3. SHARED SECTION HEADERS  (unified for ALL sections)
   ============================================================================ */
.sec-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-xs);
}
.sec-label::before, .sec-label::after {
  content: '';
  width: clamp(20px, 3vw, 34px);
  height: 1px;
  background: var(--brand-gold);
}
.sec-label span {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
}
.sec-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  text-wrap: balance;
}
.sec-title em { font-style: italic; color: var(--brand-crimson); }
.sec-sub {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-inline: auto;
  max-width: 52ch;
}

/* Shared eyebrow/heading used by FAQ/contact/location */
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
}
.s-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brand-gold);
}
.s-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.s-h2 em { font-style: italic; color: var(--brand-gold); }
.s-sub {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================================================
   4. SITE HEADER  (logo · search · actions)
   ============================================================================ */
.site-header {
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  box-shadow: 0 1px 0 rgb(26 24 20 / 0.04);
  overflow: visible;
}

.header-inner {
  width: min(100% - clamp(1rem, 4vw, 4rem), var(--container));
  margin-inline: auto;
  min-height: clamp(68px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.6rem, 2vw, 2.25rem);
  flex-wrap: nowrap;
  position: relative;
  z-index: var(--z-raised);
}

/* Tablet/mobile: stack search below logo row */
@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 1.5rem, 100%);
    min-height: auto;
    padding-block: 0.7rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo actions" "search search";
    gap: 0.7rem;
  }
}
@media (max-width: 600px) { .header-inner { width: min(100% - 1rem, 100%); gap: 0.55rem; } }

/* ---- Logo ---- */
.logo-wrap {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.55rem, 1vw, 1rem);
  flex: 0 0 auto;
  min-width: 0;
  max-width: clamp(190px, 22vw, 360px);
  padding: clamp(0.3rem, 0.7vw, 0.6rem) clamp(0.45rem, 1vw, 0.9rem);
  border-radius: clamp(12px, 1.5vw, 20px);
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}
.logo-wrap:hover {
  background: rgb(82 8 20 / 0.04);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgb(82 8 20 / 0.08);
}
.logo-wrap:active { transform: scale(0.985); }

.site-logo {
  flex: 0 0 auto;
  width: clamp(42px, 4.8vw, 80px);
  height: clamp(42px, 4.8vw, 80px);
  object-fit: contain;
  border-radius: 50%;
  outline: 2px solid rgb(82 8 20 / 0.18);
  outline-offset: 2px;
  box-shadow: 0 10px 25px rgb(45 4 12 / 0.16);
  transition: transform var(--t-smooth) var(--ease-out);
}
.logo-wrap:hover .site-logo { transform: scale(1.04); }

.brand-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  font-weight: 700;
  color: var(--brand-crimson);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  margin-top: 0.14rem;
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 0.8vw, 0.85rem);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.82;
}

/* The .logo-mark badge used in the mobile drawer */
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--brand-crimson), var(--brand-crimson-dark));
  color: var(--brand-gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgb(82 8 20 / 0.25);
}


/* ============================================================================
   5. SEARCH BAR + CATEGORY DROPDOWN  (fixed: real colors, escapes overflow)
   ============================================================================ */
.search-bar-strip {
  grid-area: search;
  position: relative;
  z-index: var(--z-dropdown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: clamp(260px, 28vw, 420px);
  max-width: clamp(520px, 54vw, 920px);
  margin-inline: auto;
}
.sbs-inner { position: relative; width: 100%; min-width: 0; }

.sbs-input-wrap {
  position: relative;
  width: 100%;
  height: clamp(46px, 4.4vw, 62px);
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 2px solid var(--espresso-mid);
  border-radius: clamp(12px, 1.2vw, 18px);
  box-shadow: 0 8px 28px rgb(26 24 20 / 0.09),
              inset 0 0 0 1px rgb(255 255 255 / 0.7);
  transition: border-color var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out);
}
.sbs-input-wrap:focus-within {
  border-color: var(--espresso);
  box-shadow: 0 12px 38px rgb(26 24 20 / 0.13),
              0 0 0 4px rgb(196 162 101 / 0.25);
}

.cat-trigger-wrap { flex: 0 0 clamp(92px, 12.5vw, 165px); height: 100%; position: relative; }
.cat-trigger-btn {
  width: 100%; height: 100%;
  border: 0; border-right: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  padding: 0 clamp(8px, 1.1vw, 16px);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(4px, 0.6vw, 8px);
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.9vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-radius: clamp(10px, 1.1vw, 16px) 0 0 clamp(10px, 1.1vw, 16px);
  overflow: hidden;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.cat-trigger-btn:hover { background: var(--cream-warm); color: var(--espresso); }
.cat-trigger-btn #catTriggerText { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.cat-trigger-btn svg {
  width: clamp(11px, 1.1vw, 15px); height: clamp(11px, 1.1vw, 15px);
  flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2.5;
  pointer-events: none;
  transition: transform var(--t-fast) var(--ease-out);
}
.cat-trigger-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

#mainSearchInput {
  flex: 1 1 auto; min-width: 0; height: 100%;
  padding: 0 clamp(12px, 1.8vw, 24px);
  border: 0; outline: 0; background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.05vw, 1.1rem);
  caret-color: var(--brand-gold-deep);
}
#mainSearchInput::placeholder { color: #9c958f; opacity: 1; }

.sbs-clear {
  flex: 0 0 clamp(28px, 2.8vw, 36px); height: 100%;
  border: 0; background: transparent; color: var(--text-muted);
  font-size: clamp(1rem, 1.3vw, 1.35rem); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: color var(--t-fast), background var(--t-fast);
}
.sbs-clear.visible { display: flex; }
.sbs-clear[hidden] { display: none; }
.sbs-clear:hover { color: var(--espresso); background: var(--cream-warm); }

.sbs-divider { flex: 0 0 1px; width: 1px; background: var(--border); align-self: stretch; margin: 8px 0; }

.sbs-submit {
  position: relative;
  flex: 0 0 clamp(50px, 5.2vw, 70px); height: 100%;
  border: 0; outline: 0;
  background: linear-gradient(180deg, var(--espresso-mid), var(--espresso));
  color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  border-radius: 0 clamp(10px, 1.1vw, 16px) clamp(10px, 1.1vw, 16px) 0;
  transition: filter var(--t-fast), transform var(--t-fast);
}
.sbs-submit::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--brand-crimson), var(--brand-crimson-dark));
  opacity: 0; transition: opacity var(--t-fast) var(--ease-out); pointer-events: none;
}
.sbs-submit:hover::before, .sbs-submit:focus-visible::before { opacity: 1; }
.sbs-submit:active { transform: scale(0.97); }
.sbs-submit-icon {
  position: relative; z-index: var(--z-raised);
  width: clamp(18px, 1.8vw, 24px); height: clamp(18px, 1.8vw, 24px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
}

/* ---- Results dropdown — FIXED: was using undefined --dark / "color: dark" ---- */
.sbs-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0; right: 0; width: 100%;
  max-height: min(420px, 70vh);
  display: none; flex-direction: column; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: clamp(12px, 1.3vw, 18px);
  box-shadow: var(--shadow-xl);
  z-index: 99999;
}
.sbs-results.show { display: flex; animation: sbsDropIn 0.22s var(--ease-expo) both; }
@keyframes sbsDropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.sbs-results-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(10px,1.1vw,14px) clamp(14px,1.7vw,20px);
  border-bottom: 1px solid var(--border-light);
}
.sbs-results-label {
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-secondary);
}
.sbs-results-count { font-size: var(--fs-eyebrow); color: var(--text-muted); }

.sbs-results-list { flex: 1; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.sbs-results-list::-webkit-scrollbar { width: 4px; }
.sbs-results-list::-webkit-scrollbar-thumb { background: rgb(196 162 101 / 0.32); border-radius: 999px; }

.search-drop-item {
  position: relative; display: grid;
  grid-template-columns: clamp(42px,4.2vw,52px) 1fr auto;
  align-items: center; gap: clamp(10px,1.3vw,15px);
  padding: clamp(9px,1vw,12px) clamp(14px,1.6vw,20px);
  cursor: pointer; border-bottom: 1px solid var(--border-light);
  transition: background var(--t-fast), padding-inline var(--t-fast);
}
.search-drop-item:last-child { border-bottom: 0; }
.search-drop-item::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 2px; border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-gold), var(--brand-gold-deep));
  opacity: 0; transform: scaleY(0.4);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.search-drop-item:hover { background: var(--brand-gold-pale); padding-left: clamp(18px,2vw,24px); }
.search-drop-item:hover::before { opacity: 1; transform: scaleY(1); }
.search-drop-item img {
  width: clamp(42px,4.2vw,52px); height: clamp(42px,4.2vw,52px);
  object-fit: cover; border-radius: clamp(7px,0.7vw,10px);
  background: var(--cream-warm); border: 1px solid var(--border);
}
.sdi-info { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.sdi-category {
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-gold-deep);
}
.sdi-name {
  font-size: var(--fs-small); font-weight: 500; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sdi-name mark { background: var(--brand-gold-pale); color: var(--brand-crimson); padding: 0 2px; border-radius: 3px; font-style: normal; }
.sdi-price { font-size: var(--fs-small); font-weight: 700; color: var(--brand-gold-deep); white-space: nowrap; text-align: right; }

.sbs-results-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(10px,1.1vw,14px) clamp(14px,1.7vw,20px);
  border-top: 1px solid var(--border-light);
}
.sbs-view-all {
  border: 0; background: transparent; cursor: pointer;
  color: var(--brand-crimson); font-family: var(--font-body);
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px;
  transition: opacity var(--t-fast), gap var(--t-fast);
}
.sbs-view-all::after { content: "→"; }
.sbs-view-all:hover { opacity: 0.8; gap: 8px; }
.sbs-results-tip { font-size: var(--fs-eyebrow); color: var(--text-muted); }

.search-no-results { padding: clamp(28px,4vw,44px) clamp(18px,3vw,28px); text-align: center; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.search-no-results p { color: var(--text-secondary); font-size: var(--fs-body); }
.search-no-results strong { color: var(--text-primary); }
.search-no-results small { color: var(--text-muted); font-size: var(--fs-small); }

/* ---- Portal category menu (fixed, escapes stacking contexts) ---- */
.cat-portal-menu {
  position: fixed; top: 0; left: 0;
  min-width: clamp(150px, 16vw, 230px);
  max-height: min(55vh, 400px);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: clamp(10px,1vw,14px); box-shadow: var(--shadow-xl);
  padding: 6px; display: none; z-index: var(--z-portal); scrollbar-width: thin;
}
.cat-portal-menu.open { display: block; animation: catMenuIn 0.18s var(--ease-expo) both; }
@keyframes catMenuIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.cat-portal-menu .cat-opt {
  display: block; width: 100%; min-height: clamp(36px,3.4vw,44px);
  padding: clamp(8px,0.9vw,11px) clamp(11px,1.1vw,15px);
  border: 0; background: transparent; border-radius: clamp(7px,0.7vw,10px);
  text-align: left; color: var(--text-primary);
  font-family: var(--font-body); font-size: var(--fs-small); font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.cat-portal-menu .cat-opt:hover { background: var(--brand-gold-pale); color: var(--espresso); }
.cat-portal-menu .cat-opt.active { background: var(--brand-gold-pale); color: var(--espresso); font-weight: 600; position: relative; }
.cat-portal-menu .cat-opt.active::before { content: ""; position: absolute; left: 4px; top: 25%; bottom: 25%; width: 3px; background: var(--brand-gold); border-radius: 999px; }


/* ============================================================================
   6. HEADER ACTIONS  (language · whatsapp · cart · hamburger)
   ============================================================================ */
.header-actions {
  grid-area: actions;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(0.35rem, 0.8vw, 0.9rem);
  flex: 0 0 auto; min-width: max-content;
  position: relative; z-index: var(--z-raised);
}

/* ---- Language toggle ---- */
.lang-toggle {
  height: clamp(34px, 3vw, 44px);
  padding: 0 clamp(0.35rem, 0.8vw, 0.7rem);
  display: inline-flex; align-items: center; gap: clamp(0.2rem, 0.45vw, 0.45rem);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(196 162 101 / 0.38);
  box-shadow: 0 8px 22px rgb(26 24 20 / 0.08);
}
@supports (backdrop-filter: blur(1px)) { .lang-toggle { backdrop-filter: blur(14px); } }
.lang-btn {
  border: 0; background: transparent; color: var(--text-secondary);
  font-size: clamp(0.62rem, 0.75vw, 0.82rem); font-weight: 800;
  cursor: pointer; padding: 0.2rem 0.25rem; border-radius: var(--radius-pill);
  transition: color var(--t-fast);
}
.lang-btn.active { color: var(--brand-crimson); }
.lang-btn:hover { background: var(--cream-warm); color: var(--espresso); }
.lang-sep { color: rgb(107 101 96 / 0.45); font-size: clamp(0.65rem, 0.8vw, 0.9rem); }

/* ---- WhatsApp pill ---- */
.nav-wa-pill {
  width: clamp(36px, 3.4vw, 48px); height: clamp(36px, 3.4vw, 48px); min-width: clamp(36px, 3.4vw, 48px);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff 0%, #7ff0a7 18%, #25d366 48%, #128c4a 100%);
  color: var(--surface);
  box-shadow: 0 10px 28px rgb(37 211 102 / 0.35), inset 0 1px 0 rgb(255 255 255 / 0.45);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-wa-pill:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 34px rgb(37 211 102 / 0.45); }
.wa-outline-icon {
  width: clamp(20px, 1.9vw, 27px); height: clamp(20px, 1.9vw, 27px);
  fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
  position: relative; z-index: var(--z-raised);
}
.wa-outline-icon path { fill: none; stroke: currentColor; }
.wa-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  background: rgb(37 211 102 / 0.3); z-index: -1;
  animation: waPulse 1.7s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.85); opacity: 0.75; } 100% { transform: scale(1.45); opacity: 0; } }

/* ---- Cart button ---- */
.cart-btn {
  position: relative;
  width: clamp(36px, 3.4vw, 50px); height: clamp(36px, 3.4vw, 50px); min-width: clamp(36px, 3.4vw, 50px);
  border-radius: clamp(12px, 1.4vw, 16px);
  border: 1px solid rgb(196 162 101 / 0.42);
  background: var(--surface); color: var(--brand-crimson);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgb(40 20 10 / 0.08);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.cart-btn:hover { transform: translateY(-2px); border-color: var(--brand-gold); background: var(--brand-gold-pale); box-shadow: 0 12px 30px rgb(40 20 10 / 0.14); }
.cart-btn svg, .cart-btn i { width: clamp(18px, 2vw, 24px); height: clamp(18px, 2vw, 24px); color: var(--brand-crimson); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: clamp(17px, 1.6vw, 22px); height: clamp(17px, 1.6vw, 22px);
  padding-inline: 5px; border-radius: var(--radius-pill);
  background: var(--brand-crimson); color: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: clamp(0.58rem, 0.7vw, 0.78rem); font-weight: 800; line-height: 1;
  border: 2px solid var(--surface);
  box-shadow: 0 4px 12px rgb(122 15 31 / 0.28);
}

/* ---- Hamburger (hidden by default; shown on mobile) ---- */
.hamburger {
  width: clamp(38px, 3.5vw, 48px); height: clamp(38px, 3.5vw, 48px); min-width: clamp(38px, 3.5vw, 48px);
  display: none; align-items: center; justify-content: center; flex-direction: column;
  gap: clamp(4px, 0.45vw, 6px);
  border: 1px solid rgb(82 8 20 / 0.18); border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-crimson), var(--brand-crimson-dark));
  cursor: pointer; box-shadow: 0 12px 30px rgb(82 8 20 / 0.22);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.hamburger:hover { transform: translateY(-2px) scale(1.04); }
.hamburger span { width: clamp(16px, 1.5vw, 22px); height: 2px; border-radius: 999px; background: var(--surface); display: block; }


/* ============================================================================
   7. SECONDARY NAV BAR  (desktop links + mega menu + drop menu)
   ============================================================================ */
.nav-links-bar {
  width: 100%;
  border-top: 1px solid var(--border-light);
  background: rgba(255,255,255,0.97);
  position: relative;
  z-index: 10;
}
@supports (backdrop-filter: blur(1px)) { .nav-links-bar { backdrop-filter: blur(10px) saturate(140%); } }
.nav-links-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 4rem);
  height: var(--nav-bar-height);
  display: flex; align-items: center; gap: clamp(0px, 0.3vw, 6px);
}

.nl-item, .nav-menu-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px clamp(10px, 1.1vw, 18px);
  font-family: var(--font-body);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500; color: var(--text-secondary);
  cursor: pointer; white-space: nowrap;
  border: 0; border-bottom: 2px solid transparent; background: transparent;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  height: var(--nav-bar-height);
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.nl-item:hover, .nav-menu-btn:hover, .nav-menu-btn[aria-expanded="true"] {
  color: var(--espresso); background: rgb(26 24 20 / 0.03); border-bottom-color: var(--border);
}
.nl-item.active-link { color: var(--espresso); font-weight: 700; border-bottom-color: var(--brand-gold); }
.sale-link { color: var(--danger); font-weight: 700; }
.sale-link:hover { color: var(--danger); border-bottom-color: var(--danger); background: var(--danger-pale); }
.nl-icon { font-size: 1rem; }
.new-tag, .nav-badge {
  font-size: 8px; background: var(--brand-gold); color: var(--espresso);
  padding: 2px 5px; border-radius: var(--radius-xs); font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.4;
}
.nav-badge { background: var(--danger); color: #fff; }
.nav-menu-btn .ti-chevron-down { font-size: 0.75rem; transition: transform var(--t-fast); }
.nav-menu-btn[aria-expanded="true"] .ti-chevron-down { transform: rotate(180deg); }

.nav-item { position: relative; }
/* invisible hover bridge so dropdown doesn't flicker */
.nav-item::after { content: ""; position: absolute; left: -12px; right: -12px; top: 100%; height: 18px; z-index: 99; }

/* ---- Mega menu ---- */
.mega-menu {
  position: absolute; top: calc(100% - 2px);
  left: clamp(-20px, -2vw, -40px);
  width: min(1120px, calc(100vw - 32px)); max-width: calc(100vw - 32px);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: clamp(16px, 2vw, 28px);
  display: grid;
  grid-template-columns: minmax(180px,1fr) minmax(180px,1fr) minmax(180px,1fr) minmax(260px,0.95fr);
  gap: clamp(12px, 1.5vw, 22px);
  z-index: var(--z-dropdown);
  box-shadow: var(--shadow-xl);
  box-sizing: border-box;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out), visibility var(--t-fast);
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu, .mega-menu:hover, .mega-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.mega-col-title { font-size: clamp(9px,0.7vw,10.5px); letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 800; margin-bottom: clamp(8px,1vw,14px); padding-left: 4px; }
.mega-item {
  display: flex; gap: clamp(8px,1vw,12px); padding: clamp(7px,0.8vw,11px);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), transform var(--t-fast) var(--ease-bounce);
}
.mega-item:hover { background: var(--cream-warm); transform: translateX(3px); }
.mega-icon {
  width: clamp(30px,2.8vw,38px); height: clamp(30px,2.8vw,38px);
  border-radius: var(--radius-xs); background: var(--cream-warm);
  display: grid; place-items: center; color: var(--brand-gold-deep);
  flex-shrink: 0; font-size: clamp(0.9rem,1.1vw,1.2rem);
  transition: background var(--t-fast), color var(--t-fast);
}
.mega-item:hover .mega-icon { background: var(--brand-gold-pale); color: var(--brand-crimson); }
.mega-item strong { display: block; font-size: clamp(11.5px,0.9vw,13px); font-weight: 600; color: var(--text-primary); line-height: 1.3; }
.mega-item small { display: block; font-size: clamp(9.5px,0.72vw,11px); color: var(--text-muted); margin-top: 2px; }
.mega-promo {
  border-radius: var(--radius-lg); padding: clamp(14px,1.6vw,20px); min-width: 260px;
  background: linear-gradient(150deg, var(--espresso), var(--espresso-mid));
  color: var(--surface); display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(10px,1.2vw,16px); position: relative; overflow: hidden;
}
.mega-promo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgb(196 162 101 / 0.18), transparent 60%); pointer-events: none; }
.mega-promo-badge { display: inline-flex; gap: 5px; align-items: center; color: var(--brand-gold-light); font-size: clamp(10px,0.76vw,11.5px); font-weight: 700; position: relative; }
.mega-promo-title { font-family: var(--font-display); font-size: clamp(18px,1.8vw,28px); line-height: 1.1; font-weight: 700; position: relative; }
.mega-promo-sub { font-size: clamp(10.5px,0.78vw,12px); color: rgb(255 255 255 / 0.72); line-height: 1.5; position: relative; }
.mega-promo-btn {
  background: var(--brand-gold); color: var(--espresso); border: 0; border-radius: var(--radius-pill);
  padding: clamp(8px,0.9vw,11px) clamp(12px,1.2vw,16px); font-family: var(--font-body);
  font-size: clamp(11px,0.82vw,13px); font-weight: 800; cursor: pointer; position: relative;
  transition: background var(--t-fast), transform var(--t-fast) var(--ease-bounce);
}
.mega-promo-btn:hover { background: var(--brand-gold-light); transform: translateY(-1px); }
.mega-promo-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 6px; position: relative; }
.mega-promo-stats div { border: 1px solid rgb(255 255 255 / 0.12); border-radius: var(--radius-sm); padding: clamp(5px,0.7vw,9px); text-align: center; background: rgb(255 255 255 / 0.04); min-width: 0; }
.mega-promo-stats strong { display: block; color: var(--brand-gold); font-size: clamp(12px,1vw,15px); font-weight: 800; white-space: nowrap; }
.mega-promo-stats span { font-size: clamp(8px,0.62vw,9.5px); color: rgb(255 255 255 / 0.58); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }

/* ---- Drop menu (collections) ---- */
.drop-menu {
  position: absolute; top: calc(100% - 2px); left: 0;
  width: clamp(210px,18vw,260px);
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl); padding: 8px;
  z-index: var(--z-dropdown);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.nav-item:hover .drop-menu, .nav-item:focus-within .drop-menu, .drop-menu:hover, .drop-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.drop-section-title { font-size: clamp(9px,0.68vw,10.5px); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); font-weight: 800; padding: 8px 12px 6px; }
.drop-item { display: block; padding: clamp(8px,0.9vw,11px) clamp(10px,1vw,14px); border-radius: var(--radius-sm); transition: background var(--t-fast), transform var(--t-fast); }
.drop-item:hover { background: var(--cream-warm); transform: translateX(2px); }
.drop-item span { display: block; font-size: clamp(12px,0.9vw,13.5px); font-weight: 600; color: var(--text-primary); }
.drop-item small { display: block; color: var(--text-muted); font-size: clamp(10px,0.72vw,11px); margin-top: 2px; }

@media (max-width: 1180px) {
  .mega-menu { width: min(980px, calc(100vw - 24px)); grid-template-columns: minmax(160px,1fr) minmax(160px,1fr) minmax(160px,1fr) minmax(230px,0.9fr); }
}


/* ============================================================================
   8. MOBILE DRAWER + OVERLAY + BOTTOM TAB BAR
   ============================================================================ */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgb(26 24 20 / 0.48); z-index: calc(var(--z-overlay) - 1);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); cursor: pointer;
}
.drawer-overlay.is-open { display: block; animation: overlayIn 0.28s var(--ease-out) both; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.mobile-drawer {
  position: fixed; top: 0; left: 0;
  width: var(--drawer-width); height: 100dvh;
  background: var(--surface); z-index: var(--z-overlay);
  overflow-y: auto; overscroll-behavior: contain; scrollbar-width: none;
  display: flex; flex-direction: column;
  box-shadow: 6px 0 40px rgb(26 24 20 / 0.18);
  transform: translateX(-110%); visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.32,0,0.08,1), visibility 0.32s;
}
.mobile-drawer::-webkit-scrollbar { display: none; }
.mobile-drawer.is-open { transform: translateX(0); visibility: visible; }

.drawer-close {
  position: absolute; top: clamp(12px,2vw,18px); right: clamp(12px,2vw,18px);
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  background: var(--cream-warm); color: var(--text-primary);
  font-size: 1.3rem; cursor: pointer; display: grid; place-items: center; line-height: 1;
  transition: background var(--t-fast), transform var(--t-fast) var(--ease-bounce);
}
.drawer-close:hover { background: var(--brand-crimson); color: var(--surface); border-color: var(--brand-crimson); transform: rotate(90deg); }

.drawer-brand { padding: clamp(20px,4vw,28px) clamp(18px,4vw,24px); padding-right: 56px; border-bottom: 1px solid var(--border-light); }
.drawer-brand .logo-wrap { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; }
.drawer-brand .brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--brand-crimson); display: block; line-height: 1.2; }
.drawer-brand .brand-sub { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; display: block; }

.drawer-nav { flex: 1; padding: clamp(8px,2vw,14px) 0; overflow-y: auto; }
.drawer-link {
  display: flex; align-items: center; gap: 10px;
  padding: clamp(11px,2vw,14px) clamp(18px,4vw,26px);
  font-size: clamp(13.5px,3.5vw,15px); font-weight: 500; color: var(--text-primary);
  border-left: 3px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), padding-left var(--t-fast);
}
.drawer-link:hover, .drawer-link.active { background: var(--brand-gold-pale); color: var(--brand-crimson); border-left-color: var(--brand-gold); padding-left: clamp(22px,5vw,32px); }

.drawer-acc-head {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: clamp(11px,2vw,14px) clamp(18px,4vw,26px);
  font-family: var(--font-body); font-size: clamp(13.5px,3.5vw,15px); font-weight: 500;
  color: var(--text-primary); background: transparent; border: 0; cursor: pointer;
  border-left: 3px solid transparent; text-align: left;
  /* guard against inherited rotation/vertical text that flips the label */
  writing-mode: horizontal-tb; text-orientation: mixed; transform: none; appearance: none;
  position: relative; z-index: 1;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.drawer-acc-head:hover { background: rgb(26 24 20 / 0.03); color: var(--espresso); }
.drawer-acc-head.is-open { color: var(--brand-crimson); background: var(--brand-gold-pale); border-left-color: var(--brand-gold); }
/* The chevron — never let it transform the whole button, only itself */
.drawer-acc-head > span,
.drawer-acc-head .drawer-acc-chevron {
  display: inline-block; font-size: 0.9rem; color: var(--text-muted);
  flex-shrink: 0; transition: transform var(--t-fast); transform-origin: center;
}
.drawer-acc-head.is-open > span,
.drawer-acc-head.is-open .drawer-acc-chevron { transform: rotate(90deg); color: var(--brand-crimson); }

.drawer-sub {
  max-height: 0; overflow: hidden; position: relative;
  background: var(--brand-crimson-pearl);
  border-left: 3px solid var(--brand-gold);
  transition: max-height 0.35s var(--ease-out);
}
.drawer-sub.is-open { max-height: 600px; }
.drawer-sub a {
  display: block; padding: clamp(10px,1.8vw,13px) clamp(26px,6vw,40px);
  font-size: clamp(13px,3vw,14.5px); color: var(--ink-soft); font-weight: 500;
  writing-mode: horizontal-tb;
  border-bottom: 1px solid rgba(82,8,20,0.06);
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}
.drawer-sub a:last-child { border-bottom: 0; }
.drawer-sub a:hover { background: var(--brand-gold-pale); color: var(--brand-crimson); padding-left: clamp(30px,7vw,46px); }

.drawer-footer { padding: clamp(14px,3vw,20px) clamp(18px,4vw,24px); border-top: 1px solid var(--border-light); }
.drawer-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: clamp(11px,2.2vw,14px);
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: var(--surface); border: 0; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: clamp(13px,3.2vw,15px); font-weight: 700;
  cursor: pointer; box-shadow: 0 6px 20px rgb(37 211 102 / 0.3);
  transition: transform var(--t-fast) var(--ease-bounce), box-shadow var(--t-fast);
}
.drawer-wa-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgb(37 211 102 / 0.38); }
.drawer-wa-btn i { font-size: 1.15rem; }

/* ---- Bottom tab bar ---- */
.bottom-tab-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--tab-bar-height); background: var(--surface);
  border-top: 1px solid var(--border-light); z-index: var(--z-header);
  box-shadow: 0 -4px 20px rgb(26 24 20 / 0.08);
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .bottom-tab-bar { padding-bottom: env(safe-area-inset-bottom); height: calc(var(--tab-bar-height) + env(safe-area-inset-bottom)); }
}
.tab-inner { display: grid; grid-template-columns: repeat(5, 1fr); height: var(--tab-bar-height); max-width: 640px; margin-inline: auto; }
.tab-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  background: transparent; border: 0; cursor: pointer; color: var(--text-muted);
  font-family: var(--font-body); font-size: clamp(9px,2.2vw,11px); font-weight: 500;
  padding: 0 4px; position: relative;
  transition: color var(--t-fast), transform var(--t-fast) var(--ease-bounce);
}
.tab-item i { font-size: clamp(1.2rem,5vw,1.45rem); line-height: 1; }
.tab-item:hover { color: var(--espresso); }
.tab-item.active { color: var(--brand-crimson); }
.tab-item.active::after { content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--brand-crimson); }
.tab-center-pill {
  width: clamp(44px,11vw,52px); height: clamp(44px,11vw,52px); border-radius: 50%;
  background: linear-gradient(160deg, var(--brand-crimson), var(--brand-crimson-dark));
  color: var(--surface); display: grid; place-items: center;
  box-shadow: 0 6px 18px rgb(82 8 20 / 0.3); margin-top: -6px;
  transition: transform var(--t-fast) var(--ease-bounce), box-shadow var(--t-fast);
}
.tab-item:has(.tab-center-pill):hover .tab-center-pill, .tab-item:has(.tab-center-pill).active .tab-center-pill { transform: scale(1.08); box-shadow: 0 10px 24px rgb(82 8 20 / 0.38); }
.tab-item:has(.tab-center-pill) { color: var(--text-secondary); }
.tab-item:has(.tab-center-pill)::after { display: none; }
body.has-tab-bar { padding-bottom: var(--tab-bar-height); }
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  body.has-tab-bar { padding-bottom: calc(var(--tab-bar-height) + env(safe-area-inset-bottom)); }
}


/* ============================================================================
   9. GOOGLE TRANSLATE UI SUPPRESSION
   ============================================================================ */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate { display: none !important; height: 0 !important; visibility: hidden !important; }
body { top: 0 !important; }
body.translated-ltr, body.translated-rtl { top: 0 !important; position: static !important; margin-top: 0 !important; }
.goog-te-ftab-float, .goog-te-ftab-float *, .goog-te-ftab { display: none !important; visibility: hidden !important; }
#goog-gt-tt, #goog-gt-tt * { display: none !important; visibility: hidden !important; }
.goog-te-menu-frame, .goog-te-spinner-pos, .goog-te-spinner-animation { display: none !important; }
.translated-ltr font, .translated-rtl font { font-family: inherit !important; }
.translated-ltr body, .translated-rtl body { font-family: 'Noto Sans Devanagari', 'Mangal', var(--font-body) !important; line-height: 1.7 !important; }


/* ============================================================================
   10. TOAST
   ============================================================================ */
.toast, #gdh-toast {
  position: fixed !important; left: 50% !important; bottom: 24px !important; top: auto !important;
  transform: translateX(-50%) translateY(120px) !important; z-index: 999999 !important;
  display: flex !important; align-items: center; gap: 10px;
  min-width: 280px; max-width: min(92vw, 420px);
  padding: 14px 18px; border-radius: var(--radius-pill);
  background: rgba(30,24,18,0.92); color: #fff;
  font-size: var(--fs-small); font-weight: 500;
  box-shadow: 0 18px 45px rgba(0,0,0,.25); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; pointer-events: none; transition: all .35s ease;
}
.toast.show, #gdh-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) !important; }
.toast-icon { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-gold); color: #fff; font-weight: 700; }
.toast-msg { line-height: 1.4; }
.toast[data-type="warning"], #gdh-toast[data-type="warning"] { background: rgba(92,54,8,.95); }
.toast[data-type="success"], #gdh-toast[data-type="success"] { background: rgba(24,75,45,.95); }
.toast[data-type="error"], #gdh-toast[data-type="error"] { background: rgba(105,20,32,.95); }
@media (max-width: 480px) { .toast, #gdh-toast { bottom: 18px !important; width: calc(100vw - 28px); border-radius: 18px; } }


/* ============================================================================
   11. HERO  (parallax image · floating product card · CTAs)
   ============================================================================ */
.gdh-hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--section-px);
  overflow: hidden;
}
/* Parallax wrapper no longer absolutely fills a fixed box — it holds the
   image at its natural ratio so the hero height follows the full image. */
.gdh-hero-parallax { position: relative; z-index: 0; width: 100%; }
/* object-fit: contain + auto height = ENTIRE original image, never cropped,
   with no letterbox bands because the box matches the image shape. */
.gdh-hero-img { width: 100%; height: auto; display: block; object-fit: contain; }

/* Hero content overlays the image. Badge sits near the TOP, the action
   buttons sit vertically CENTERED over the image. Works whether your HTML
   wraps them in .gdh-hero-content OR places them directly in .gdh-hero. */
.gdh-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: clamp(1rem, 4vw, 3.5rem);
  pointer-events: none;
}
.gdh-hero-content > * { pointer-events: auto; }
.gdh-hero-content > .gdh-hero-badge {
  position: absolute; top: clamp(1rem, 4vw, 3.5rem); left: clamp(1rem, 4vw, 3.5rem);
  margin-bottom: 0;
}
/* Fallback: no wrapper — badge top-left, buttons centered. */
.gdh-hero > .gdh-hero-badge {
  position: absolute; z-index: 2;
  top: clamp(1rem, 4vw, 3.5rem); left: clamp(1rem, 4vw, 3.5rem);
  margin-bottom: 0;
}
.gdh-hero > .gdh-hero-actions {
  position: absolute; z-index: 2;
  top: 50%; left: clamp(1rem, 4vw, 3.5rem);
  transform: translateY(-50%);
}

.gdh-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
   background: linear-gradient(105deg, rgb(26 8 14 / 0.55) 0%, rgb(26 8 14 / 0.22) 45%, transparent 75%);
}
.gdh-hero-badge {
  position: relative; z-index: 2; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: var(--space-md);
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.06em;
  color: var(--brand-crimson); text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.gdh-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 0 rgb(37 211 102 / 0.5); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgb(37 211 102 / 0.5); } 70% { box-shadow: 0 0 0 8px rgb(37 211 102 / 0); } 100% { box-shadow: 0 0 0 0 rgb(37 211 102 / 0); } }

.gdh-hero-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.gdh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(12px,1.4vw,16px) clamp(20px,2.4vw,32px);
  border-radius: var(--radius-pill); font-family: var(--font-body);
  font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer; border: 0;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.gdh-btn-primary { background: var(--brand-crimson); color: #fff; box-shadow: 0 10px 30px rgb(82 8 20 / 0.3); }
.gdh-btn-primary:hover { background: var(--brand-crimson-dark); transform: translateY(-2px); box-shadow: 0 16px 38px rgb(82 8 20 / 0.4); }
.gdh-btn-secondary { background: rgba(255,255,255,0.92); color: var(--espresso); box-shadow: var(--shadow-md); }
.gdh-btn-secondary:hover { background: #fff; transform: translateY(-2px); }
.gdh-btn-wa { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 30px rgb(37 211 102 / 0.3); }
.gdh-btn-wa:hover { background: var(--whatsapp-deep); transform: translateY(-2px); }

/* Floating product card — FIXED: used undefined --hh / --gold / --text / --font-serif */
.hero-product-card {
  position: absolute; top: var(--hero-card-top); right: 6%; z-index: 5;
  width: clamp(200px, 20vw, 240px);
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,162,101,0.38), inset 0 1px 0 rgba(255,255,255,0.7);
  animation: heroCardFloat 5s ease-in-out infinite;
  transition: box-shadow 0.3s, transform 0.22s ease;
  cursor: pointer;
}
@keyframes heroCardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-product-card:hover { animation-play-state: paused; box-shadow: 0 38px 80px rgba(0,0,0,0.58), 0 0 0 1.5px rgba(196,162,101,0.6); }
.hpc-progress { height: 2.5px; background: rgba(196,162,101,0.18); position: relative; overflow: hidden; }
.hpc-progress-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light)); transition: width linear; }
.hpc-top-row { position: absolute; top: 12px; left: 0; right: 0; padding: 0 11px; z-index: 3; display: flex; align-items: center; justify-content: space-between; }
.hpc-badge { background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold)); color: var(--espresso); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 10px; box-shadow: 0 2px 8px rgba(196,162,101,0.4); font-family: var(--font-body); }
.hpc-dots { display: flex; gap: 4px; }
.hpc-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
.hpc-dot.active { background: var(--brand-gold); transform: scale(1.3); }
.hpc-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-warm); }
.hpc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.hero-product-card:hover .hpc-img-wrap img { transform: scale(1.06); }
.hpc-info { padding: 12px 14px 10px; }
.hpc-cat { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand-gold-deep); margin-bottom: 3px; font-weight: 600; font-family: var(--font-body); }
.hpc-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; line-height: 1.2; }
.hpc-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.hpc-price { font-size: 13px; font-weight: 700; color: var(--text-primary); font-family: var(--font-body); }
.hpc-rating { font-size: 9px; color: var(--brand-gold-deep); font-family: var(--font-body); }
.hpc-btn { width: 100%; padding: 10px; background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold)); color: var(--espresso); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: none; cursor: pointer; font-family: var(--font-body); transition: all 0.22s; }
.hpc-btn:hover { background: var(--espresso); color: var(--brand-gold-light); }

/* Hide floating card on small screens where it overlaps text */
@media (max-width: 900px) { .hero-product-card { display: none; } }


/* ============================================================================
   12. AUTHENTICITY VIDEO SECTION
   ============================================================================ */
.auth-video-section { max-width: min(1180px, calc(100% - 24px)); margin: var(--space-xl) auto; }
.auth-video-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center;
  gap: clamp(22px, 4vw, 56px); padding: clamp(20px, 3vw, 42px);
  border-radius: clamp(26px, 4vw, 52px);
  background: radial-gradient(circle at 15% 12%, rgba(196,162,101,0.18), transparent 35%),
              linear-gradient(135deg, #fffaf2 0%, #f7efe2 55%, #f1eadf 100%);
  border: 1px solid rgba(82,8,20,0.08);
  box-shadow: 0 24px 60px rgba(54,34,20,0.09);
}
.auth-video-wrap {
  position: relative; overflow: hidden; width: 100%; max-width: 330px;
  aspect-ratio: 4/4.6; justify-self: center;
  border-radius: clamp(22px,3vw,34px); background: #efe3d1;
  box-shadow: 0 20px 46px rgba(54,34,20,0.14), 0 0 0 6px rgba(255,255,255,0.45);
}
.auth-video { width: 100%; height: 100%; object-fit: cover; }
.auth-video-badge { position: absolute; left: 14px; bottom: 14px; padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 800; color: var(--brand-crimson); background: rgba(255,255,255,0.82); backdrop-filter: blur(12px); }
.auth-content { position: relative; z-index: 2; }
.auth-eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; font-size: var(--fs-eyebrow); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-gold-deep); }
.auth-content h2 { max-width: 620px; margin: 0 0 16px; font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.0; letter-spacing: -0.03em; font-weight: 700; color: #2c1b13; }
.auth-content p { max-width: 560px; margin: 0; font-size: var(--fs-body); line-height: 1.7; text-align: justify; color: #6f5e52; }
.auth-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px,1.4vw,16px); margin-top: var(--space-lg); }
.auth-points div { padding: clamp(14px,1.8vw,20px); border-radius: clamp(18px,2vw,24px); background: rgba(255,255,255,0.68); border: 1px solid rgba(82,8,20,0.07); text-align: center; box-shadow: 0 12px 24px rgba(54,34,20,0.05); }
.auth-points strong { display: block; margin-bottom: 5px; font-size: clamp(22px,2.2vw,38px); line-height: 1; font-weight: 800; color: var(--brand-crimson); font-family: var(--font-display); }
.auth-points span { display: block; font-size: clamp(11px,1vw,13px); font-weight: 700; line-height: 1.35; color: #6f5e52; }
@media (max-width: 768px) {
  .auth-video-card { grid-template-columns: 1fr; gap: 18px; padding: 16px 14px; }
  .auth-video-wrap { max-width: 100%; aspect-ratio: 16/9; }
  .auth-content { text-align: center; }
  .auth-eyebrow { justify-content: center; }
  .auth-content p { text-align: justify; text-align-last: center; }
}


/* ============================================================================
   13. GALLERY  (sidebar tabs + 3x2 panel grid)
   ============================================================================ */
.gallery-section {
  --gal-gap: clamp(2px, 0.35vw, 6px);
  --gal-sidebar-w: clamp(5rem, 7vw, 7.5rem);
  --gal-tab-img: clamp(2.4rem, 3.8vw, 3.4rem);
  --gal-item-h: clamp(13rem, 21vw, 19rem);
  --gal-body-h: min(calc((var(--gal-item-h) * 2) + var(--gal-gap)), 88vh);
  background: var(--cream);
  padding-block: var(--section-py);
}
.gal-body { display: flex; height: var(--gal-body-h); width: 100%; }

.gal-sidebar {
  width: var(--gal-sidebar-w); flex: 0 0 var(--gal-sidebar-w); height: 100%;
  background: var(--cream-deep); border-right: 1px solid rgba(184,151,90,0.14);
  position: relative; z-index: 10; overflow-y: auto; overflow-x: hidden;
  overscroll-behavior: contain; scrollbar-width: none;
  mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
}
.gal-sidebar::-webkit-scrollbar { display: none; }
.gal-sidebar-inner { display: flex; flex-direction: column; align-items: center; gap: clamp(0.15rem,0.32vw,0.32rem); padding-block: clamp(0.6rem,1.2vw,0.9rem) clamp(2.5rem,5vw,3rem); padding-inline: clamp(0.25rem,0.5vw,0.45rem); }

.gal-tab {
  width: calc(var(--gal-sidebar-w) - clamp(0.5rem,0.8vw,0.9rem));
  min-height: clamp(5rem,7vw,6.5rem); padding: clamp(0.4rem,0.75vw,0.65rem) clamp(0.2rem,0.45vw,0.4rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(0.3rem,0.6vw,0.5rem);
  cursor: pointer; border-radius: clamp(0.5rem,0.85vw,0.75rem); border: 1px solid transparent;
  position: relative; flex-shrink: 0; background: transparent;
  transition: background 0.22s var(--ease-out), border-color 0.22s, transform 0.22s var(--ease-bounce), box-shadow 0.22s;
}
.gal-tab:hover { background: rgba(196,162,101,0.09); border-color: rgba(196,162,101,0.28); transform: translateY(-2px); }
.gal-tab.active { background: rgba(196,162,101,0.15); border-color: var(--brand-gold); box-shadow: 0 4px 16px rgba(196,162,101,0.18); }
.gal-tab.active::before { content: ''; position: absolute; left: calc(-1 * clamp(0.25rem,0.4vw,0.3rem)); top: 50%; transform: translateY(-50%); width: clamp(0.18rem,0.28vw,0.24rem); height: clamp(1.4rem,2.4vw,1.9rem); background: var(--brand-gold); border-radius: 0 999px 999px 0; }
.gal-tab-img-wrap { width: var(--gal-tab-img); aspect-ratio: 1/1; border-radius: clamp(0.4rem,0.7vw,0.6rem); overflow: hidden; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); transition: border-color 0.28s, box-shadow 0.28s; }
.gal-tab-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) brightness(0.7); transition: filter 0.35s, transform 0.45s; }
.gal-tab:hover .gal-tab-img-wrap, .gal-tab.active .gal-tab-img-wrap { border-color: rgba(196,162,101,0.65); box-shadow: 0 4px 14px rgba(196,162,101,0.2); }
.gal-tab:hover .gal-tab-img-wrap img, .gal-tab.active .gal-tab-img-wrap img { filter: grayscale(0%) brightness(1.05); transform: scale(1.08); }
.gal-tab-label { width: min(100%,5rem); font-size: clamp(0.45rem,0.6vw,0.6rem); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 800; color: var(--text-secondary); text-align: center; line-height: 1.25; overflow-wrap: anywhere; transition: color 0.22s; }
.gal-tab:hover .gal-tab-label { color: var(--text-primary); }
.gal-tab.active .gal-tab-label { color: var(--brand-gold-deep); font-weight: 900; }
.gal-scroll-hint { display: none; }

.gal-panels { flex: 1 1 auto; min-width: 0; height: 100%; position: relative; overflow: hidden; background: var(--cream-warm); }
.gal-panel { display: none; width: 100%; height: 100%; }
.gal-panel.active { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); grid-template-rows: repeat(2, minmax(0,1fr)); gap: var(--gal-gap); height: 100%; animation: panelIn 0.38s var(--ease-out) both; }
@keyframes panelIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

.g-item { position: relative; overflow: hidden; cursor: pointer; background: #e8dfd4; isolation: isolate; perspective: 800px; }
.g-item-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.55s var(--ease-bounce); }
.g-item:hover .g-item-inner { transform: rotateX(4deg) rotateY(-4deg) scale(1.03); }
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s, filter 0.5s; }
.g-item:hover img { transform: scale(1.06); filter: brightness(1.08) saturate(1.18); }
.g-ov { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse at 50% 110%, rgba(26,18,8,0.72) 0%, rgba(26,18,8,0.28) 50%, transparent 75%); opacity: 0; transition: opacity 0.38s; display: flex; flex-direction: column; justify-content: flex-end; pointer-events: none; }
.g-ov::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(196,162,101,0.65), transparent); transform: scaleX(0); transition: transform 0.45s 0.08s; }
.g-item:hover .g-ov { opacity: 1; pointer-events: auto; }
.g-item:hover .g-ov::before { transform: scaleX(1); }
.g-ov-info { padding: clamp(0.8rem,1.5vw,1.2rem) clamp(0.85rem,1.6vw,1.3rem) 0; transform: translateY(6px); transition: transform 0.35s; }
.g-item:hover .g-ov-info { transform: translateY(0); }
.g-ov-info small { display: block; margin-bottom: clamp(0.2rem,0.4vw,0.38rem); font-size: clamp(0.48rem,0.63vw,0.6rem); letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-gold); font-weight: 700; opacity: 0; transform: translateY(4px); transition: opacity 0.32s 0.06s, transform 0.32s 0.06s; }
.g-item:hover .g-ov-info small { opacity: 1; transform: translateY(0); }
.g-ov-info strong { font-family: var(--font-display); font-size: clamp(1.05rem,1.9vw,1.65rem); font-weight: 600; display: block; color: #fff; line-height: 1.15; opacity: 0; transform: translateY(6px); transition: opacity 0.35s 0.1s, transform 0.35s 0.1s; }
.g-item:hover .g-ov-info strong { opacity: 1; transform: translateY(0); }
.g-ov-actions { display: flex; flex-direction: column; align-items: stretch; margin-top: clamp(0.6rem,1vw,0.85rem); }
.g-btn-shop { width: 100%; min-height: clamp(2.4rem,3.8vw,3rem); padding: clamp(0.65rem,1vw,0.85rem) clamp(0.75rem,1.3vw,1.1rem); font-family: var(--font-body); font-size: clamp(0.52rem,0.7vw,0.68rem); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.38); opacity: 0; transform: translateY(8px); transition: background 0.22s, border-color 0.22s, color 0.22s, opacity 0.32s 0.14s, transform 0.32s 0.14s; backdrop-filter: blur(8px); }
.g-item:hover .g-btn-shop { opacity: 1; transform: translateY(0); }
.g-btn-shop:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: var(--espresso); }
.g-quick-view { width: 100%; padding-block: clamp(0.45rem,0.8vw,0.65rem); font-family: var(--font-body); font-size: clamp(0.42rem,0.56vw,0.54rem); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.52); text-align: center; cursor: pointer; border: 0; background: transparent; opacity: 0; transform: translateY(6px); transition: opacity 0.28s 0.2s, transform 0.28s 0.2s, color 0.18s; }
.g-item:hover .g-quick-view { opacity: 1; transform: translateY(0); }
.g-quick-view:hover { color: rgba(255,255,255,0.9); }

/* Gallery mobile: vertical stack */
@media (max-width: 768px) {
  .gallery-section { --gal-item-h: clamp(14rem, 60vw, 18rem); }
  .gal-body { flex-direction: column; height: auto; }
  .gal-sidebar { width: 100%; height: auto; flex: 0 0 auto; border-right: 0; border-bottom: 1px solid rgba(184,151,90,0.14); overflow-x: auto; overflow-y: hidden; mask-image: linear-gradient(to right, black 0%, black 80%, transparent 100%); -webkit-mask-image: linear-gradient(to right, black 0%, black 80%, transparent 100%); }
  .gal-sidebar-inner { width: max-content; min-width: 100%; flex-direction: row; justify-content: flex-start; align-items: stretch; padding: 0.65rem 0.75rem; gap: 0.55rem; }
  .gal-tab { width: clamp(4.5rem,20vw,6rem); min-height: clamp(5rem,22vw,6rem); flex-shrink: 0; }
  .gal-tab.active::before { left: 50%; top: auto; bottom: -0.3rem; transform: translateX(-50%); width: clamp(1.6rem,3.5vw,2rem); height: 0.18rem; border-radius: 999px 999px 0 0; }
  .gal-panels { height: auto; overflow: visible; }
  .gal-panel.active { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .g-item { height: var(--gal-item-h); }
  .g-ov, .g-ov-info small, .g-ov-info strong, .g-btn-shop, .g-quick-view { opacity: 1; transform: none; }
  .g-item-inner { transition: none; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .gal-body { flex-direction: row; height: var(--gal-body-h); }
  .gallery-section { --gal-body-h: min(calc((var(--gal-item-h) * 3) + (var(--gal-gap) * 2)), 90vh); }
  .gal-sidebar { width: var(--gal-sidebar-w); height: 100%; flex: 0 0 var(--gal-sidebar-w); border-right: 1px solid rgba(184,151,90,0.14); border-bottom: 0; overflow-x: hidden; overflow-y: auto; mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%); }
  .gal-sidebar-inner { width: 100%; flex-direction: column; }
  .gal-panels { height: 100%; overflow: hidden; }
  .gal-panel.active { grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: repeat(3, minmax(0,1fr)); height: 100%; }
  .g-item { height: auto; }
}
@media (hover: none) {
  .g-ov { opacity: 1; }
  .g-ov-info small, .g-ov-info strong, .g-btn-shop { opacity: 1; transform: none; }
  .g-quick-view { opacity: 0.65; transform: none; }
  .g-item-inner, .g-item:hover .g-item-inner { transform: none; }
  .g-item:hover img { transform: none; filter: none; }
}


/* ============================================================================
   14. HERO CATEGORY STRIP  (infinite scroll)
   ============================================================================ */
.hero-browse-label { margin: var(--space-lg) auto 12px; font-size: var(--fs-eyebrow); font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; color: rgba(82,8,20,0.72); }
.hero-cat-strip-outer { width: min(100%, 920px); margin: 0 auto; overflow: hidden; position: relative; padding: 8px 0 2px; mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.hero-cat-track { display: flex; align-items: center; gap: clamp(10px,1.5vw,18px); width: max-content; animation: heroCatScroll 34s linear infinite; }
@keyframes heroCatScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hcat-card { flex: 0 0 auto; width: clamp(100px,10vw,150px); padding: 9px; display: flex; flex-direction: column; align-items: center; gap: 8px; border: 1px solid rgba(82,8,20,0.08); border-radius: clamp(16px,1.8vw,22px); background: rgba(255,255,255,0.62); backdrop-filter: blur(14px); box-shadow: 0 14px 34px rgba(54,34,20,0.08); cursor: pointer; transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s; }
.hcat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.9); border-color: rgba(82,8,20,0.18); box-shadow: 0 20px 44px rgba(54,34,20,0.13); }
.hcat-img-wrap { width: 100%; aspect-ratio: 1.45/1; overflow: hidden; border-radius: clamp(12px,1.4vw,18px); background: #efe3d1; }
.hcat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hcat-card:hover .hcat-img-wrap img { transform: scale(1.08); }
.hcat-label { max-width: 100%; font-size: clamp(10px,0.9vw,12px); font-weight: 900; line-height: 1.2; text-align: center; color: #4b3024; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 480px) { .hero-cat-track { gap: 8px; animation-duration: 28s; } .hcat-card { width: 92px; padding: 7px; } }
@media (prefers-reduced-motion: reduce) { .hero-cat-track { animation: none; } }


/* ============================================================================
   15. PRODUCTS SECTION  (4-col grid → 2-col mobile)
   ============================================================================ */
.products-section { background: var(--cream); padding-block: var(--section-py); padding-inline: var(--section-px); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 32px);
  max-width: var(--container); margin-inline: auto;
  align-items: stretch;
}
.prod-card {
  background: var(--surface); border-radius: 14px; overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out);
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgb(26 24 20 / 0.11); }
.prod-img-wrap, .prod-img { position: relative; overflow: hidden; background: var(--cream-warm); aspect-ratio: 4/3; max-height: clamp(200px, 22vw, 280px); flex-shrink: 0; }
.prod-img-wrap img, .prod-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s var(--ease-out); }
.prod-card:hover .prod-img-wrap img, .prod-card:hover .prod-img img { transform: scale(1.05); }

.prod-badge {
  position: absolute; top: clamp(8px,1vw,12px); left: clamp(8px,1vw,12px); z-index: 3;
  display: inline-flex; align-items: center; height: clamp(27px,2.8vw,28px); padding: 0 clamp(9px,1vw,14px);
  font-family: var(--font-body); font-size: clamp(0.78rem,0.58vw,0.98rem); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  border-radius: 999px; background: var(--brand-gold); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.prod-badge.new-in { background: var(--brand-crimson); color: #fff; }
.prod-badge.featured { background: var(--espresso); color: var(--brand-gold); }
.disc-ribbon {
  position: absolute; top: clamp(8px,1vw,12px); right: clamp(8px,1vw,12px); z-index: 3;
  display: inline-flex; align-items: center; height: clamp(22px,2.2vw,28px); padding: 0 clamp(9px,1vw,14px);
  font-family: var(--font-body); font-size: clamp(0.78rem,0.58vw,0.98rem); font-weight: 800;
  white-space: nowrap; border-radius: 999px; background: var(--danger); color: #fff; box-shadow: 0 2px 8px rgba(192,57,43,0.35);
}
.prod-actions { position: absolute; top: clamp(8px,1vw,12px); right: clamp(8px,1vw,12px); display: flex; flex-direction: column; gap: 6px; z-index: 4; opacity: 0; transform: translateX(8px); transition: opacity 0.28s, transform 0.28s; }
.prod-card[data-has-ribbon] .prod-actions { top: clamp(40px,4.5vw,50px); }
.prod-card:hover .prod-actions { opacity: 1; transform: translateX(0); }
@media (hover: none) { .prod-actions { opacity: 1; transform: none; } }
.pa-btn { width: clamp(30px,2.6vw,36px); height: clamp(30px,2.6vw,36px); border-radius: 50%; background: var(--surface); border: 1px solid rgba(26,24,20,0.08); display: grid; place-items: center; cursor: pointer; font-size: clamp(0.85rem,1vw,1rem); color: var(--text-secondary); box-shadow: 0 2px 8px rgba(26,24,20,0.1); transition: background 0.18s, color 0.18s, transform 0.18s; }
.pa-btn:hover, .pa-btn.wished { background: var(--brand-crimson); color: #fff; transform: scale(1.12); border-color: var(--brand-crimson); }

.prod-body { padding: clamp(12px,1.4vw,18px) clamp(14px,1.6vw,20px) clamp(14px,1.8vw,20px); display: flex; flex-direction: column; flex: 1; }
.prod-cat { font-size: clamp(0.52rem,0.62vw,0.62rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-gold-deep); font-weight: 700; margin-bottom: clamp(4px,0.5vw,6px); }
.prod-name { font-family: var(--font-display); font-size: clamp(1rem,1.3vw,1.3rem); font-weight: 600; color: var(--text-primary); margin: 0 0 clamp(6px,0.7vw,10px); line-height: 1.3; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-rating { display: flex; align-items: center; gap: 5px; margin-bottom: clamp(4px,0.5vw,7px); }
.prod-stars { color: var(--brand-gold); font-size: clamp(0.7rem,0.85vw,0.85rem); letter-spacing: 1px; }
.prod-reviews { font-size: clamp(0.55rem,0.65vw,0.65rem); color: var(--text-muted); }
.prod-price { display: flex; align-items: baseline; gap: clamp(6px,0.8vw,10px); margin-bottom: clamp(10px,1.2vw,14px); flex-wrap: wrap; }
.price-now { font-size: clamp(0.98rem,1.1vw,1.15rem); font-weight: 700; color: var(--text-primary); }
.price-was { font-size: clamp(0.78rem,0.88vw,0.9rem); font-weight: 400; color: var(--text-muted); text-decoration: line-through; }

.prod-btn-row { display: flex; gap: clamp(6px,0.8vw,10px); margin-top: auto; padding-top: clamp(4px,0.6vw,8px); }
.prod-cart-btn { flex: 1; min-height: clamp(36px,3.2vw,44px); padding: clamp(8px,0.9vw,11px) clamp(10px,1.1vw,15px); background: var(--brand-crimson); color: #fff; font-family: var(--font-body); font-size: clamp(0.54rem,0.62vw,0.66rem); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; border: 0; cursor: pointer; border-radius: 10px; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.prod-cart-btn:hover { background: var(--brand-crimson-dark); transform: translateY(-1px); }
.prod-cart-btn:active { transform: scale(0.97); }
.prod-wa-btn { display: inline-flex; align-items: center; justify-content: center; gap: clamp(4px,0.5vw,6px); min-height: clamp(36px,3.2vw,44px); padding: clamp(8px,0.9vw,11px) clamp(10px,1.1vw,15px); background: var(--whatsapp); color: #fff; font-family: var(--font-body); font-size: clamp(0.54rem,0.62vw,0.66rem); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; border: 0; cursor: pointer; border-radius: 10px; white-space: nowrap; flex-shrink: 0; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.prod-wa-btn:hover { background: var(--whatsapp-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,0.3); }
.prod-wa-btn svg { width: clamp(13px,1.1vw,16px); height: clamp(13px,1.1vw,16px); flex-shrink: 0; }

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .prod-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(8px,3vw,14px); }
  .prod-img-wrap, .prod-img { aspect-ratio: 4/5; max-height: clamp(160px,48vw,210px); }
  .prod-body { padding: 10px 11px 12px; }
  .prod-btn-row { flex-direction: column; gap: 5px; }
  .prod-cart-btn, .prod-wa-btn { width: 100%; min-height: 36px; }
  .wa-label { display: none; }
  .prod-actions { opacity: 1; transform: none; top: 7px; right: 7px; }
  .pa-btn { width: 28px; height: 28px; }
}

/* ============================================================================
   16. FLASH SALE  (dark crimson gradient + countdown)
   ============================================================================ */
.flash-sale-section {
  background: linear-gradient(135deg, #120206 0%, #3d0810 20%, #6e1428 42%, #9e2a45 60%, #c45870 78%, #e8a8b8 92%, #fdf0f4 100%);
  padding-block: var(--section-py); padding-inline: var(--section-px);
  position: relative; overflow: hidden;
}
.flash-sale-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(196,162,101,0.08), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(196,162,101,0.06), transparent 50%); pointer-events: none; }
.flash-sale-inner { max-width: var(--container); margin-inline: auto; position: relative; z-index: 1; }
.flash-sale-hd { display: flex; align-items: center; justify-content: space-between; gap: clamp(1rem,3vw,3rem); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.flash-sale-titles { display: flex; flex-direction: column; gap: clamp(0.4rem,0.8vw,0.65rem); flex: 1 1 auto; min-width: 0; }
.flash-sale-label { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-gold); }
.flash-sale-label .flash-icon { font-size: clamp(0.9rem,1vw,1.1rem); animation: flashPulse 1.2s ease-in-out infinite; }
@keyframes flashPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }
.flash-sale-title { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700; color: #fff; margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
.flash-sale-sub { font-family: var(--font-body); font-size: var(--fs-small); color: rgba(255,255,255,0.62); margin: 0; line-height: 1.5; }
.flash-sale-badge { display: inline-flex; align-items: center; height: clamp(24px,2.4vw,30px); padding: 0 clamp(10px,1.1vw,16px); background: var(--brand-gold); color: var(--espresso); font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 999px; white-space: nowrap; margin-top: 0.25rem; width: fit-content; }

.flash-countdown { display: flex; align-items: center; gap: clamp(4px,0.8vw,10px); flex-shrink: 0; }
.fs-count-unit { display: flex; flex-direction: column; align-items: center; gap: clamp(3px,0.4vw,5px); }
.fs-count-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(196,162,101,0.28); border-radius: var(--radius-sm); width: clamp(48px,6vw,76px); height: clamp(48px,6vw,76px); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.fs-count-num { font-family: var(--font-body); font-size: clamp(1.1rem,2.5vw,2rem); font-weight: 800; color: var(--brand-gold); line-height: 1; font-variant-numeric: tabular-nums; transition: transform 0.15s ease, opacity 0.15s ease; }
.fs-count-num.flip { transform: translateY(-4px); opacity: 0.4; }
.fs-count-label { font-family: var(--font-body); font-size: clamp(0.46rem,0.56vw,0.56rem); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.fs-count-sep { font-family: var(--font-body); font-size: clamp(1.2rem,2vw,1.8rem); font-weight: 700; color: rgba(196,162,101,0.55); align-self: flex-start; margin-top: clamp(10px,1.2vw,18px); animation: colonBlink 1s step-start infinite; }
@keyframes colonBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.fs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px,2vw,32px); }
.fs-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; backdrop-filter: blur(6px); transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s; }
.fs-card:hover { transform: translateY(-5px); border-color: rgba(196,162,101,0.42); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.fs-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; max-height: clamp(200px,20vw,280px); flex-shrink: 0; background: rgba(255,255,255,0.04); }
.fs-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.fs-card:hover .fs-card-img img { transform: scale(1.05); }
.fs-card-badge { position: absolute; top: clamp(8px,1vw,12px); left: clamp(8px,1vw,12px); z-index: 3; display: inline-flex; align-items: center; height: clamp(22px,2.2vw,28px); padding: 0 clamp(9px,1vw,14px); background: var(--brand-gold); color: var(--espresso); font-family: var(--font-body); font-size: clamp(0.48rem,0.56vw,0.56rem); font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; white-space: nowrap; }
.fs-card-ribbon { position: absolute; top: clamp(8px,1vw,12px); right: clamp(8px,1vw,12px); z-index: 3; display: inline-flex; align-items: center; height: clamp(22px,2.2vw,28px); padding: 0 clamp(9px,1vw,14px); background: var(--danger); color: #fff; font-family: var(--font-body); font-size: clamp(0.48rem,0.56vw,0.56rem); font-weight: 800; border-radius: 999px; white-space: nowrap; }
.fs-card-body { padding: clamp(12px,1.4vw,18px) clamp(14px,1.6vw,20px) clamp(14px,1.8vw,20px); display: flex; flex-direction: column; flex: 1; }
.fs-card-cat { font-family: var(--font-body); font-size: clamp(0.5rem,0.6vw,0.6rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-gold); font-weight: 700; margin-bottom: clamp(3px,0.4vw,5px); }
.fs-card-name { font-family: var(--font-display); font-size: clamp(1rem,1.1vw,1.2rem); font-weight: 600; color: rgba(255,255,255,0.95); margin: 0 0 clamp(6px,0.7vw,10px); line-height: 1.3; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fs-card-price { display: flex; align-items: baseline; gap: clamp(6px,0.8vw,10px); margin-bottom: clamp(10px,1.2vw,14px); flex-wrap: wrap; }
.fs-card-price .price-now { color: #fff; }
.fs-card-price .price-was { color: rgba(255,255,255,0.38); }
.fs-card-rating { color: var(--brand-gold-light); font-size: clamp(0.7rem,0.85vw,0.85rem); }
.fs-card-btns { display: flex; gap: clamp(6px,0.8vw,10px); margin-top: auto; }
.fs-cart-btn { flex: 1; min-height: clamp(36px,3.2vw,44px); padding: clamp(8px,0.9vw,11px) clamp(10px,1.1vw,15px); background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.28); font-family: var(--font-body); font-size: clamp(0.52rem,0.6vw,0.64rem); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: var(--radius-sm); white-space: nowrap; transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-bounce); }
.fs-cart-btn:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: var(--espresso); transform: translateY(-1px); }
.fs-wa-btn { display: inline-flex; align-items: center; justify-content: center; gap: clamp(3px,0.4vw,5px); min-height: clamp(36px,3.2vw,44px); padding: clamp(8px,0.9vw,11px) clamp(10px,1.1vw,15px); background: var(--whatsapp); color: #fff; font-family: var(--font-body); font-size: clamp(0.52rem,0.6vw,0.64rem); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; border: 0; cursor: pointer; border-radius: var(--radius-sm); white-space: nowrap; flex-shrink: 0; transition: background 0.2s, transform 0.2s var(--ease-bounce); }
.fs-wa-btn:hover { background: var(--whatsapp-deep); transform: translateY(-1px); }
.fs-wa-btn svg { width: clamp(12px,1vw,15px); height: clamp(12px,1vw,15px); flex-shrink: 0; }

@media (max-width: 900px) {
  .fs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .flash-sale-hd { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .fs-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(8px,3vw,14px); }
  .fs-card-img { aspect-ratio: 4/5; max-height: clamp(150px,46vw,200px); }
  .fs-card-body { padding: 10px 11px 12px; }
  .fs-card-btns { flex-direction: column; gap: 5px; }
  .fs-cart-btn, .fs-wa-btn { min-height: 35px; width: 100%; }
}


/* ============================================================================
   17. SERVICES SECTION  (editorial masonry + modal)
   ============================================================================ */
.services-section { position: relative; padding-block: var(--section-py); padding-inline: var(--section-px); background: var(--cream); overflow: hidden; }
.services-bg-number { position: absolute; top: 60px; right: -20px; font-family: var(--font-display); font-size: clamp(180px,25vw,360px); font-weight: 300; color: transparent; -webkit-text-stroke: 1px rgba(82,8,20,0.06); line-height: 1; pointer-events: none; user-select: none; z-index: 0; }

.services-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
  max-width: 1280px; margin: 0 auto;
}
.service-card:nth-child(1) { grid-column: 1 / 6;  grid-row: 1; }
.service-card:nth-child(2) { grid-column: 6 / 10; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.service-card:nth-child(4) { grid-column: 1 / 5;  grid-row: 2; }
.service-card:nth-child(5) { grid-column: 5 / 9;  grid-row: 2; }
.service-card:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }

.service-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--surface); border: 1px solid rgba(196,162,101,0.12); transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); opacity: 0; transform: translateY(40px); }
.service-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), box-shadow 0.5s, transition-delay 0s; transition-delay: calc(var(--i,0) * 80ms); }
.service-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 32px 80px rgba(82,8,20,0.18); }
.service-img-wrap { position: relative; width: 100%; height: 220px; overflow: hidden; background: var(--cream-warm); }
.service-card:nth-child(1) .service-img-wrap { height: 260px; }
.service-card:nth-child(4) .service-img-wrap { height: 240px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand-crimson), var(--brand-gold), var(--brand-crimson-rose)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out); z-index: 10; }
.service-card:hover::before { transform: scaleX(1); }
.service-badge { position: absolute; top: 14px; left: 14px; z-index: 4; background: rgba(26,8,14,0.72); backdrop-filter: blur(8px); color: var(--brand-gold-light); font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(196,162,101,0.25); }
.service-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,8,14,0.45) 100%); opacity: 0; transition: opacity 0.4s; z-index: 2; }
.service-card:hover .service-img-wrap::after { opacity: 1; }
.service-explore { position: absolute; bottom: 18px; right: 18px; z-index: 5; background: rgba(196,162,101,0.92); color: var(--espresso); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 7px 14px; border-radius: 20px; transform: translateY(8px); opacity: 0; transition: transform 0.35s var(--ease-out), opacity 0.35s; pointer-events: none; }
.service-card:hover .service-explore { transform: translateY(0); opacity: 1; }
.service-body { padding: 22px 22px 26px; position: relative; }
.service-number { position: absolute; top: 18px; right: 20px; font-family: var(--font-display); font-size: 14px; color: rgba(196,162,101,0.4); }
.service-body h3 { font-family: var(--font-display); font-size: clamp(18px,1.8vw,24px); font-weight: 500; color: var(--text-primary); line-height: 1.25; margin-bottom: 10px; transition: color 0.3s; }
.service-card:hover .service-body h3 { color: var(--brand-crimson); }
.service-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 9.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-gold-deep); background: none; border: none; cursor: pointer; transition: gap 0.3s, color 0.3s; }
.service-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .service-link { gap: 12px; color: var(--brand-crimson); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* Custom cursor */
.cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--brand-gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s; mix-blend-mode: multiply; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(196,162,101,0.6); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.4s; }
.cursor-ring.hovering { width: 64px; height: 64px; border-color: var(--brand-crimson-rose); }

/* Service modal */
.service-modal-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(14,11,9,0); backdrop-filter: blur(0px); pointer-events: none; transition: background 0.4s, backdrop-filter 0.4s; }
.service-modal-overlay.open { background: rgba(14,11,9,0.75); backdrop-filter: blur(12px); pointer-events: all; }
.service-modal { position: relative; width: 100%; max-width: 920px; max-height: 90vh; overflow-y: auto; background: var(--surface); border-radius: 20px; border: 1px solid rgba(196,162,101,0.15); display: grid; grid-template-columns: 1fr 1fr; opacity: 0; transform: scale(0.94) translateY(20px); transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); box-shadow: 0 60px 120px rgba(26,8,14,0.45); }
.service-modal-overlay.open .service-modal { opacity: 1; transform: scale(1) translateY(0); }
.modal-img-side { position: relative; min-height: 400px; overflow: hidden; }
.modal-img-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s linear; }
.service-modal-overlay.open .modal-img-side img { transform: scale(1.06); }
.modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,8,14,0.55) 0%, transparent 60%); }
.modal-img-category { position: absolute; bottom: 24px; left: 24px; font-family: var(--font-display); font-size: 32px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.1; text-shadow: 0 2px 20px rgba(26,8,14,0.5); }
.modal-content-side { padding: clamp(28px,3vw,48px) clamp(24px,3vw,40px); display: flex; flex-direction: column; justify-content: space-between; background: var(--surface); }
.modal-close { position: absolute; top: 20px; right: 20px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; background: rgba(26,8,14,0.08); border: 1px solid rgba(26,8,14,0.1); color: var(--text-primary); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.modal-close:hover { background: var(--brand-crimson); color: #fff; transform: rotate(90deg); }
.modal-label { font-size: 9px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--brand-gold-deep); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.modal-label::before { content: ''; width: 24px; height: 1px; background: var(--brand-gold); }
.modal-title { font-family: var(--font-display); font-size: clamp(26px,3vw,38px); font-weight: 500; color: var(--text-primary); line-height: 1.15; margin-bottom: 18px; }
.modal-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 28px; }
.modal-features { margin-bottom: 32px; }
.modal-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--espresso-mid); line-height: 1.6; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.modal-features li:last-child { border-bottom: none; }
.modal-features li::before { content: ''; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--brand-gold); margin-top: 7px; }
.modal-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.modal-btn-primary { flex: 1; min-width: 140px; background: linear-gradient(135deg, var(--brand-crimson-xdk), var(--brand-crimson) 50%, var(--brand-crimson-mid)); color: #fff; border: none; border-radius: 8px; padding: 14px 24px; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: transform 0.3s var(--ease-out), box-shadow 0.3s; }
.modal-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(82,8,20,0.35); }
.modal-btn-secondary { flex: 1; min-width: 120px; background: transparent; color: var(--text-primary); border: 1.5px solid rgba(0,0,0,0.12); border-radius: 8px; padding: 14px 24px; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: border-color 0.3s, color 0.3s, transform 0.3s; }
.modal-btn-secondary:hover { border-color: var(--brand-gold); color: var(--brand-gold-deep); transform: translateY(-2px); }

@media (max-width: 768px) {
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; grid-row: auto; }
  .service-card:nth-child(6) { grid-column: 1 / 3; grid-row: auto; }
  .service-img-wrap, .service-card:nth-child(1) .service-img-wrap, .service-card:nth-child(4) .service-img-wrap { height: 200px; }
  .service-modal { grid-template-columns: 1fr; }
  .modal-img-side { min-height: 220px; }
  .cursor-dot, .cursor-ring, .services-bg-number { display: none; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(1), .service-card:nth-child(6) { grid-column: 1; }
}


/* ============================================================
   OUR WORK — Complete Redesign
   Replace Section 18 in your main style.css with this block
   Prefix: gw- (Gaurishankar Work)
   Mobile-first, premium furniture aesthetic
   ============================================================ */

/* ── SECTION WRAPPER ── */
.gw-section {
  background: #FAF6F0;
  padding: 56px 0 72px;
  overflow: hidden;
  position: relative;
}
.gw-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-crimson, #6B1420) 0%, var(--brand-gold-deep, #A97C2A) 100%);
}
.gw-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── SECTION HEADER ── */
.gw-header {
  text-align: center;
  margin-bottom: 44px;
}
.gw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-gold-deep, #A97C2A);
  margin-bottom: 14px;
}
.gw-eyebrow::before,
.gw-eyebrow::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--brand-gold-deep, #A97C2A);
  border-radius: 2px;
}
.gw-header h2 {
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: clamp(1.75rem, 5.5vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink, #1C0F08);
  letter-spacing: -0.01em;
}
.gw-header p {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #6B5B4E;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── STATS BAR ── */
.gw-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.gw-stat {
  background: #FFF;
  border: 1px solid #EDE3D4;
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(30,15,5,0.04);
}
.gw-stat-num {
  display: block;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--brand-crimson, #6B1420);
  line-height: 1;
  margin-bottom: 4px;
}
.gw-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #7A6B5E;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── BLOCK TITLES ── */
.gw-block {
  margin-bottom: 52px;
}
.gw-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 10px;
}
.gw-block-head h3 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  color: var(--ink, #1C0F08);
  margin: 0;
  letter-spacing: -0.01em;
}
.gw-view-all {
  background: none;
  border: none;
  color: var(--brand-crimson, #6B1420);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── PROJECT FILTERS ── */
.gw-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.gw-filters::-webkit-scrollbar { display: none; }
.gw-filter-btn {
  flex: 0 0 auto;
  border: 1.5px solid #DDD3C1;
  background: #FFF;
  color: #5A4535;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.gw-filter-btn:hover {
  border-color: var(--brand-crimson, #6B1420);
  color: var(--brand-crimson, #6B1420);
}
.gw-filter-btn.is-active {
  background: var(--brand-crimson, #6B1420);
  color: #FFF;
  border-color: var(--brand-crimson, #6B1420);
}

/* ── PROJECT GRID (2-col mobile first) ── */
.gw-proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gw-proj-card {
  background: #FFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(30,15,5,0.07);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  border: 1px solid transparent;
}
.gw-proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(30,15,5,0.13);
  border-color: rgba(169,124,42,0.2);
}
.gw-proj-card:active { transform: translateY(-2px); }
.gw-proj-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EDE3D4;
}
.gw-proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gw-proj-card:hover .gw-proj-img-wrap img { transform: scale(1.07); }
.gw-proj-type-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: rgba(107,20,32,0.9);
  color: #FFF;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.gw-proj-body {
  padding: 10px 10px 12px;
}
.gw-proj-loc {
  font-size: 9px;
  font-weight: 700;
  color: var(--brand-gold-deep, #A97C2A);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.gw-proj-title {
  font-size: clamp(0.72rem, 2.4vw, 0.9rem);
  font-weight: 700;
  color: var(--ink, #1C0F08);
  line-height: 1.3;
  margin: 0 0 6px;
}
.gw-proj-desc {
  font-size: 10px;
  color: #7A6B5E;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.gw-proj-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gw-proj-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-crimson, #6B1420);
  color: #FFF;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  pointer-events: none; /* parent card handles click */
}
.gw-proj-card:hover .gw-proj-open-btn { opacity: 0.9; }
.gw-proj-arrow {
  font-size: 11px;
  color: var(--brand-gold-deep, #A97C2A);
  font-weight: 700;
}



/* ── DELIVERY SECTION ── */
.gw-delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.gw-delivery-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFF;
  border: 1px solid #EDE3D4;
  border-radius: 14px;
  padding: 14px 16px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.gw-delivery-card:hover {
  box-shadow: 0 6px 24px rgba(30,15,5,0.07);
  transform: translateY(-2px);
}
.gw-delivery-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: var(--brand-crimson, #6B1420);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gw-delivery-icon svg { width: 20px; height: 20px; }
.gw-delivery-text h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--ink, #1C0F08);
}
.gw-delivery-text p {
  font-size: 11px;
  color: #7A6B5E;
  margin: 0;
  line-height: 1.45;
}

/* ── TEAM GRID (2-col mobile) ── */
.gw-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gw-team-card {
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,15,5,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-align: center;
  border: 1px solid transparent;
}
.gw-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(30,15,5,0.12);
  border-color: rgba(169,124,42,0.15);
}
.gw-team-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.gw-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gw-team-card:hover .gw-team-img img { transform: scale(1.07); }
.gw-team-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,8,3,0.38) 100%);
}
.gw-team-body {
  padding: 12px 10px 14px;
}
.gw-team-role-pill {
  display: inline-block;
  background: rgba(169,124,42,0.12);
  color: var(--brand-gold-deep, #A97C2A);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 7px;
}
.gw-team-name {
  font-size: clamp(0.72rem, 2.4vw, 0.9rem);
  font-weight: 700;
  color: var(--ink, #1C0F08);
  margin: 0 0 5px;
  line-height: 1.2;
}
.gw-team-desc {
  font-size: 10px;
  color: #7A6B5E;
  line-height: 1.5;
}

/* ── CTA ── */
.gw-cta {
  background: var(--brand-crimson, #6B1420);
  border-radius: 20px;
  padding: 32px 22px;
  color: #FFF;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.gw-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.gw-cta::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(169,124,42,0.1);
  pointer-events: none;
}
.gw-cta-inner { position: relative; z-index: 1; }
.gw-cta-tag {
  display: inline-block;
  background: rgba(169,124,42,0.25);
  color: var(--brand-gold-deep, #A97C2A);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(169,124,42,0.35);
}
.gw-cta h3 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  margin: 0 0 10px;
  line-height: 1.15;
}
.gw-cta p {
  font-size: clamp(0.82rem, 2.5vw, 0.95rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 22px;
}
.gw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  color: var(--brand-crimson, #6B1420);
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.gw-cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.26);
}
.gw-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.gw-cta-wa-note {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ── PROJECT MODAL ── */
.gw-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,4,2,0.76);
  z-index: 99990;
  display: none;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
}
.gw-modal-backdrop.is-open {
  display: grid;
}
.gw-modal-box {
  background: #FFF;
  border-radius: 20px;
  width: min(820px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  position: relative;
  animation: gwModalIn 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes gwModalIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.gw-modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}
.gw-modal-body {
  padding: 22px 20px 28px;
}
.gw-modal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.gw-modal-type-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-crimson, #6B1420);
  background: rgba(107,20,32,0.08);
  padding: 3px 9px;
  border-radius: 999px;
}
.gw-modal-loc {
  font-size: 10px;
  color: var(--brand-gold-deep, #A97C2A);
  font-weight: 700;
}
.gw-modal-title {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.2rem, 4vw, 1.65rem);
  margin: 0 0 12px;
  color: var(--ink, #1C0F08);
  line-height: 1.2;
}
.gw-modal-desc {
  font-size: 13px;
  color: #6B5B4E;
  line-height: 1.7;
  margin-bottom: 18px;
}
.gw-modal-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gw-modal-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4A3728;
  line-height: 1.4;
}
.gw-modal-points li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(169,124,42,0.14);
  color: var(--brand-gold-deep, #A97C2A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 1px;
}
.gw-modal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #FFF;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.gw-modal-wa-btn:hover { opacity: 0.9; transform: scale(1.03); }
.gw-modal-close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(20,8,3,0.1);
  color: var(--ink, #1C0F08);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  flex-shrink: 0;
}
.gw-modal-close:hover { background: rgba(20,8,3,0.18); }

/* ── VIDEO ELEMENT (when active) ── */


/* ── TABLET (600px+) ── */
@media (min-width: 600px) {
  .gw-proj-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gw-stats { grid-template-columns: repeat(4, 1fr); }
  .gw-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gw-delivery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── DESKTOP (1024px+) ── */
@media (min-width: 1024px) {
  .gw-section { padding: 80px 0 96px; }
  .gw-wrap { padding: 0 28px; }
  .gw-proj-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .gw-proj-body { padding: 14px 16px 18px; }
  .gw-proj-desc { -webkit-line-clamp: 3; }
  .gw-proj-loc { font-size: 10px; }
  .gw-proj-title { font-size: 0.95rem; }

 

  /* Delivery: full-width 3-col (now its own block below video) */
  .gw-delivery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Team: 4-col */
  .gw-team-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  /* CTA: split */
  .gw-cta {
    text-align: left;
    padding: 44px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .gw-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }
  .gw-cta-left { flex: 1; }
  .gw-cta p { margin: 0; }
  .gw-cta-right { flex-shrink: 0; text-align: center; }
  .gw-cta-tag { margin-bottom: 16px; }

  /* Modal: side-by-side */
  .gw-modal-box {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    max-height: 86vh;
  }
  .gw-modal-img {
    aspect-ratio: auto;
    height: 100%;
    border-radius: 20px 0 0 20px;
    object-position: center;
    min-height: 360px;
  }
  .gw-modal-body { overflow-y: auto; }
  .gw-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    float: none;
    margin: 0;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  }
}

/* ── WIDE DESKTOP (1280px+) ── */
@media (min-width: 1280px) {
  .gw-proj-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ============================================================
   VIDEO WALL — lightweight poster cards that link out to
   YouTube / TikTok / Facebook. No <video>, no autoplay.
   Replaces every old .gw-video* / .gw-vid* rule.
   ============================================================ */
.gw-vid-hint{
  font-size:11px;font-weight:700;color:var(--brand-gold-deep,#A97C2A);
  letter-spacing:.04em;white-space:nowrap;
}

/* Track: edge-to-edge snap-scroll on mobile */
.gw-vwall{
  display:flex;gap:14px;overflow-x:auto;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:4px 16px 14px;margin:0 -16px;scroll-padding-left:16px;
}
.gw-vwall::-webkit-scrollbar{display:none;}

/* Card */
.gw-vcard{
  flex:0 0 80%;max-width:340px;scroll-snap-align:start;
  display:block;text-decoration:none;border-radius:16px;overflow:hidden;
  background:#1C0F08;box-shadow:0 6px 24px rgba(20,8,3,.16);
  -webkit-tap-highlight-color:transparent;position:relative;
  transition:transform .26s ease, box-shadow .26s ease;
}
.gw-vcard:hover{box-shadow:0 14px 40px rgba(20,8,3,.26);}
.gw-vcard:active{transform:scale(.985);}
.gw-vcard-media{position:relative;aspect-ratio:16/9;overflow:hidden;}
.gw-vcard-media img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .55s ease;
}
.gw-vcard:hover img{transform:scale(1.06);}
.gw-vcard-grad{
  position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(20,8,3,0) 38%,rgba(20,8,3,.82) 100%);
}

/* Platform badge */
.gw-vcard-badge{
  position:absolute;top:10px;left:10px;z-index:2;
  display:inline-flex;align-items:center;gap:5px;
  padding:4px 9px;border-radius:999px;color:#fff;
  font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
}
.gw-vcard-badge svg{width:11px;height:11px;}
.gw-pf-youtube {background:rgba(255,0,0,.92);}
.gw-pf-tiktok  {background:rgba(0,0,0,.85);}
.gw-pf-facebook{background:rgba(24,119,242,.92);}

/* Duration */
.gw-vcard-dur{
  position:absolute;top:10px;right:10px;z-index:2;color:#fff;
  background:rgba(20,8,3,.6);backdrop-filter:blur(6px);
  font-size:10px;font-weight:700;padding:3px 8px;border-radius:999px;letter-spacing:.04em;
}

/* Play button */
.gw-vcard-play{
  position:absolute;top:50%;left:50%;z-index:2;transform:translate(-50%,-50%);
  width:54px;height:54px;border-radius:50%;background:rgba(169,124,42,.92);
  display:flex;align-items:center;justify-content:center;color:#fff;
  box-shadow:0 4px 18px rgba(0,0,0,.3);
  transition:transform .25s ease, background .25s ease;
}
.gw-vcard-play::before{
  content:'';position:absolute;inset:-8px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.45);
}
.gw-vcard:hover .gw-vcard-play{transform:translate(-50%,-50%) scale(1.1);background:var(--brand-gold-deep,#A97C2A);}
.gw-vcard-play svg{width:20px;height:20px;margin-left:2px;}

/* Caption */
.gw-vcard-cap{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:12px 14px 13px;}
.gw-vcard-cap h4{
  margin:0 0 2px;color:#fff;font-size:13px;font-weight:700;line-height:1.3;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.gw-vcard-cap p{
  margin:0;color:rgba(255,255,255,.7);
  font-size:10px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
}

@media(min-width:600px){ .gw-vcard{flex-basis:46%;} }

@media(min-width:1024px){
  .gw-vwall{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;overflow:visible;margin:0;padding:4px 0 0;}
  .gw-vcard{flex:none;max-width:none;}
}
/* ── Custom scrollbar for the video wall ── */
.gw-vscroll{
  display:flex;align-items:center;gap:10px;
  margin:8px 16px 0;
}
@media(min-width:1024px){ .gw-vscroll{display:none;} } /* desktop = grid, no scroll */
.gw-vscroll-btn{
  flex:0 0 auto;width:30px;height:30px;border-radius:50%;
  border:1.5px solid #DDD3C1;background:#fff;color:var(--brand-crimson,#6B1420);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;line-height:1;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:background .2s,border-color .2s,opacity .2s;
}
.gw-vscroll-btn:hover{border-color:var(--brand-crimson,#6B1420);background:#faf2f2;}
.gw-vscroll-btn:disabled{opacity:.35;cursor:default;}
.gw-vscroll-track{
  position:relative;flex:1;height:6px;border-radius:999px;
  background:rgba(30,15,5,.12);cursor:pointer;
}
.gw-vscroll-thumb{
  position:absolute;top:0;left:0;height:100%;min-width:28px;border-radius:999px;
  background:var(--brand-gold-deep,#A97C2A);cursor:grab;transition:background .2s;
}
.gw-vscroll-thumb:active{cursor:grabbing;background:var(--brand-crimson,#6B1420);}
/* ============================================================================
   19. TESTIMONIALS  (spotlight + cards + CTA)
   ============================================================================ */
.gt-s { position: relative; overflow: hidden; background: radial-gradient(ellipse 80% 50% at 10% 0%, rgba(196,162,101,0.06) 0%, transparent 55%), radial-gradient(ellipse 60% 40% at 92% 90%, rgba(82,8,20,0.05) 0%, transparent 50%), var(--cream); }
.gt-s::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 5%, var(--brand-gold) 40%, var(--brand-crimson) 60%, transparent 95%); opacity: 0.45; }
.gt-w { position: relative; z-index: 2; max-width: 1340px; margin: 0 auto; padding: var(--section-py) var(--section-px); }
.gt-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; margin-bottom: var(--space-xl); }
.gt-head-l { max-width: 600px; }
.gt-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-gold-deep); margin-bottom: 16px; }
.gt-kicker::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.gt-kicker::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-crimson); }
.gt-h1 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 400; line-height: 1.02; color: var(--text-primary); letter-spacing: -0.015em; margin-bottom: 14px; }
.gt-h1 em { font-style: italic; color: var(--brand-crimson); }
.gt-desc { font-size: var(--fs-body); color: var(--text-secondary); line-height: 1.78; font-weight: 300; max-width: 420px; }
.gt-stats { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); align-self: end; min-width: 200px; }
.gt-stat { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--border-light); transition: background 0.18s; }
.gt-stat:last-child { border-bottom: none; }
.gt-stat:hover { background: var(--cream); }
.gt-stat-n { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--brand-crimson); line-height: 1; min-width: 52px; }
.gt-stat-l { font-size: 11px; color: var(--text-secondary); line-height: 1.3; }

.gt-spot { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); background: var(--paper); position: relative; }
.gt-sp-photo { position: relative; overflow: hidden; background: var(--cream-deep); min-height: clamp(300px, 38vw, 520px); }
.gt-sp-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1.4s var(--ease-out); }
.gt-sp-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(28,20,16,0.18) 0%, transparent 55%), linear-gradient(0deg, rgba(28,20,16,0.30) 0%, transparent 44%); z-index: 1; }
.gt-spot:hover .gt-sp-photo img { transform: scale(1.05); }
.gt-ph-badge { position: absolute; top: 18px; left: 18px; z-index: 3; background: rgba(255,252,248,0.88); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.6); color: var(--brand-crimson); font-size: 9.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.gt-ph-author { position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 3; display: flex; align-items: center; gap: 10px; background: rgba(20,14,8,0.68); backdrop-filter: blur(16px); border-radius: var(--radius-sm); padding: 10px 12px; border: 1px solid rgba(255,255,255,0.08); }
.gt-ph-author-txt strong { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.96); line-height: 1.2; }
.gt-ph-author-txt span { font-size: 11px; color: var(--brand-gold-light); opacity: 0.82; }
.gt-ph-check { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-gold); display: grid; place-items: center; flex-shrink: 0; }
.gt-ph-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 2.2; fill: none; }
.gt-sp-q { padding: clamp(28px,3.5vw,50px); display: flex; flex-direction: column; justify-content: center; position: relative; background: var(--paper); }
.gt-sp-q::before { content: '\201C'; position: absolute; top: 20px; right: 30px; font-family: var(--font-display); font-size: 100px; line-height: 1; color: var(--cream-deep); pointer-events: none; font-weight: 300; }
.gt-sp-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--brand-gold); }
.gt-sp-title { font-family: var(--font-display); font-size: clamp(22px,2.6vw,38px); font-weight: 500; line-height: 1.07; color: var(--text-primary); margin-bottom: 14px; max-width: 16ch; }
.gt-sp-msg { font-size: var(--fs-body); color: var(--text-secondary); line-height: 1.82; font-weight: 300; flex: 1; }
.gt-sp-divider { height: 1px; background: var(--border); margin: 20px 0 14px; }
.gt-progress { height: 2px; background: var(--border); border-radius: 1px; overflow: hidden; margin-bottom: 16px; }
.gt-progress-fill { height: 100%; background: linear-gradient(90deg, var(--brand-gold), var(--brand-crimson)); border-radius: 1px; width: 0%; transition: width 0.05s linear; }
.gt-sp-ctrl { display: flex; align-items: center; gap: 8px; }
.gt-dots { display: flex; gap: 5px; flex: 1; }
.gt-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cream-deep); border: none; cursor: pointer; transition: all 0.28s var(--ease-out); }
.gt-dot.on { width: 20px; border-radius: 3px; background: var(--brand-crimson); }
.gt-arr { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: transparent; color: var(--espresso-mid); cursor: pointer; display: grid; place-items: center; font-size: 15px; transition: all 0.2s var(--ease-bounce); flex-shrink: 0; }
.gt-arr:hover { background: var(--brand-crimson); color: #fff; border-color: var(--brand-crimson); transform: scale(1.12); }

.gt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-bottom: 20px; }
.gt-card { position: relative; background: var(--paper); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); transition: transform 0.28s var(--ease-bounce), box-shadow 0.28s; overflow: hidden; }
.gt-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand-gold), var(--brand-crimson)); border-radius: var(--radius-md) var(--radius-md) 0 0; opacity: 0; transition: opacity 0.22s; }
.gt-card:hover::before { opacity: 1; }
.gt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border); }
.gt-c-top { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.gt-c-ava { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: var(--cream-deep); border: 1px solid var(--border-light); }
.gt-c-info { flex: 1; min-width: 0; }
.gt-c-name { font-size: 12.5px; font-weight: 500; color: var(--text-primary); display: block; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gt-c-loc { font-size: 10.5px; color: var(--brand-gold-deep); display: block; margin-bottom: 5px; }
.gt-c-tag { display: inline-block; font-size: 9px; font-weight: 500; color: var(--brand-crimson); background: rgba(82,8,20,0.08); padding: 2px 7px; border-radius: 999px; white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.gt-c-stars { display: flex; gap: 2px; margin-bottom: 7px; color: var(--brand-gold); }
.gt-c-msg { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; font-weight: 300; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.gt-cta { position: relative; background: var(--brand-crimson); border-radius: var(--radius-xl); padding: clamp(26px,3.5vw,44px) clamp(24px,3.5vw,52px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; overflow: hidden; }
.gt-cta::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); top: -80px; right: -80px; }
.gt-cta-h { font-family: var(--font-display); font-size: clamp(22px,2.6vw,36px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.gt-cta-h em { font-style: italic; }
.gt-cta-p { color: rgba(255,255,255,0.62); font-size: 13.5px; font-weight: 300; line-height: 1.6; }
.gt-cta-btn { position: relative; display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--brand-crimson); border: none; padding: 13px 22px; border-radius: 11px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: transform 0.22s var(--ease-bounce), box-shadow 0.22s; box-shadow: 0 6px 22px rgba(0,0,0,0.2); overflow: hidden; }
.gt-cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }
.gt-cta-btn:hover .gt-cta-arr { transform: translateX(4px); }
.gt-cta-arr { transition: transform 0.22s; flex-shrink: 0; }

.gt-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.gt-reveal.on { opacity: 1; transform: translateY(0); }
.gt-d1 { transition-delay: 0.06s; } .gt-d2 { transition-delay: 0.12s; }

@media (max-width: 768px) {
  .gt-head { grid-template-columns: 1fr; gap: 20px; }
  .gt-desc { max-width: 100%; }
  .gt-stats { flex-direction: row; flex-wrap: wrap; min-width: 0; width: 100%; }
  .gt-stat { flex: 1 1 48%; border-right: 1px solid var(--border-light); }
  .gt-spot { grid-template-columns: 1fr; }
  .gt-sp-photo { min-height: 220px; }
  .gt-sp-photo img { position: relative; inset: auto; height: 220px; }
  .gt-grid { grid-template-columns: repeat(2, 1fr); }
  .gt-cta { grid-template-columns: 1fr; text-align: center; }
  .gt-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) { .gt-grid { grid-template-columns: 1fr; } }


/* ============================================================================
   20. FAQ SECTION
   ============================================================================ */
.faq-section { background: var(--cream-warm); position: relative; overflow: hidden; padding: var(--section-py) var(--section-px); }
.faq-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(196,162,101,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(196,162,101,0.06) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 90%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 90%); }
.faq-wrap-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.faq-layout { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(36px, 5vw, 88px); align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left .s-sub { max-width: 320px; margin-top: 18px; }
.faq-stat-row { display: flex; gap: 28px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(26,18,10,0.1); flex-wrap: wrap; }
.faq-stat strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--brand-crimson); line-height: 1; }
.faq-stat span { display: block; font-size: 11px; color: var(--text-secondary); letter-spacing: 0.06em; margin-top: 3px; text-transform: uppercase; }
.faq-cta-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 13px; font-weight: 500; color: var(--brand-crimson); transition: gap 0.25s; cursor: pointer; }
.faq-cta-link:hover { gap: 16px; }
.faq-cta-link svg { transition: transform 0.25s; }
.faq-cta-link:hover svg { transform: translateX(4px); }
.faq-list { display: flex; flex-direction: column; gap: 10px; counter-reset: faq-counter; }
.faq-item { background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color 0.18s, box-shadow 0.18s, transform 0.25s var(--ease-bounce); counter-increment: faq-counter; }
.faq-item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.faq-item.open { border-color: rgba(196,162,101,0.35); box-shadow: 0 8px 32px rgba(196,162,101,0.1); }
.faq-q { width: 100%; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-body); font-size: clamp(14px, 1.05vw, 15.5px); font-weight: 500; color: var(--text-primary); line-height: 1.45; transition: color 0.18s; }
.faq-q::before { content: counter(faq-counter, decimal-leading-zero); font-family: var(--font-display); font-size: 13px; font-weight: 400; color: var(--brand-gold-deep); min-width: 28px; flex-shrink: 0; line-height: 1; }
.faq-q span { flex: 1; }
.faq-icon { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(26,18,10,0.15); background: transparent; display: grid; place-items: center; flex-shrink: 0; font-size: 18px; font-style: normal; color: var(--text-primary); transition: background 0.18s, border-color 0.18s, transform 0.35s var(--ease-bounce), color 0.18s; }
.faq-item.open .faq-icon { background: var(--brand-crimson); border-color: var(--brand-crimson); color: var(--cream); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease-out); }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a-inner { padding: 2px 24px 22px 68px; font-size: clamp(13px, 1vw, 14.5px); color: var(--text-secondary); line-height: 1.82; font-weight: 300; }


/* ============================================================================
   21. CONTACT + FORM SECTION
   ============================================================================ */
.cf-section { background: var(--cream); padding: var(--section-py) var(--section-px); position: relative; }
.cf-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-gold-light), transparent); }
.cf-wrap { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 88px); align-items: start; }
.cf-info .s-sub { max-width: 390px; margin-top: 18px; margin-bottom: 44px; }
.cf-items { display: flex; flex-direction: column; gap: 12px; font-style: normal; }
.cf-item { display: flex; align-items: flex-start; gap: 16px; background: var(--cream-warm); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 18px 20px; transition: border-color 0.18s, box-shadow 0.18s, transform 0.25s var(--ease-bounce); }
.cf-item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateX(5px); }
.cf-item-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-crimson); color: var(--cream); display: grid; place-items: center; flex-shrink: 0; }
.cf-item-icon svg { stroke: var(--cream); }
.cf-item-body { min-width: 0; }
.cf-item-label { font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-gold-deep); display: block; margin-bottom: 4px; }
.cf-item-text { font-size: var(--fs-body); color: var(--ink-soft); line-height: 1.6; }
.cf-item-text a { color: var(--ink-soft); transition: color 0.18s; }
.cf-item-text a:hover { color: var(--brand-crimson); }
.cf-wa-row { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.cf-wa-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--whatsapp); color: #fff; border: none; border-radius: var(--radius-sm); padding: 13px 22px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; cursor: pointer; transition: transform 0.25s var(--ease-bounce), box-shadow 0.18s; box-shadow: 0 6px 20px rgba(37,211,102,0.28); }
.cf-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.35); }
.cf-call-btn { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--brand-crimson); border: 1px solid rgba(82,8,20,0.28); border-radius: var(--radius-sm); padding: 13px 22px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s; }
.cf-call-btn:hover { background: var(--brand-crimson); color: var(--cream); border-color: var(--brand-crimson); }
.cf-form-card { background: var(--cream-warm); border: 1px solid rgba(26,18,10,0.12); border-radius: var(--radius-xl); padding: clamp(28px, 3vw, 48px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cf-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-gold-bright) 40%, var(--brand-crimson) 100%); }
.cf-form-label { display: inline-block; font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-gold-deep); margin-bottom: 8px; }
.cf-form-title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; color: var(--text-primary); margin-bottom: 28px; line-height: 1.1; }
.cf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group + .cf-group, .cf-grid-2 + .cf-group { margin-top: 14px; }
.cf-group label { font-size: 11px; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.07em; text-transform: uppercase; }
.cf-group input, .cf-group select, .cf-group textarea { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 15px; font-family: var(--font-body); font-size: 14.5px; color: var(--text-primary); width: 100%; outline: none; transition: border-color 0.18s, box-shadow 0.18s; appearance: none; -webkit-appearance: none; }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: rgba(122,108,90,0.55); }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(196,162,101,0.28); }
.cf-group textarea { resize: vertical; min-height: 100px; line-height: 1.65; }
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6c5a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.cf-submit { width: 100%; padding: 15px 24px; margin-top: 10px; background: var(--brand-crimson); color: var(--cream); border: none; border-radius: 12px; font-family: var(--font-body); font-size: var(--fs-body); font-weight: 500; letter-spacing: 0.05em; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; overflow: hidden; transition: transform 0.25s var(--ease-bounce), box-shadow 0.18s, background 0.18s; box-shadow: 0 6px 24px rgba(82,8,20,0.28); }
.cf-submit:hover { background: var(--brand-crimson-deep); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(82,8,20,0.34); }
.cf-success { display: none; text-align: center; padding: 40px 24px; font-family: var(--font-display); font-size: 24px; color: var(--brand-crimson); }
.cf-success.show { display: block; }
.cf-form-card.sent #contactForm { display: none; }
.cf-form-card.sent .cf-success { display: block; }


/* ============================================================================
   22. LOCATION + REVIEW SECTION
   ============================================================================ */
.loc-section { background: var(--cream-deep); position: relative; overflow: hidden; padding: var(--section-py) var(--section-px); }
.loc-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(196,162,101,0.08) 0%, transparent 60%), radial-gradient(ellipse 55% 45% at 85% 80%, rgba(82,8,20,0.06) 0%, transparent 55%); }
.loc-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.loc-header { text-align: center; margin-bottom: clamp(44px, 5vw, 72px); }
.loc-header .s-eyebrow { justify-content: center; }
.loc-header .s-h2 { color: var(--text-primary); margin-top: 16px; }
.loc-header .s-h2 em { color: var(--brand-gold-deep); }
.loc-header .s-sub { color: var(--text-secondary); max-width: 460px; margin: 14px auto 0; }
.loc-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.loc-card { background: var(--cream); border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); transition: transform 0.5s var(--ease-out), box-shadow 0.4s; }
.loc-card:hover { transform: translateY(-3px); box-shadow: 0 28px 64px rgba(26,18,10,0.12); }
.loc-card-label { display: flex; align-items: center; gap: 9px; font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); padding: 22px 24px 0; }
.loc-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-secondary); }
.loc-card-dot--gold { background: var(--brand-gold); box-shadow: 0 0 8px rgba(196,162,101,0.6); }
.loc-card--map { display: flex; flex-direction: column; }
.loc-map-iframe-wrap { flex: 1; min-height: 300px; position: relative; }
.loc-map-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: sepia(8%) saturate(92%) contrast(98%); }
.loc-map-footer { padding: 20px 24px 26px; border-top: 1px solid var(--border-light); }
.loc-hours { display: flex; align-items: center; gap: 8px; font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 16px; }
.loc-hours svg { stroke: var(--brand-gold); flex-shrink: 0; }
.loc-map-btns { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.loc-btn-dir, .loc-btn-wa { display: inline-flex; align-items: center; gap: 8px; border: none; border-radius: var(--radius-pill); cursor: pointer; font-family: var(--font-body); font-size: var(--fs-small); font-weight: 500; padding: 10px 18px; transition: transform 0.25s var(--ease-bounce), box-shadow 0.18s; }
.loc-btn-dir { background: var(--brand-gold); color: var(--cream); box-shadow: 0 4px 16px rgba(196,162,101,0.35); }
.loc-btn-dir:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(196,162,101,0.45); }
.loc-btn-wa { background: var(--whatsapp); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.loc-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.4); }
.loc-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.loc-chip { font-size: 11px; color: var(--text-secondary); background: var(--cream-warm); border: 1px solid var(--border-light); border-radius: var(--radius-pill); padding: 5px 12px; white-space: nowrap; transition: background 0.18s, color 0.18s; }
.loc-chip:hover { background: rgba(196,162,101,0.14); color: var(--brand-gold-deep); }
.loc-card--review { display: flex; flex-direction: column; padding: 0 24px 28px; }
.loc-review-title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; color: var(--text-primary); margin: 14px 0 8px; line-height: 1.1; }
.loc-review-sub { font-size: 13px; color: var(--text-secondary); line-height: 1.68; margin-bottom: 22px; font-weight: 300; }
.loc-review-note { display: flex; align-items: flex-start; gap: 7px; font-size: 11.5px; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.55; }
.loc-review-note svg { flex-shrink: 0; stroke: var(--text-secondary); margin-top: 1px; }
.loc-submit-btn { width: 100%; padding: 15px 24px; background: var(--brand-gold); color: var(--cream); border: none; border-radius: 12px; font-family: var(--font-body); font-size: 13.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.18s, transform 0.25s var(--ease-bounce), box-shadow 0.18s; box-shadow: 0 6px 24px rgba(196,162,101,0.35); margin-top: auto; }
.loc-submit-btn:hover { background: var(--brand-gold-bright); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(196,162,101,0.45); }
.loc-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Star rating widget (review) */
.star-sel { display: flex; gap: 10px; margin-bottom: 20px; align-items: center; }
.star-btn { background: transparent; border: none; cursor: pointer; font-size: clamp(30px, 4vw, 38px); color: #d8c7a2; padding: 2px; line-height: 1; transition: transform 0.25s, color 0.25s, text-shadow 0.25s, filter 0.25s; filter: drop-shadow(0 0 2px rgba(255,215,120,.25)); }
.star-btn:hover { color: #f6d36a; transform: scale(1.18); text-shadow: 0 0 10px rgba(255,210,90,.75), 0 0 18px rgba(255,210,90,.45); }
.star-btn.filled { color: var(--brand-gold); text-shadow: 0 0 10px rgba(196,162,101,.85), 0 0 22px rgba(196,162,101,.55); filter: brightness(1.15); }
.star-error { animation: starShake .35s ease 3; }
@keyframes starShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.wr-input, .wr-textarea { width: 100%; background: var(--cream-warm); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 12px 15px; font-family: var(--font-body); font-size: var(--fs-body); color: var(--text-primary); outline: none; transition: border-color 0.18s, box-shadow 0.18s; margin-bottom: 12px; }
.wr-input::placeholder, .wr-textarea::placeholder { color: rgba(122,108,90,0.55); }
.wr-input:focus, .wr-textarea:focus { border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(196,162,101,0.28); }
.wr-textarea { resize: vertical; min-height: 90px; line-height: 1.65; }

/* Responsive for FAQ / contact / location */
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; }
  .faq-a-inner { padding: 2px 18px 18px 50px; }
  .cf-wrap { grid-template-columns: 1fr; gap: 36px; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map-iframe-wrap { min-height: 240px; }
  .loc-card--review { padding: 0 18px 24px; }
}
@media (max-width: 480px) {
  .cf-grid-2 { grid-template-columns: 1fr; }
  .faq-stat-row { gap: 20px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .faq-layout { grid-template-columns: 260px 1fr; gap: 44px; }
}
@media (min-width: 1441px) {
  .faq-layout { grid-template-columns: 440px 1fr; gap: 110px; }
}


/* ============================================================================
   23. GLOBAL ACCESSIBILITY & PRINT
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-contrast: high) {
  body { color: #000; }
  .prod-card, .service-card, .gt-card, .faq-item { border: 2px solid #000; }
}
@media print {
  body::before, .cursor-dot, .cursor-ring, .bottom-tab-bar,
  .hamburger, .nav-wa-pill, .hero-product-card { display: none !important; }
  body { color: #000; background: #fff; }
}


/* ============================================================================
   24. RESPONSIVE VISIBILITY  (single source of truth — no scattered toggles)
   Controls which nav system shows at each width. This is the ONE place that
   decides hamburger vs. desktop nav, so there are no conflicting !important
   overrides fighting each other like in the old file.
   ============================================================================ */

/* Desktop (1025px+): full nav bar, no hamburger, no tab bar */
@media (min-width: 1025px) {
  .nav-links-bar { display: block; }
  .hamburger     { display: none; }
  .bottom-tab-bar { display: none; }
  body.has-tab-bar { padding-bottom: 0; }
}

/* Tablet/mobile (≤1024px): hide desktop nav, show hamburger + tab bar */
@media (max-width: 1024px) {
  .nav-links-bar { display: none; }
  .hamburger     { display: inline-flex; }
  .bottom-tab-bar { display: block; }
}
/* =====================================================
   GAURISHANKAR — PREMIUM FLOATING SOCIAL + FOOTER
===================================================== */

:root {
  --gdh-footer-bg: #12070a;
  --gdh-footer-bg2: #26070f;
  --gdh-footer-card: rgba(255,255,255,0.045);
  --gdh-footer-border: rgba(212,169,106,0.18);
  --gdh-footer-gold: #d4a96a;
  --gdh-footer-gold2: #f0d59a;
  --gdh-footer-text: rgba(255,255,255,0.78);
  --gdh-footer-muted: rgba(255,255,255,0.52);
  --gdh-footer-soft: rgba(255,255,255,0.34);
  --gdh-footer-radius: 24px;
}

/* ================= FLOATING SOCIAL ================= */

.floating-social-container {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(82px, 9vh, 118px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
  z-index: 1001;
}

.floating-social-item {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  isolation: isolate;
}

.social-inner {
  width: clamp(44px, 4vw, 54px);
  height: clamp(44px, 4vw, 54px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition:
    transform 0.28s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.social-inner svg {
  width: clamp(19px, 2vw, 23px);
  height: clamp(19px, 2vw, 23px);
}

.social-inner:hover {
  transform: translateY(-4px) scale(1.06);
  filter: saturate(1.1);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.34),
    0 0 0 6px rgba(212,169,106,0.1);
}

.wa-bg {
  background: linear-gradient(135deg, #25D366, #0f9f4d);
}

.fb-bg {
  background: linear-gradient(135deg, #1877F2, #0b4fb3);
}

.ig-bg {
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 18%, transparent 36%),
    linear-gradient(135deg, #f09433, #d62976 45%, #962fbf 75%, #4f5bd5);
}

.tt-bg {
  background:
    linear-gradient(135deg, rgba(255,0,80,0.85), transparent 42%),
    linear-gradient(315deg, rgba(0,242,234,0.85), transparent 42%),
    #050505;
}

.social-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(18,7,10,0.92);
  color: #fff7ec;
  border: 1px solid var(--gdh-footer-border);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}

.floating-social-item:hover .social-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ================= FOOTER ================= */

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(212,169,106,0.16), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(82,8,20,0.42), transparent 38%),
    linear-gradient(180deg, var(--gdh-footer-bg2), var(--gdh-footer-bg));
  color: var(--gdh-footer-muted);
  padding:
    clamp(64px, 8vw, 104px)
    clamp(18px, 5vw, 72px)
    clamp(28px, 4vw, 42px);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(212,169,106,0.13), transparent);
  height: 1px;
}

.footer::after {
  content: "";
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  right: -220px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(212,169,106,0.08);
  filter: blur(10px);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-col--brand {
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--gdh-footer-radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid var(--gdh-footer-border);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.logo-main {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 0.95;
  color: #fff7ec;
  letter-spacing: -0.035em;
}

.logo-main span {
  color: var(--gdh-footer-gold2);
  font-style: italic;
}

.logo-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gdh-footer-gold);
  font-weight: 800;
}

.f-brand-desc {
  max-width: 430px;
  margin: 18px 0 24px;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.85;
  font-weight: 400;
  color: var(--gdh-footer-text);
}

.f-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.f-social a,
.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  color: #fff2dc;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.f-social a:hover,
.soc-btn:hover {
  transform: translateY(-4px);
  color: #12070a;
  background: linear-gradient(135deg, var(--gdh-footer-gold2), var(--gdh-footer-gold));
  border-color: rgba(212,169,106,0.75);
}

.f-col-title {
  margin: 0 0 20px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  color: #fff7ec;
  letter-spacing: 0.02em;
}

.f-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.f-links li {
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  line-height: 1.55;
  color: var(--gdh-footer-muted);
  font-style: normal;
}

.f-links a {
  color: var(--gdh-footer-muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.f-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gdh-footer-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.f-links a:hover {
  color: var(--gdh-footer-gold2);
  transform: translateX(3px);
}

.f-links a:hover::after {
  transform: scaleX(1);
}

.footer-col--contact {
  font-style: normal;
}

.footer-bot {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bot p {
  margin: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  color: var(--gdh-footer-soft);
  line-height: 1.6;
}

.footer-bot strong {
  color: var(--gdh-footer-gold2);
  font-weight: 800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-col--contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 768px) {
  .floating-social-container {
    right: 12px;
    bottom: 86px;
    gap: 9px;
  }

  .social-inner {
    width: 42px;
    height: 42px;
  }

  .social-inner svg {
    width: 18px;
    height: 18px;
  }

  .social-tooltip {
    display: none;
  }

  .footer {
    padding: 56px 18px 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-col--brand,
  .footer-col--contact {
    grid-column: 1 / -1;
  }

  .footer-col--brand {
    padding: 22px;
  }

  .footer-bot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding-bottom: 8px;
  }

  .f-links {
    gap: 9px;
  }

  .f-social a,
  .soc-btn {
    width: 40px;
    height: 40px;
  }
}
.prod-card,
.prod-card *,
.fs-card,
.fs-card * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.prod-card,
.fs-card {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.prod-img-wrap img,
.fs-card-img img {
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}
/* ═══════════════════════════════════════════════════════════════════
   GAURISHANKAR DECORE HOME — HERO + PRELOADER STYLES
   Upload this file to your server root alongside test3style.css
   and add:  <link rel="stylesheet" href="gdh-hero.css">
   in your <head> AFTER the other stylesheets.
═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --gdh-maroon:   #520814;
  --gdh-maroon-d: #2D0409;
  --gdh-gold:     #C4A265;
  --gdh-gold-l:   #D4B87A;
  --gdh-cream:    #F5EFE6;
  --gdh-ink:      #1C0408;
  --gdh-hair:     rgba(196,162,101,.22);
  --gdh-hair-s:   rgba(196,162,101,.12);
  --gdh-ease:     cubic-bezier(.22,1,.36,1);
  --gdh-hh:       clamp(108px, 11.2vw, 152px); /* overwritten by JS */
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM PRELOADER
══════════════════════════════════════════════════════════════════ */
#gdhPreloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0205;
  overflow: hidden;
  opacity: 1; visibility: visible;
  transition: opacity .75s ease, visibility 0s .75s;
  will-change: opacity;
}
#gdhPreloader.gdh-pl-done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.gdh-pl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: gdhPlFloat 7s ease-in-out infinite;
}
.gdh-pl-blob-a {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(82,8,20,.70) 0%, transparent 68%);
  top: -120px; right: -80px;
}
.gdh-pl-blob-b {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,162,101,.10) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation-delay: -3.5s;
}
@keyframes gdhPlFloat {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.10) translate(14px,-10px); }
}
.gdh-pl-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.gdh-pl-logo-wrap {
  position: relative;
  width: 110px; height: 110px;
}
.gdh-pl-ring-a {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(196,162,101,.08);
}
.gdh-pl-ring-a::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color:  rgba(196,162,101,.80);
  border-right-color: rgba(196,162,101,.30);
  animation: gdhPlCW 2.6s linear infinite;
}
.gdh-pl-ring-b {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(196,162,101,.05);
}
.gdh-pl-ring-b::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(196,162,101,.60);
  border-left-color:   rgba(196,162,101,.18);
  animation: gdhPlCCW 1.9s linear infinite;
}
@keyframes gdhPlCW  { to { transform: rotate(360deg); } }
@keyframes gdhPlCCW { to { transform: rotate(-360deg); } }
.gdh-pl-logo-disc {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #1C0408;
  border: 1px solid rgba(196,162,101,.18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(196,162,101,.06),
    0 12px 40px rgba(0,0,0,.70),
    0 0 70px rgba(196,162,101,.07);
}
.gdh-pl-logo-img {
  width: 78%; height: 78%;
  object-fit: contain;
  display: block;
  animation: gdhPlLogoIn .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes gdhPlLogoIn {
  from { opacity: 0; transform: scale(.78); }
  to   { opacity: 1; transform: none; }
}
.gdh-pl-logo-fallback {
  display: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 2.6rem;
  color: #C4A265;
  line-height: 1;
  animation: gdhPlLogoIn .9s cubic-bezier(.22,1,.36,1) both;
}
.gdh-pl-logo-img.gdh-pl-img-failed { display: none; }
.gdh-pl-logo-img.gdh-pl-img-failed + .gdh-pl-logo-fallback { display: block; }
.gdh-pl-brand {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-align: center;
}
.gdh-pl-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.55rem, 5.5vw, 2.1rem);
  letter-spacing: .03em;
  color: #F5EFE6;
  line-height: 1;
  margin: 0;
  animation: gdhPlUp .65s .18s cubic-bezier(.22,1,.36,1) both;
}
.gdh-pl-brand-name em { font-style: italic; color: #C4A265; }
.gdh-pl-brand-sub {
  font-size: .50rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(196,162,101,.52);
  margin: 0;
  animation: gdhPlUp .65s .34s cubic-bezier(.22,1,.36,1) both;
}
@keyframes gdhPlUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.gdh-pl-prog-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: clamp(160px, 48vw, 240px);
  animation: gdhPlUp .65s .50s cubic-bezier(.22,1,.36,1) both;
}
.gdh-pl-prog-track {
  width: 100%; height: 1px;
  background: rgba(196,162,101,.12);
  border-radius: 1px; overflow: hidden;
}
.gdh-pl-prog-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #C4A265, #D4B87A);
  border-radius: 1px;
  animation: gdhPlFill 1.9s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes gdhPlFill {
  0%  { width: 0%; }
  55% { width: 72%; }
  80% { width: 88%; }
  100%{ width: 100%; }
}
.gdh-pl-prog-label {
  font-size: .46rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,162,101,.35);
  font-weight: 600;
}
.gdh-pl-shimmer {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,162,101,.55) 50%, transparent 100%);
  animation: gdhPlShimmer 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gdhPlShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .gdh-pl-ring-a::before,
  .gdh-pl-ring-b::before,
  .gdh-pl-blob,
  .gdh-pl-shimmer       { animation: none !important; }
  .gdh-pl-prog-fill     { animation: none !important; width: 100%; }
  .gdh-pl-logo-img,
  .gdh-pl-brand-name,
  .gdh-pl-brand-sub,
  .gdh-pl-prog-wrap     { animation: none !important; opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════════
   HEADER TRANSPARENCY
   JS adds .gdh-hero-active to <body> when hero is in view.
══════════════════════════════════════════════════════════════════ */
.site-header {
  transition:
    background   0.35s ease,
    box-shadow   0.35s ease,
    border-color 0.35s ease,
    transform    0.38s cubic-bezier(.4,0,.2,1);
}
.site-header .nav-links-bar {
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header .brand-name,
.site-header .brand-sub,
.site-header .nl-item,
.site-header .nav-menu-btn {
  transition: color 0.35s ease;
}
.site-header .sbs-input-wrap {
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
body.gdh-hero-active .site-header {
  background:    rgba(15,3,6,.48) !important;
  backdrop-filter: blur(18px) saturate(1.35) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.35) !important;
  box-shadow:    0 1px 0 rgba(255,255,255,.07), 0 4px 28px rgba(0,0,0,.22) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}
body.gdh-hero-active .site-header .nav-links-bar {
  background:              transparent !important;
  border-top:              1px solid rgba(255,255,255,.07) !important;
  backdrop-filter:         none !important;
  -webkit-backdrop-filter: none !important;
}
body.gdh-header-hidden .site-header {
  transform: translateY(-100%) !important;
  pointer-events: none;
  user-select: none;
}
body.gdh-header-hidden.gdh-menu-open .site-header {
  transform: none !important;
  pointer-events: auto;
}
body.gdh-hero-active .site-header .brand-name { color: #fff !important; }
body.gdh-hero-active .site-header .brand-sub  { color: rgba(255,255,255,.72) !important; }
body.gdh-hero-active .site-header .nl-item,
body.gdh-hero-active .site-header .nav-menu-btn { color: rgba(255,255,255,.85) !important; }
body.gdh-hero-active .site-header .nl-item:hover,
body.gdh-hero-active .site-header .nav-menu-btn:hover {
  color: #fff !important;
  background: rgba(255,255,255,.08) !important;
}
body.gdh-hero-active .site-header .nl-item.active-link {
  color: var(--gdh-gold-l) !important;
  border-bottom-color: var(--gdh-gold) !important;
}
body.gdh-hero-active .site-header .sale-link { color: #ff8a8a !important; }
body.gdh-hero-active .site-header .sbs-input-wrap {
  background:   rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.22) !important;
  box-shadow:   none !important;
}
body.gdh-hero-active .site-header .sbs-input-wrap:focus-within {
  background:   rgba(255,255,255,.16) !important;
  border-color: var(--gdh-gold) !important;
  box-shadow:   0 0 0 2px rgba(196,162,101,.30) !important;
}
body.gdh-hero-active .site-header #mainSearchInput { color: rgba(255,255,255,.90) !important; }
body.gdh-hero-active .site-header #mainSearchInput::placeholder { color: rgba(255,255,255,.45) !important; }
body.gdh-hero-active .site-header #mainSearchInput:focus { color: rgba(255,255,255,.95) !important; }
body.gdh-hero-active .site-header .cat-trigger-btn {
  background: transparent !important;
  color: rgba(255,255,255,.82) !important;
  border-right-color: rgba(255,255,255,.18) !important;
}
body.gdh-hero-active .site-header .sbs-divider { background: rgba(255,255,255,.18) !important; }
body.gdh-hero-active .site-header .sbs-submit {
  background: linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.08)) !important;
  color: rgba(255,255,255,.75) !important;
}
body.gdh-hero-active .site-header .cart-btn {
  border-color: rgba(255,255,255,.3) !important;
  background: rgba(255,255,255,.1) !important;
}
body.gdh-hero-active .site-header .cart-btn svg,
body.gdh-hero-active .site-header .cart-btn i { color: #fff !important; }
body.gdh-hero-active .site-header .lang-toggle {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.22) !important;
}
body.gdh-hero-active .site-header .lang-btn { color: rgba(255,255,255,.78) !important; }
body.gdh-hero-active .site-header .lang-btn.active { color: var(--gdh-gold-l) !important; }
body.gdh-hero-active .site-header .lang-sep { color: rgba(255,255,255,.28) !important; }
body.gdh-hero-active .site-header .hamburger { border-color: rgba(255,255,255,.22) !important; }

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════ */
#gdh-hero {
  position: relative;
  overflow: hidden;
  background: var(--gdh-ink);
  color: var(--gdh-cream);
  margin-top: calc(-1 * var(--gdh-hh));
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  height: var(--gdh-vh, 100dvh);
  min-height: 560px;
  max-height: 1080px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
}
.gdh-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.gdh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 20%;
  transform: scale(1.10);
  transform-origin: center 22%;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.gdh-slide.active {
  opacity: 1;
  animation: gdhZoom 9s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes gdhZoom {
  from { transform: scale(1.10); }
  to   { transform: scale(1.00); }
}
#gdh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(28,4,8,.70) 0%,
      rgba(28,4,8,.30) 20%,
      rgba(28,4,8,.05) 38%,
      rgba(28,4,8,.00) 48%,
      rgba(28,4,8,.55) 68%,
      rgba(28,4,8,.92) 100%
    ),
    linear-gradient(90deg,
      rgba(28,4,8,.60)  0%,
      rgba(28,4,8,.24) 42%,
      rgba(28,4,8,.00) 82%
    );
}
.gdh-ornament,
.gdh-cap,
.gdh-foot { position: relative; z-index: 3; }
.gdh-cap  { z-index: 4; }
.gdh-ornament {
  position: absolute;
  top: 0; right: 0;
  width: clamp(120px, 32vw, 300px);
  height: clamp(120px, 32vw, 300px);
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(196,162,101,.16) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(82,8,20,.50) 0%, transparent 70%);
}
.gdh-ornament::before,
.gdh-ornament::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  border: 1px solid rgba(196,162,101,.16);
  border-radius: 4px;
}
.gdh-ornament::before { width: 70px; height: 70px; }
.gdh-ornament::after  { width: 46px; height: 46px; top: 27px; right: 27px; }
.gdh-cap {
  position: absolute;
  top: calc(var(--gdh-hh) + 12px);
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(28,4,8,.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gdh-hair-s);
  border-radius: 50px;
  padding: 5px 11px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gdh-cream);
  max-width: calc(100vw - 2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gdh-cap-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gdh-gold);
  flex-shrink: 0;
  animation: gdhPulse 2.2s infinite;
}
@keyframes gdhPulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(196,162,101,.45); }
  50%     { opacity:.55; box-shadow: 0 0 0 6px rgba(196,162,101,0); }
}
.gdh-cap.swap span { animation: gdhCapIn .45s ease; }
@keyframes gdhCapIn {
  from { opacity:0; transform: translateY(4px); }
  to   { opacity:1; transform: none; }
}
.gdh-foot {
  position: relative;
  z-index: 3;
  margin-top: auto;
  width: 100%;
  max-width: 1280px;
  align-self: center;
  padding:
    calc(var(--gdh-hh) + 8px)
    clamp(.9rem, 4vw, 1.4rem)
    calc(40px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-sizing: border-box;
}
.gdh-brand-eye {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gdh-gold-l);
}
.gdh-brand-eye span {
  width: 20px; height: 1px;
  background: var(--gdh-gold);
  flex-shrink: 0;
}
.gdh-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 6.8vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 .24em;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  max-width: 90vw;
}
.gdh-rot {
  display: inline-flex;
  overflow: hidden;
  height: 1.45em;
  vertical-align: bottom;
}
.gdh-rot-track {
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--gdh-ease);
  will-change: transform;
}
.gdh-rot-track i {
  display: block;
  font-style: italic;
  color: var(--gdh-gold-l);
  height: 1.45em;
  line-height: 1.45;
  white-space: nowrap;
}
.gdh-rot-track i[lang="ne"] {
  font-style: normal;
  font-weight: 600;
}
.gdh-quotes {
  position: relative;
  width: 100%;
  max-width: 34ch;
  min-height: 4.2em;
  font-size: .68rem;
}
.gdh-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding-left: 10px;
  border-left: 2px solid var(--gdh-gold);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .7s ease, transform .7s var(--gdh-ease);
}
.gdh-quote.active { opacity: 1; transform: none; }
.gdh-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(245,239,230,.86);
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.gdh-quote p[lang="ne"] { font-style: normal; font-weight: 500; }
.gdh-trust {
  display: none;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gdh-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .60rem;
  color: rgba(245,239,230,.58);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.gdh-trust-item::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gdh-gold);
  flex-shrink: 0;
}
.gdh-dots {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}
.gdh-dot {
  position: relative;
  width: 18px; height: 3px;
  border-radius: 50px;
  border: none; padding: 0;
  background: rgba(245,239,230,.26);
  transition: width .35s ease, background .35s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.gdh-dot::after { content: ""; position: absolute; inset: -20px -6px; }
.gdh-dot.active { width: 34px; background: var(--gdh-gold); }
.gdh-scroll-hint {
  position: absolute;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gdh-hair-s);
  color: rgba(245,239,230,.45);
  animation: gdhBounce 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gdhBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(5px); }
}

/* ══════════════════════════════════════════════════════════════════
   ANNOUNCEMENT MODAL
══════════════════════════════════════════════════════════════════ */
.gdh-ann-modal {
  position: fixed; inset: 0; z-index: 9900;
  display: flex; align-items: flex-end; justify-content: center; padding: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility 0s .35s;
}
.gdh-ann-modal.show { opacity: 1; visibility: visible; transition: opacity .35s ease; }
.gdh-ann-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,4,8,.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.gdh-ann-card {
  position: relative; width: 100%; max-width: 440px;
  background: var(--gdh-maroon-d);
  border: 1px solid var(--gdh-hair-s);
  border-radius: 16px 16px 0 0; overflow: hidden;
  box-shadow: 0 -24px 80px rgba(0,0,0,.65);
  transform: translateY(44px);
  transition: transform .45s var(--gdh-ease);
  max-height: 88dvh; display: flex; flex-direction: column;
}
.gdh-ann-modal.show .gdh-ann-card { transform: translateY(0); }
.gdh-ann-x {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(28,4,8,.6);
  border: 1px solid var(--gdh-hair-s); color: var(--gdh-cream);
  font-size: 1rem; line-height: 1;
  backdrop-filter: blur(6px); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .25s ease, color .25s ease;
  font-family: inherit;
}
.gdh-ann-media {
  position: relative; height: 155px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--gdh-maroon) 0%, var(--gdh-maroon-d) 100%);
  display: flex; align-items: center; justify-content: center;
}
.gdh-ann-media img { width: 100%; height: 100%; object-fit: cover; }
.gdh-ann-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,4,9,0) 40%, var(--gdh-maroon-d) 100%);
}
.gdh-ann-deco {
  font-size: 3.5rem; font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(196,162,101,.4);
  letter-spacing: .1em; text-transform: uppercase; user-select: none;
}
.gdh-ann-body { padding: 16px 20px 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.gdh-ann-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .60rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gdh-gold-l);
  border: 1px solid rgba(196,162,101,.4);
  border-radius: 50px; padding: 4px 12px; margin-bottom: 10px;
}
.gdh-ann-badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gdh-gold); box-shadow: 0 0 7px var(--gdh-gold);
  animation: gdhPulse 2.2s infinite;
}
.gdh-ann-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: 1.35rem; line-height: 1.2;
  margin-bottom: 7px; color: var(--gdh-cream);
}
.gdh-ann-title em { font-style: italic; color: var(--gdh-gold-l); }
.gdh-ann-msg { font-size: .84rem; line-height: 1.6; color: rgba(245,239,230,.78); margin-bottom: 14px; }
.gdh-ann-actions { display: flex; flex-direction: column; gap: 9px; }
.gdh-ann-cta-solid {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; min-height: 44px; padding: 11px 20px; border-radius: 3px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  background: var(--gdh-gold); color: var(--gdh-ink);
  border: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
  text-decoration: none; font-family: inherit; transition: background .25s ease;
}
.gdh-ann-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 11px 20px; border-radius: 3px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  background: none; color: var(--gdh-cream);
  border: 1px solid var(--gdh-hair); cursor: pointer;
  -webkit-tap-highlight-color: transparent; font-family: inherit;
  transition: border-color .25s ease, color .25s ease;
}
.gdh-ann-dont {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: .72rem; color: rgba(245,239,230,.48);
  cursor: pointer; user-select: none;
}
.gdh-ann-dont input { accent-color: var(--gdh-gold); width: 14px; height: 14px; cursor: pointer; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   HOVER EFFECTS — desktop mouse only
══════════════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  .gdh-dot:hover { background: rgba(245,239,230,.5); }
  .gdh-ann-x:hover { border-color: var(--gdh-gold); color: var(--gdh-gold-l); }
  .gdh-ann-cta-solid:hover { background: var(--gdh-gold-l); }
  .gdh-ann-cta-ghost:hover { border-color: var(--gdh-gold); color: var(--gdh-gold-l); }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════════════════════════════════════ */
@media (max-width: 359px) {
  .gdh-headline { font-size: clamp(1.28rem, 8vw, 1.6rem); }
  .gdh-foot { gap: 6px; padding-left: .85rem; padding-right: .85rem; padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
  .gdh-cap { font-size: .52rem; padding: 4px 9px; }
}
@media (min-width: 480px) {
  .gdh-slide { background-position: center 18%; }
  .gdh-foot { gap: 10px; padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px)); }
  .gdh-headline { font-size: clamp(1.75rem, 5.8vw, 2.6rem); }
  .gdh-quotes { font-size: .72rem; max-width: 40ch; min-height: 4.4em; display: block; }
  .gdh-trust { display: flex; }
  .gdh-cap { font-size: .60rem; padding: 6px 12px; }
}
@media (min-width: 600px) {
  #gdh-hero { min-height: 580px; }
  .gdh-headline { font-size: clamp(2rem, 5vw, 2.9rem); }
  .gdh-quotes { max-width: 46ch; font-size: .76rem; min-height: 4em; }
  .gdh-foot { padding-left: 1.4rem; padding-right: 1.4rem; }
  .gdh-ann-modal { align-items: center; padding: 20px; }
  .gdh-ann-card  { border-radius: 14px; max-width: 680px; flex-direction: row; max-height: none; }
  .gdh-ann-media { width: 42%; height: auto; min-height: 280px; }
  .gdh-ann-media::after { background: linear-gradient(90deg, rgba(45,4,9,0) 55%, var(--gdh-maroon-d) 100%); }
  .gdh-ann-body  { padding: 26px; display: flex; flex-direction: column; justify-content: center; }
  .gdh-ann-title { font-size: 1.6rem; }
  .gdh-ann-actions { flex-direction: row; }
}
@media (min-width: 768px) {
  #gdh-hero { min-height: 600px; }
  .gdh-slide { background-position: center 22%; transform-origin: center 26%; }
  #gdh-hero::after {
    background:
      linear-gradient(180deg, rgba(28,4,8,.65) 0%, rgba(28,4,8,.28) 18%, rgba(28,4,8,.05) 38%, rgba(28,4,8,.00) 48%, rgba(28,4,8,.50) 68%, rgba(28,4,8,.88) 100%),
      linear-gradient(90deg, rgba(28,4,8,.50) 0%, rgba(28,4,8,.20) 40%, rgba(28,4,8,.00) 78%);
  }
  .gdh-foot { padding-left: 2rem; padding-right: 2rem; padding-bottom: calc(34px + env(safe-area-inset-bottom, 0px)); gap: 12px; }
  .gdh-headline { font-size: clamp(2.4rem, 4.2vw, 3.2rem); }
  .gdh-quotes { font-size: .80rem; max-width: 52ch; min-height: 3.6em; }
  .gdh-cap { top: calc(var(--gdh-hh) + 22px); right: 1.8rem; font-size: .63rem; }
}
@media (min-width: 1024px) {
  #gdh-hero { min-height: 640px; max-height: none; }
  .gdh-slide { background-position: center 24%; transform-origin: center 28%; }
  #gdh-hero::after {
    background:
      linear-gradient(180deg, rgba(28,4,8,.60) 0%, rgba(28,4,8,.22) 18%, rgba(28,4,8,.04) 38%, rgba(28,4,8,.00) 48%, rgba(28,4,8,.46) 70%, rgba(28,4,8,.84) 100%),
      linear-gradient(90deg, rgba(28,4,8,.46) 0%, rgba(28,4,8,.20) 36%, rgba(28,4,8,.00) 72%);
  }
  .gdh-foot { padding-bottom: 48px; gap: 14px; padding-left: 3rem; padding-right: 3rem; }
  .gdh-headline { font-size: clamp(2.9rem, 3.6vw, 3.8rem); }
  .gdh-quotes { font-size: .84rem; max-width: 56ch; min-height: 3.2em; }
  .gdh-cap { top: calc(var(--gdh-hh) + 30px); right: 3rem; font-size: .64rem; }
}
@media (min-width: 1280px) {
  .gdh-slide { background-position: center 22%; transform-origin: center 24%; }
  .gdh-foot { padding-left: 4rem; padding-right: 4rem; padding-bottom: 52px; gap: 16px; }
  .gdh-headline { font-size: clamp(3.3rem, 3.4vw, 4.2rem); }
  .gdh-cap { right: 4rem; font-size: .66rem; }
}
@media (min-width: 1600px) {
  #gdh-hero { max-height: 1000px; }
  .gdh-headline { font-size: clamp(3.8rem, 3vw, 4.5rem); }
  .gdh-foot { padding-bottom: 58px; }
}
@media (max-width: 479px) { .gdh-trust { display: flex; } }
@media (max-width: 480px) and (max-height: 720px) {
  .gdh-foot { gap: 7px; padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 480px) and (max-height: 660px) {
  .gdh-foot { gap: 5px; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .gdh-brand-eye { display: none; }
  .gdh-quotes { font-size: .62rem; min-height: 3.2em; }
  .gdh-trust { display: none; }
}
@media (max-width: 480px) and (max-height: 580px) {
  .gdh-foot { gap: 4px; padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
  .gdh-quotes { display: none !important; }
  .gdh-dots   { display: none !important; }
  #gdh-hero { min-height: 460px; }
}
@media (max-width: 420px) { #gdh-hero { min-height: 500px; } }
@media (max-height: 500px) and (orientation: landscape) {
  #gdh-hero { min-height: 300px; }
  .gdh-foot { gap: 5px; padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px)); padding-left: 1rem; padding-right: 1rem; }
  .gdh-headline { font-size: clamp(1.1rem, 3.5vh, 1.6rem); }
  .gdh-cap, .gdh-quotes, .gdh-trust, .gdh-scroll-hint { display: none !important; }
}
@media (min-width: 768px) and (orientation: landscape) and (max-height: 700px) {
  .gdh-foot { gap: 9px; padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .gdh-headline { font-size: clamp(2rem, 3.8vw, 2.6rem); }
  .gdh-quotes { min-height: 3.2em; }
}
@media (prefers-reduced-motion: reduce) {
  .gdh-slide,
  .gdh-slide.active { animation: none !important; transition: opacity .5s ease !important; transform: none !important; }
  .gdh-quote { transition: opacity .4s ease !important; transform: none !important; }
  .gdh-rot-track { transition: none !important; }
  .gdh-cap-dot { animation: none !important; }
  .gdh-ann-badge::before { animation: none !important; }
  .gdh-scroll-hint { animation: none !important; }
}
.gdh-dot:focus-visible,
.gdh-ann-x:focus-visible,
.gdh-ann-cta-solid:focus-visible,
.gdh-ann-cta-ghost:focus-visible {
  outline: 2px solid var(--gdh-gold);
  outline-offset: 3px;
}
@media (max-width: 768px) {
  .pa-btn[aria-label*="wishlist"] {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease;
  }
  .card-touched .pa-btn[aria-label*="wishlist"] {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
/* ================================================================
   GOOGLE REVIEW CARD — Override
   Paste this at the very BOTTOM of your style.css
   Only touches .loc-card--review and new .rev-* classes.
   Nothing else on your page will be affected.
   ================================================================ */

/* ── Card shell ── */
.loc-card--review {
  display: flex;
  flex-direction: column;
  padding: 0 22px 26px;
  background: linear-gradient(160deg, #faf6f0 0%, #fff9ef 100%);
  position: relative;
  overflow: hidden;
}
.loc-card--review::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Google rating badge ── */
.rev-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(196,162,101,0.08);
  border: 1px solid rgba(196,162,101,0.2);
  border-radius: 13px;
  padding: 11px 14px;
  margin: 14px 0 20px;
}
.rev-badge-g {
  width: 30px; height: 30px;
  flex-shrink: 0;
}
.rev-badge-stars {
  display: block;
  font-size: 12px;
  color: #f5b342;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 3px;
}
.rev-badge-score {
  font-size: 13px;
  font-weight: 800;
  color: #1a120a;
  line-height: 1;
}
.rev-badge-count {
  font-size: 11px;
  font-weight: 400;
  color: #7a6c5a;
}

/* ── Heading ── */
.rev-title {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  color: #1a120a;
  margin: 0 0 5px;
  line-height: 1.2;
}
.rev-sub {
  font-size: 12.5px;
  color: #7a6c5a;
  line-height: 1.6;
  margin: 0 0 22px;
  font-weight: 300;
}

/* ── Star widget ── */
.rev-star-box {
  background: linear-gradient(135deg, rgba(196,162,101,0.09) 0%, rgba(196,162,101,0.04) 100%);
  border: 1px solid rgba(196,162,101,0.18);
  border-radius: 14px;
  padding: 14px 12px 12px;
  margin-bottom: 14px;
  text-align: center;
}
/* override existing .star-sel inside this card only */
.loc-card--review .star-sel {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
}
.loc-card--review .star-btn {
  font-size: clamp(30px, 8vw, 38px);
  color: #d8c9a2;
  background: none;
  border: none;
  padding: 2px 3px;
  cursor: pointer;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), color 0.18s, filter 0.18s;
}
.loc-card--review .star-btn:hover,
.loc-card--review .star-btn.star-hover {
  color: #f5b342;
  transform: scale(1.25) translateY(-3px);
  filter: drop-shadow(0 0 6px rgba(245,179,66,.65));
}
.loc-card--review .star-btn.filled {
  color: #f5b342;
  filter: drop-shadow(0 0 7px rgba(245,179,66,.55));
}
.loc-card--review .star-btn.rev-pop {
  animation: revPop 0.36s cubic-bezier(.34,1.56,.64,1);
}
@keyframes revPop {
  0%   { transform: scale(0.75); }
  55%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
/* Dynamic label under stars */
.rev-star-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #9a8670;
  margin: 0;
  min-height: 18px;
  transition: color 0.2s;
}
.rev-star-label.rev-rated { color: #a97c2a; }

/* Shake when no star selected */
.loc-card--review .star-sel.star-error {
  animation: revShake 0.38s ease;
}
@keyframes revShake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-7px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(3px); }
}

/* ── Google redirect button ── */
.rev-go-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  background: #fff;
  color: #1a1208;
  border: 2px solid #e5ddd0;
  border-radius: 13px;
  font-family: var(--font-body, sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-bottom: 11px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.25s cubic-bezier(.34,1.4,.64,1);
  box-shadow: 0 2px 10px rgba(26,18,10,0.06);
  -webkit-tap-highlight-color: transparent;
}
.rev-go-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 6px 26px rgba(66,133,244,0.2);
  transform: translateY(-2px);
}
.rev-go-btn:active { transform: translateY(0); }
/* After star selected — green border hint */
.rev-go-btn.rev-ready {
  border-color: #34A853;
  box-shadow: 0 4px 18px rgba(52,168,83,0.18);
}
.rev-go-btn.rev-ready:hover {
  border-color: #2c9648;
  box-shadow: 0 8px 28px rgba(52,168,83,0.3);
}
.rev-btn-g-icon { width: 19px; height: 19px; flex-shrink: 0; }
.rev-btn-label  { flex: 1; text-align: center; }
.rev-btn-arrow  {
  width: 15px; height: 15px; flex-shrink: 0;
  color: #aaa;
  transition: transform 0.22s, color 0.22s;
}
.rev-go-btn:hover .rev-btn-arrow {
  transform: translate(2px,-2px);
  color: #4285F4;
}

/* ── Footer note ── */
.rev-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10.5px;
  color: #9a8878;
  margin: 0;
  opacity: 0.8;
}
.rev-note svg { flex-shrink: 0; }

/* ================================================================
   MOBILE OVERRIDES — max-width: 768px
   ================================================================ */
@media (max-width: 768px) {

  .loc-card--review {
    padding: 0 15px 20px;
  }

  .rev-badge {
    margin: 12px 0 16px;
    padding: 10px 13px;
    border-radius: 12px;
    gap: 10px;
  }
  .rev-badge-g    { width: 26px; height: 26px; }
  .rev-badge-score { font-size: 12.5px; }

  .rev-title { font-size: 1.05rem; }
  .rev-sub   { font-size: 12px; margin-bottom: 18px; }

  .rev-star-box {
    padding: 13px 10px 11px;
    border-radius: 13px;
    margin-bottom: 13px;
  }
  .loc-card--review .star-btn {
    font-size: clamp(32px, 9.5vw, 42px);
    padding: 3px;
  }
  .rev-star-label { font-size: 11px; }

  .rev-go-btn {
    padding: 14px 16px;
    font-size: 13px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .rev-note { font-size: 10px; }

}

@media (max-width: 400px) {
  .loc-card--review { padding: 0 12px 18px; }
  .loc-card--review .star-btn { font-size: 30px; gap: 2px; }
  .rev-go-btn { font-size: 12.5px; padding: 13px 14px; }
}
/* ================================================================
   SHOWROOM / MAP CARD — Mobile Override
   Paste at the very BOTTOM of your style.css
   Only touches the map card footer (buttons, chips, hours).
   Nothing else on your page is affected.
   ================================================================ */

@media (max-width: 768px) {

  /* ── Map footer: tighter padding ── */
  .loc-map-footer {
    padding: 14px 16px 18px;
  }

  /* ── Hours row ── */
  .loc-hours {
    font-size: 12px;
    font-weight: 500;
    gap: 7px;
    margin-bottom: 13px;
    color: var(--text-secondary, #7a6c5a);
    flex-wrap: wrap;
  }

  /* ── BUTTONS: side by side, equal width ── */
  .loc-map-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 13px;
    flex-wrap: unset;
  }
  .loc-btn-dir,
  .loc-btn-wa {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 10px;   /* tall enough for thumb tap */
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 13px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .loc-btn-dir {
    background: var(--brand-gold, #c4a265);
    color: var(--cream, #FAF6F0);
    box-shadow: 0 4px 16px rgba(196,162,101,0.38);
  }
  .loc-btn-dir:active { transform: scale(0.97); }
  .loc-btn-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37,211,102,0.32);
  }
  .loc-btn-wa:active { transform: scale(0.97); }

  /* ── CHIPS: 2-column grid ── */
  .loc-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    flex-wrap: unset;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .loc-chip {
    flex-shrink: unset;
    font-size: 11px;
    padding: 7px 10px;
    text-align: center;
    border-radius: 10px;
    background: var(--cream-warm, #F7F1E9);
    border: 1px solid rgba(196,162,101,0.18);
    color: var(--text-secondary, #7a6c5a);
    white-space: normal;
    line-height: 1.3;
  }
  /* Star chip — slightly highlighted */
  .loc-chip:has(svg),
  .loc-chip[data-chip="rating"],
  .loc-chip:nth-child(3) {
    background: linear-gradient(135deg, rgba(196,162,101,0.14) 0%, rgba(196,162,101,0.07) 100%);
    border-color: rgba(196,162,101,0.28);
    color: var(--brand-gold-deep, #a97c2a);
    font-weight: 600;
  }

} /* end @media (max-width: 768px) */

/* ── Small phones (≤ 480px): stack buttons ── */
@media (max-width: 480px) {
  .loc-map-btns {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .loc-btn-dir,
  .loc-btn-wa {
    padding: 14px 18px;
    font-size: 13px;
    border-radius: 12px;
  }
  .loc-chips {
    grid-template-columns: 1fr 1fr; /* keep 2-col even on small */
    gap: 6px;
  }
  .loc-chip {
    font-size: 10.5px;
    padding: 6px 8px;
  }
}
/* ── Back-to-top floating button ── */
.gdh-to-top{
  position:fixed;right:18px;bottom:84px;z-index:9998;
  width:46px;height:46px;border-radius:50%;
  border:none;cursor:pointer;
  background:var(--brand-crimson,#6B1420);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 20px rgba(20,8,3,.28);
  opacity:0;visibility:hidden;transform:translateY(14px);
  transition:opacity .3s ease,transform .3s ease,visibility .3s,background .2s;
  -webkit-tap-highlight-color:transparent;
}
.gdh-to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.gdh-to-top:hover{background:var(--brand-gold-deep,#A97C2A);}
.gdh-to-top:active{transform:scale(.94);}
.gdh-to-top svg{width:22px;height:22px;}
@media(min-width:1024px){ .gdh-to-top{right:28px;bottom:32px;} }
/* ── Lighter hero scrim (brighter images, text still readable) ── */
#gdh-hero::after{
  background:
    linear-gradient(180deg,
      rgba(28,4,8,.32) 0%,
      rgba(28,4,8,.10) 20%,
      rgba(28,4,8,.00) 40%,
      rgba(28,4,8,.00) 55%,
      rgba(28,4,8,.28) 78%,
      rgba(28,4,8,.60) 100%),
    linear-gradient(90deg,
      rgba(28,4,8,.28) 0%,
      rgba(28,4,8,.10) 42%,
      rgba(28,4,8,.00) 82%) !important;
}