﻿/* ============================================================
   NEW WOODEN CRAFTS — Main Stylesheet
   Theme: Earthy Wood Tones + Indian Festival Accents
   Approach: Mobile-first, BEM-ish class naming, no frameworks
   ============================================================ */

/* Typography: Playfair Display (hero/display) + Cormorant Garamond (product/secondary headings) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* --- Core Wood Palette --- */
  --clr-wood-dark:    #3b1f0e;   /* Dark mahogany — headings, footer bg */
  --clr-wood-mid:     #6b3a1f;   /* Rich walnut — primary accents */
  --clr-wood-warm:    #9c5a2d;   /* Warm chestnut — hover states */
  --clr-wood-light:   #c8895a;   /* Sandalwood — borders, dividers */
  --clr-wood-pale:    #e8cba8;   /* Pale wood — card backgrounds */

  /* --- Story / Hero gold tones --- */
  --gold:             #D4A017;
  --gold-bright:      #F5C518;

  /* --- Festival Accent Palette (Indian vibe) --- */
  --clr-marigold:     #f5a623;   /* Marigold yellow — primary highlight */
  --clr-saffron:      #e8720c;   /* Deep saffron — CTAs, badges */
  --clr-diya:         #d4380d;   /* Diya red — festive accents */
  --clr-turmeric:     #f7c948;   /* Turmeric gold — shimmer effects */
  --clr-henna:        #8b1a1a;   /* Deep henna — rich dark accent */

  /* --- Neutral Surface Palette --- */
  --clr-cream:        #fdf6ec;   /* Page background */
  --clr-cream-dark:   #f5e8d3;   /* Section alternating bg */
  --clr-white:        #ffffff;
  --clr-text-dark:    #1e1007;   /* Primary text */
  --clr-text-mid:     #5a3e28;   /* Secondary text */
  --clr-text-light:   #9a7b5c;   /* Muted/hint text */

  /* --- Action Colors --- */
  --clr-whatsapp:     #25d366;
  --clr-whatsapp-dk:  #128c4a;
  --clr-call:         #2c5f8a;
  --clr-call-dk:      #1a3f5c;

  /* --- Shadows --- */
  --shadow-soft:      0 2px 12px rgba(59, 31, 14, 0.08);
  --shadow-card:      0 4px 24px rgba(59, 31, 14, 0.12);
  --shadow-hover:     0 8px 36px rgba(59, 31, 14, 0.22);
  --shadow-inset:     inset 0 1px 3px rgba(0,0,0,0.15);

  /* --- Border Radius --- */
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        32px;
  --radius-pill:      999px;

  /* --- Transitions --- */
  --transition-fast:  0.18s ease;
  --transition-mid:   0.3s ease;
  --transition-slow:  0.5s ease;

  /* --- Typography --- */
  --font-display:     'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-heading:     'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body:        'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* --- Spacing Scale --- */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* --- Container --- */
  --container-max: 1200px;
  --container-pad: var(--space-md);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-cream);
  color: var(--clr-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-divider {
  border: none;
  border-top: 2px dashed var(--clr-wood-pale);
  margin: var(--space-2xl) 0;
}

/* ============================================================
   4. TYPOGRAPHY — GLOBAL
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-wood-dark);
}

/* Display-weight headings use Playfair Display for stronger visual presence */
h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p  { color: var(--clr-text-mid); line-height: 1.75; }

/* Section Headers — shared */
/* ── Section Header — Village Artisan Heritage Style ─────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;

  /* Earthy gradient text — dark mahogany to warm sandalwood */
  background: linear-gradient(135deg, #1e0a02 0%, #5a2a0a 45%, #c8895a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  padding-top: 20px;        /* space for ::before ornament */
  padding-bottom: 20px;     /* space for ::after underline */
  margin-bottom: 0;
}

/* Top ornament — thin gradient rule above the title */
.section-header__title::before {
  content: '';
  display: block;
  width: 44px;
  height: 1.5px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, var(--clr-saffron) 40%, var(--clr-marigold) 60%, transparent);
  border-radius: 2px;
}

/* Bottom ornament — fading gradient bar with warm glow */
.section-header__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    90deg,
    transparent     0%,
    var(--clr-saffron)   18%,
    var(--clr-marigold)  42%,
    var(--clr-saffron)   82%,
    transparent    100%
  );
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.35), 0 0 22px rgba(232, 114, 12, 0.18);
}

/* Subtitle — artisan tag: spaced uppercase in muted amber */
.section-header__subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-wood-warm);
  opacity: 0.75;
  margin-top: 14px;
  padding: 4px 16px;
  position: relative;

  /* Subtle flanking lines */
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.section-header__subtitle::before,
.section-header__subtitle::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 137, 90, 0.45));
}

.section-header__subtitle::after {
  background: linear-gradient(to left, transparent, rgba(200, 137, 90, 0.45));
}

/* ══════════════════════════════════════════════════════════════
   ARTISAN COLLECTION & PRODUCT HEADINGS
   Premium Celebrated Village — Marigold Festival Aesthetic
   ══════════════════════════════════════════════════════════════ */

.product-section .section-header,
.categories .section-header {
  text-align: center;
  align-items: center;
  padding: 3rem 1rem 0;
  margin-bottom: var(--space-2xl);
  gap: 0;
  position: relative;
  background: none;
  border: none;
}

.product-section .section-header::before,
.categories .section-header::before {
  display: none;
}

.product-section .section-header__title,
.categories .section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #1c0a00;
  background: none;
  -webkit-text-fill-color: #1c0a00;
  filter: none;
  display: block;
  text-align: center;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.product-section .section-header__title::before,
.categories .section-header__title::before {
  display: none;
}

/* Thin gold accent line below the title */
.product-section .section-header__title::after,
.categories .section-header__title::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: #D4A017;
  border-radius: 2px;
  margin: 14px auto 0;
  position: static;
  transform: none;
  box-shadow: none;
}

.product-section .section-header::after,
.categories .section-header::after {
  display: none;
}

.product-section .section-header__subtitle,
.categories .section-header__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(90, 45, 8, 0.52);
  opacity: 1;
  margin-top: 12px;
  padding-top: 0;
  position: static;
}

.product-section .section-header__subtitle::before,
.categories .section-header__subtitle::before,
.product-section .section-header__subtitle::after,
.categories .section-header__subtitle::after {
  display: none;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.btn:active {
  transform: translateY(0);
}

/* Primary CTA — Saffron */
.btn--primary {
  background: linear-gradient(135deg, var(--clr-saffron), var(--clr-marigold));
  color: var(--clr-white);
  box-shadow: 0 4px 14px rgba(232, 114, 12, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--clr-diya), var(--clr-saffron));
  box-shadow: 0 8px 22px rgba(232, 114, 12, 0.45);
}

/* WhatsApp */
.btn--whatsapp {
  background-color: var(--clr-whatsapp);
  color: var(--clr-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background-color: var(--clr-whatsapp-dk);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Call */
.btn--call {
  background-color: var(--clr-call);
  color: var(--clr-white);
  box-shadow: 0 4px 14px rgba(44, 95, 138, 0.25);
}

.btn--call:hover {
  background-color: var(--clr-call-dk);
  box-shadow: 0 8px 20px rgba(44, 95, 138, 0.35);
}

/* Outline variant */
.btn--outline {
  background: transparent;
  border-color: var(--clr-wood-light);
  color: var(--clr-wood-mid);
}

.btn--outline:hover {
  background: var(--clr-wood-mid);
  border-color: var(--clr-wood-mid);
  color: var(--clr-white);
}

/* Small size modifier */
.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
/* ── Fixed nav — always visible, sharpens on scroll ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space-xl);
  background: rgba(253, 246, 236, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(155, 90, 45, 0.10);
  transition:
    transform    0.38s cubic-bezier(0.4, 0, 0.2, 1),
    background   0.35s ease,
    box-shadow   0.35s ease,
    border-color 0.35s ease,
    padding      0.3s ease;
  will-change: transform, background, box-shadow;
}

/* Hide nav by sliding it above viewport (scroll-down behaviour) */
.nav--hidden {
  transform: translateY(-110%);
}

/* Scrolled — more opaque, stronger shadow, tighter padding */
.nav--scrolled {
  background: rgba(253, 246, 236, 0.98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 1px 0 rgba(155, 90, 45, 0.18),
    0 4px 32px rgba(59, 31, 14, 0.10);
  border-bottom-color: rgba(155, 90, 45, 0.20);
  padding-block: 10px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--clr-wood-dark);
  text-shadow: none;
  letter-spacing: -0.01em;
}

.nav__logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-tagline {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: rgba(59, 31, 14, 0.52);
  font-family: Georgia, serif;
  font-style: italic;
  line-height: 1;
}

/* Desktop: fixed to top-right of viewport, matching nav bar position.
   right offset = nav padding (40px) + cart button (42px) + gap (14px) = 96px
   so "Live Preview" ends cleanly before the cart icon, no collision. */
.nav__links {
  position: fixed;
  top: 0;
  right: calc(var(--space-xl) + 56px);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  height: 54px;  /* matches nav bar height */
  padding: 0;
  list-style: none;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide desktop nav links off-screen when nav hides on scroll-down */
@media (min-width: 701px) {
  .nav.nav--hidden ~ .nav__links {
    transform: translateY(-110%);
  }
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(59, 31, 14, 0.82);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-marigold);
  border-radius: var(--radius-pill);
  transition: width var(--transition-mid);
}

.nav__link:hover { color: var(--clr-marigold); }
.nav__link:hover::after { width: 100%; }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.site-header {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  /* Layered warm parchment gradient — honey glow on cream linen */
  background:
    radial-gradient(ellipse 80% 65% at 0% 100%,  rgba(212, 150, 50, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 65% 55% at 100% 0%,  rgba(200, 140, 40, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 85% 95%,  rgba(190, 130, 35, 0.13) 0%, transparent 52%),
    radial-gradient(ellipse 48% 42% at 18% 12%,  rgba(220, 170, 80, 0.10) 0%, transparent 55%),
    linear-gradient(162deg, #fdf6ec 0%, #faf0e0 30%, #f5e8d2 65%, #f0dfbf 100%);
  background-color: #fdf6ec;
  overflow: hidden;
}

/* Warm light accent pools — flame-like glow at corners */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 42% 38% at 12% 78%, rgba(180, 110, 25, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 38% 34% at 90% 18%, rgba(200, 140, 35, 0.11) 0%, transparent 68%),
    radial-gradient(ellipse 30% 28% at 55% 85%, rgba(160, 100, 18, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 25% 22% at 35% 20%, rgba(150, 85,  10, 0.06) 0%, transparent 58%);
  pointer-events: none;
  transform-origin: center;
  animation: hero-ambience 9s ease-in-out infinite alternate;
}

/* SVG grain texture — adds tactile, premium "printed" feel */
.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.038;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

@keyframes hero-ambience {
  0%   { opacity: 0.65; transform: scale(1); }
  100% { opacity: 1;    transform: scale(1.04); }
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__head {
  max-width: 600px;
  width: 100%;
}

.hero__body {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero__brand-rule {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-saffron) 30%, var(--clr-marigold) 60%, transparent);
  border-radius: 2px;
  margin: 0 auto var(--space-md);
}

.hero__visual {
  width: 100%;
  max-width: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeSlideUp 0.9s 0.25s ease both, hero-float 7s ease-in-out 1.5s infinite;
}

/* Pill label above gallery — "Our Recent Work" */
.hero__visual-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 5px 14px;
  align-self: flex-start;
  background: rgba(107, 58, 31, 0.06);
  border: 1px solid rgba(107, 58, 31, 0.22);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(107, 58, 31, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__visual-label-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(107, 58, 31, 0.42);
  flex-shrink: 0;
}

#hero-gallery-wrap {
  width: 100%;
}

/* Gallery decorative frame: gold L-corners + handmade badge */
.hero-gallery-frame {
  position: relative;
  width: 100%;
}

.hgf-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 10;
  pointer-events: none;
}
.hgf-corner--tl { top: -5px;  left: -5px;  border-top: 2px solid #D4A017; border-left:  2px solid #D4A017; }
.hgf-corner--tr { top: -5px;  right: -5px; border-top: 2px solid #D4A017; border-right: 2px solid #D4A017; }
.hgf-corner--bl { bottom: -5px; left: -5px;  border-bottom: 2px solid #D4A017; border-left:  2px solid #D4A017; }
.hgf-corner--br { bottom: -5px; right: -5px; border-bottom: 2px solid #D4A017; border-right: 2px solid #D4A017; }

/* Circular "100% HANDMADE" badge — bottom-right of gallery */
.hero-gallery-badge {
  position: absolute;
  bottom: 14px;
  right: -16px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--clr-wood-dark);
  border: 2px solid #D4A017;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 18px rgba(59, 31, 14, 0.32);
  color: #D4A017;
  font-family: var(--font-display);
  text-align: center;
  padding: 6px;
  line-height: 1.15;
}

.hgb-pct  { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; }
.hgb-word { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); }

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  animation: fadeSlideUp 0.9s 0.6s ease both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--clr-marigold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

.hero__stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(59, 31, 14, 0.18);
  flex-shrink: 0;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-wood-mid);
  padding: 6px 18px;
  border: 1px solid rgba(107, 58, 31, 0.28);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  background: rgba(107, 58, 31, 0.06);
  box-shadow: 0 0 16px rgba(107, 58, 31, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  animation: fadeSlideUp 0.9s 0.1s ease both;
}

.hero__eyebrow-orn {
  font-size: 0.7em;
  opacity: 0.55;
  letter-spacing: 0;
  font-style: normal;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  color: var(--clr-wood-dark);
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-shadow: none;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.9s 0.2s ease both;
}

.hero__title span {
  display: block;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.015em;
}

.hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-family: var(--font-body);
  color: var(--clr-text-mid);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.85;
  letter-spacing: 0.01em;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

/* Two bold lines replacing the long tagline paragraph */
.hero__taglines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

.hero__tagline-bold {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--clr-wood-mid);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

/* Compact live-preview link — single pill row */
.hero__trust-compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(107, 58, 31, 0.22);
  background: rgba(107, 58, 31, 0.05);
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  animation: fadeSlideUp 0.9s 0.42s ease both;
  white-space: nowrap;
}
.hero__trust-compact:hover {
  color: var(--clr-wood-mid);
  border-color: rgba(107, 58, 31, 0.38);
  background: rgba(107, 58, 31, 0.09);
}
.hero__trust-compact .hero__trust-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #35b86a;
  flex-shrink: 0;
  animation: trust-dot-pulse 2.2s ease-in-out infinite;
}

/* ── Hero Trust Strip — Live Video Preview Announcement ── */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 11px 16px 11px 12px;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  width: fit-content;

  background: rgba(255, 252, 245, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(196, 140, 20, 0.24);
  border-radius: 14px;
  box-shadow:
    0 2px 18px rgba(59, 31, 14, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);

  text-decoration: none;
  color: inherit;
  cursor: pointer;

  animation:
    fadeSlideUp        0.9s 0.42s ease both,
    hero-trust-breathe 5s  1.8s  ease-in-out infinite;

  transition:
    box-shadow   0.32s ease,
    border-color 0.32s ease,
    transform    0.24s ease;
}

.hero__trust:hover {
  border-color: rgba(196, 140, 20, 0.44);
  box-shadow:
    0 5px 28px rgba(59, 31, 14, 0.13),
    0 0 22px rgba(212, 160, 23, 0.11),
    0 0 0 1px rgba(255, 255, 255, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

@keyframes hero-trust-breathe {
  0%, 100% {
    border-color: rgba(196, 140, 20, 0.24);
    box-shadow:
      0 2px 18px rgba(59, 31, 14, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.90);
  }
  50% {
    border-color: rgba(196, 140, 20, 0.40);
    box-shadow:
      0 2px 24px rgba(59, 31, 14, 0.10),
      0 0 16px rgba(212, 160, 23, 0.13),
      0 0 0 1px rgba(255, 255, 255, 0.75),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }
}

/* Icon ring */
.hero__trust-icon-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.13) 0%, rgba(156,90,45,0.09) 100%);
  border: 1px solid rgba(196, 140, 20, 0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  color: var(--clr-wood-mid);
  transition: background 0.3s ease, transform 0.25s ease;
}

.hero__trust:hover .hero__trust-icon-ring {
  background: linear-gradient(135deg, rgba(212,160,23,0.22) 0%, rgba(156,90,45,0.16) 100%);
  transform: scale(1.08);
}

.hero__trust-icon-ring svg {
  width: 16px;
  height: 16px;
}

/* Copy text */
.hero__trust-copy {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--clr-text-mid);
  line-height: 1.52;
  letter-spacing: 0.008em;
  flex: 1;
}

/* Highlighted phrase — warm saffron, heavier weight */
.hero__trust-em {
  font-weight: 700;
  font-style: normal;
  color: var(--clr-wood-warm);
}

/* LIVE badge */
.hero__trust-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(40, 190, 110, 0.09);
  border: 1px solid rgba(40, 190, 110, 0.26);
  flex-shrink: 0;
}

.hero__trust-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #35b86a;
  animation: trust-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes trust-dot-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.hero__trust-live-label {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #29955a;
  text-transform: uppercase;
  line-height: 1;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s 0.55s ease both;
}

/* Scroll hint arrow */
.hero::after {
  content: '↓';
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 31, 14, 0.38);
  font-size: 1.4rem;
  animation: bounce 2s ease infinite;
}

/* Offset anchor scroll targets below the fixed nav (~68px) */
[id] {
  scroll-margin-top: 72px;
}

/* ============================================================
   8. CATEGORIES SECTION
   ============================================================ */
.categories {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background-color: var(--clr-cream);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

/* Category Card */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  background-color: var(--clr-wood-pale);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-mid),
    box-shadow var(--transition-mid);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.category-card__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  background-color: var(--clr-wood-pale);
}

/* Placeholder shimmer when image is empty */
.category-card__image:not([src]),
.category-card__image[src=""] {
  background: linear-gradient(
    110deg,
    var(--clr-wood-pale) 30%,
    var(--clr-cream-dark) 50%,
    var(--clr-wood-pale) 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.category-card:hover .category-card__image {
  transform: scale(1.06);
}

/* Dark gradient overlay at bottom */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(30, 10, 0, 0.78) 0%,
    rgba(30, 10, 0, 0.2) 55%,
    transparent 100%
  );
}

/* Marigold top border accent */
.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-saffron), var(--clr-marigold), var(--clr-saffron));
  z-index: 3;
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.category-card:hover::after {
  opacity: 1;
}

.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-lg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--clr-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.category-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.9);
  color: var(--clr-wood-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.category-card:hover .category-card__arrow {
  background: var(--clr-marigold);
  transform: translateX(3px);
}

/* ============================================================
   9. PRODUCTS SECTION
   ============================================================ */
.products {
  padding: var(--space-2xl) 0;
  background-color: var(--clr-cream-dark);
}

.product-section {
  padding: var(--space-2xl) 0;
}

/* Product Grid — 2 cols mobile, 3 tablet, 4 desktop */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ============================================================
   PRODUCT CARD — Minimal e-commerce style
   Image + Name + Price only
   ============================================================ */

/* Card wrapper */
.product-card {
  background: var(--clr-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 31, 14, 0.09), 0 1px 4px rgba(59, 31, 14, 0.05);
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  border: 1.5px solid rgba(200, 137, 90, 0.10);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 56px rgba(59, 31, 14, 0.16), 0 6px 16px rgba(59, 31, 14, 0.08);
  border-color: rgba(212, 160, 23, 0.28);
}

/* Warm golden shimmer bar on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--clr-marigold) 30%, var(--gold-bright) 50%, var(--clr-marigold) 70%, transparent);
  z-index: 2;
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.product-card:hover::before { opacity: 1; }

/* Image-only link — wraps only the image-wrap, never the body or button */
.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ---- IMAGE ---- */
.product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;        /* square — consistent across all cards */
  overflow: hidden;
  background-color: var(--clr-wood-pale);
  flex-shrink: 0;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.38s ease;
}

.category-card__image,
.hero-gallery__slide img {
  opacity: 0;
  transition: opacity 0.38s ease;
}

.img-loaded {
  opacity: 1 !important;
}

/* Product tag pills — admin-set, overlaid on image top-left */
.product-card__tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.product-card__tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: #f2c46b;
  background: var(--tag-badge-bg, rgba(28, 8, 0, 0.82));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

/* Wishlist heart icon */
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  border: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  color: #c0392b;
}
.product-card__wishlist:hover {
  background: #fff;
  transform: scale(1.18);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.20);
}

/* Discount badge — circular, handcrafted wood & gold */
.product-card__discount {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3b1f0e, #5c2d14);
  border: 2px solid rgba(212, 160, 23, 0.60);
  color: #D4A017;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 3px 14px rgba(59, 31, 14, 0.32);
}

.pcd-num {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.pcd-lbl {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shimmer while image loads / no src */
.product-card__image:not([src]),
.product-card__image[src=""] {
  background: linear-gradient(
    110deg,
    var(--clr-wood-pale) 30%,
    var(--clr-cream-dark) 50%,
    var(--clr-wood-pale) 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

.product-card:hover .product-card__image { transform: scale(1.06); }

/* Soft warm gradient at base of image — blends image into card body */
.product-card__image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(59, 31, 14, 0.09) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* "View Details" badge — fades up on hover */
.product-card__view-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(30, 10, 0, 0.85);
  color: var(--clr-marigold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition-mid), transform var(--transition-mid);
  pointer-events: none;
}

.product-card:hover .product-card__view-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- BODY ---- */
.product-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--clr-white);
  align-items: center;
  text-align: center;
  flex: 1 1 auto; /* absorbs extra height so button stays at the bottom */
}

/* Name link — separate <a> so clicking the name navigates to the product page */
.product-card__name-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card__name-link:hover .product-card__name {
  color: var(--clr-marigold, #d4a017);
}

/* Product name — max 2 lines then ellipsis */
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #1e0a02;
  line-height: 1.22;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price — Playfair Display, deep black */
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: #1a0800;
  letter-spacing: -0.02em;
}

/* "Contact for price" variant — subtler */
.product-card__price--contact {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-light);
  font-style: italic;
}

/* Discounted price row */
.product-card__price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

/* Strikethrough original price */
.product-card__price--original {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text-light);
  text-decoration: line-through;
}

/* % OFF badge */
.product-card__discount-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-white);
  background: var(--clr-diya);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ---- Skeleton Loading Cards ---- */
.product-card--skeleton {
  pointer-events: none;
}

.product-card--skeleton .product-card__image-wrap {
  background: linear-gradient(
    110deg,
    var(--clr-wood-pale) 30%,
    var(--clr-cream) 50%,
    var(--clr-wood-pale) 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.skeleton-line {
  height: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  background: linear-gradient(
    110deg,
    var(--clr-wood-pale) 30%,
    var(--clr-cream-dark) 50%,
    var(--clr-wood-pale) 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.skeleton-line--title  { height: 18px; width: 70%; }
.skeleton-line--short  { width: 45%; }

/* ---- Empty State ---- */
.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-2xl);
  text-align: center;
}

.empty-state__icon { font-size: 2.5rem; }
.empty-state__text { color: var(--clr-text-light); font-size: 0.95rem; }

/* ---- Error Banner ---- */
.error-banner {
  background: var(--clr-diya);
  color: var(--clr-white);
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.92rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Active nav link (scroll-spy) */
.nav__link--active {
  color: var(--clr-marigold) !important;
}

.nav__link--active::after {
  width: 100% !important;
}

/* ============================================================
   10. TRUST / WHY US SECTION
   ============================================================ */
/* ─── WHY CHOOSE US ─── */
.trust-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, #1e0d04 0%, #2f1508 40%, #3d1c09 100%);
  position: relative;
  overflow: hidden;
}

/* Ambient warm glow */
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(212,160,23,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(232,114,12,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle horizontal grain — artisan wood feel */
.trust-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.012) 28px,
    rgba(255,255,255,0.012) 29px
  );
  pointer-events: none;
}

.trust-section .section-header {
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.trust-section__eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-marigold);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.trust-section .section-header__title {
  background: none;
  -webkit-text-fill-color: #f5e8d0;
  color: #f5e8d0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.trust-section .section-header__title::before {
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.6) 40%, rgba(212,160,23,0.6) 60%, transparent);
}

.trust-section .section-header__title::after {
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  box-shadow: 0 0 14px rgba(212,160,23,0.5), 0 0 28px rgba(212,160,23,0.18);
}

.trust-section .section-header__subtitle {
  color: rgba(245,232,208,0.52);
  opacity: 1;
}

.trust-section .section-header__subtitle::before {
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.25));
}

.trust-section .section-header__subtitle::after {
  background: linear-gradient(to left, transparent, rgba(212,160,23,0.25));
}

/* Trust grid */
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Trust card */
.trust-item {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(212,160,23,0.13);
  border-top: 2px solid rgba(212,160,23,0.45);
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    background var(--transition-mid),
    transform var(--transition-mid),
    border-color var(--transition-mid),
    box-shadow var(--transition-mid);
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 70% 50% at 20% 0%, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.trust-item:hover::before { opacity: 1; }

.trust-item:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(212,160,23,0.38);
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.38), 0 0 0 1px rgba(212,160,23,0.07);
}

/* Icon container */
.trust-item__icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.32);
  background: rgba(212,160,23,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-marigold);
  flex-shrink: 0;
  transition:
    background var(--transition-mid),
    border-color var(--transition-mid),
    transform var(--transition-mid);
}

.ti-svg {
  width: 21px;
  height: 21px;
  display: block;
}

.trust-item:hover .trust-item__icon-wrap {
  background: rgba(212,160,23,0.16);
  border-color: rgba(212,160,23,0.58);
  transform: scale(1.08);
}

.trust-item__title {
  color: #f0e0c0;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.3;
}

.trust-item__desc {
  color: rgba(245,232,208,0.52);
  font-size: 0.85rem;
  line-height: 1.72;
  margin: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: var(--space-2xl) 0;
  background: var(--clr-cream);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.35) 30%, rgba(212,160,23,0.35) 70%, transparent);
}

.testi-section__eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-marigold);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.testimonials-section .section-header {
  margin-bottom: var(--space-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.testi-card {
  background: var(--clr-white);
  border: 1px solid rgba(59,31,14,0.09);
  border-radius: var(--radius-md);
  padding: 36px 28px 24px;
  position: relative;
  margin: 0;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

/* Large opening quote mark */
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(212,160,23,0.18);
  pointer-events: none;
  user-select: none;
}

.testi-card--featured {
  border-color: rgba(212,160,23,0.32);
  background: linear-gradient(155deg, #fffdf7 0%, var(--clr-cream) 100%);
  box-shadow: 0 4px 20px rgba(59,31,14,0.06);
}

.testi-card--featured::before {
  color: rgba(212,160,23,0.3);
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59,31,14,0.1);
}

.testi-card__stars {
  color: var(--clr-marigold);
  font-size: 0.82rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

.testi-card__text {
  font-size: 0.93rem;
  line-height: 1.82;
  color: var(--clr-text-mid);
  font-style: italic;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(59,31,14,0.07);
  padding-top: 18px;
}

.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-wood-mid), var(--clr-wood-dark));
  color: var(--clr-marigold);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  font-style: normal;
}

.testi-card__location {
  display: block;
  font-size: 0.74rem;
  color: var(--clr-text-light);
  margin-top: 2px;
}

/* ─── OUR STORY SECTION ─── */
.story-section {
  padding: var(--space-2xl) 0 calc(var(--space-2xl) + 20px);
  background: linear-gradient(160deg, #160800 0%, #1e0c02 55%, #2d1200 100%);
  position: relative;
  overflow: hidden;
}

/* Warm grain overlay */
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(212,160,23,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(155,90,40,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold top border */
.story-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #D4A017 25%, #F5C518 50%, #D4A017 75%, transparent 100%);
}

.story-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.story-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A017;
  opacity: 0.85;
  margin-bottom: 14px;
}

.story-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #F5C518;
  text-shadow: 0 2px 24px rgba(212,160,23,0.28);
  background: none;
  -webkit-text-fill-color: #F5C518;
  filter: none;
}

/* Remove the auto gold underline for this heading */
.story-section .section-header__title::after {
  display: none;
}

/* ── Language toggle button ── */
.story-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;

  padding: 9px 22px;
  border: 1.5px solid rgba(212,160,23,0.55);
  border-radius: 999px;
  background: rgba(212,160,23,0.08);
  color: #D4A017;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;

  transition:
    background  0.22s ease,
    border-color 0.22s ease,
    color       0.22s ease,
    box-shadow  0.22s ease;
}

.story-lang-btn:hover {
  background: rgba(212,160,23,0.18);
  border-color: #D4A017;
  box-shadow: 0 4px 16px rgba(212,160,23,0.18);
}

.story-lang-btn:active {
  transform: scale(0.97);
}


/* ── Story images ── */
.story-images {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  align-items: center;
}

.story-image-slot {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(212,160,23,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}

.story-image-slot--tall {
  aspect-ratio: 3/4;
}

.story-image-slot--skeleton {
  animation: story-shimmer 1.8s ease-in-out infinite;
}

@keyframes story-shimmer {
  0%, 100% { background: rgba(255,255,255,0.04); }
  50%       { background: rgba(212,160,23,0.08); }
}

.story-image-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.03);
}

.story-image-slot__img.img-loaded {
  opacity: 1;
  transform: scale(1);
}

/* ── Story body text ── */
.story-body {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.story-para {
  position: relative;
  padding-left: 52px;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.28rem);
  font-weight: 600;
  line-height: 2;
  color: rgba(253,246,236,0.88);
  letter-spacing: 0.01em;
}

.story-para--last {
  padding-bottom: 8px;
}

.story-para__quote {
  position: absolute;
  left: 0;
  top: -12px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: #D4A017;
  opacity: 0.55;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── Attribution ── */
.story-attribution {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: right;
  padding-right: 4px;
}

.story-attribution__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A017);
  margin: 0 0 18px auto;
  border-radius: 2px;
}

.story-attribution__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: #F5C518;
  letter-spacing: 0.02em;
}

.story-attribution__title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(212,160,23,0.6);
  margin-top: 4px;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .story-images {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .story-image-slot { aspect-ratio: 1/1; }
  .story-image-slot--tall { aspect-ratio: 1/1; }

  .story-para { padding-left: 36px; font-size: 1.05rem; }
  .story-para__quote { font-size: 3.2rem; top: -8px; }
  .story-section__heading { -webkit-text-fill-color: #F5C518; }
}

@media (max-width: 480px) {
  .story-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .story-image-slot:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/7;
  }
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, #fdf6ec 0%, #f5e8d0 55%, #faebd7 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,160,23,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.contact-section__eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-wood-mid);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.contact-section__hdr {
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.contact-section .section-header__title {
  background: none;
  -webkit-text-fill-color: #3b1f0e;
  color: #3b1f0e;
}

.contact-section .section-header__subtitle {
  color: rgba(59,31,14,0.55);
  opacity: 1;
}

.contact-section .section-header__title::before {
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.55) 40%, rgba(212,160,23,0.55) 60%, transparent);
}

.contact-section .section-header__title::after {
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  box-shadow: 0 0 12px rgba(212,160,23,0.35);
}

.contact-section .section-header__subtitle::before {
  background: linear-gradient(to right, transparent, rgba(107,58,31,0.2));
}

.contact-section .section-header__subtitle::after {
  background: linear-gradient(to left, transparent, rgba(107,58,31,0.2));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.contact-method-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(107,58,31,0.12);
  border-left: 3px solid rgba(212,160,23,0.55);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(59,31,14,0.07);
  transition:
    background var(--transition-mid),
    border-color var(--transition-mid),
    transform var(--transition-mid),
    box-shadow var(--transition-mid);
}

.contact-method-card:hover {
  background: rgba(255,255,255,0.95);
  border-left-color: var(--gold);
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(59,31,14,0.14);
}

.contact-method-card--whatsapp {
  border-left-color: rgba(37,211,102,0.55);
}

.contact-method-card--whatsapp:hover {
  border-left-color: #25d366;
}

.contact-method-card__icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a07010;
  transition: background var(--transition-mid), border-color var(--transition-mid);
}

.contact-method-card__icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-method-card--whatsapp .contact-method-card__icon-wrap {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.28);
  color: #1a9c50;
}

.contact-method-card:hover .contact-method-card__icon-wrap {
  background: rgba(212,160,23,0.18);
  border-color: rgba(212,160,23,0.55);
}

.contact-method-card--whatsapp:hover .contact-method-card__icon-wrap {
  background: rgba(37,211,102,0.14);
  border-color: rgba(37,211,102,0.5);
}

.contact-method-card__body { flex: 1; }

.contact-method-card__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(59,31,14,0.45);
  margin: 0 0 4px;
}

.contact-method-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #3b1f0e;
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

a.contact-method-card__value:hover { color: var(--clr-wood-warm); }

.contact-method-card--whatsapp .contact-method-card__value { color: #1a7a3c; }

.contact-method-card--whatsapp a.contact-method-card__value:hover { color: #128c4a; }

.contact-method-card__address {
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b3a1f;
}

.contact-method-card__note {
  font-size: 0.74rem;
  color: rgba(59,31,14,0.38);
  margin: 4px 0 0;
}


/* ============================================================
   10a. HERO GALLERY
   ============================================================ */
.hero-gallery {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 24px 80px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(212, 130, 15, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-gallery__skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  border-radius: inherit;
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.hero-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-gallery__slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.hero-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 42px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-gallery__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: center;
  z-index: 2;
}

.hero-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.hero-gallery__dot--active {
  width: 20px;
  border-radius: 3px;
  background: var(--clr-marigold);
}

/* ============================================================
   10b. SHOWCASE (photo strip) (photo strip)
   ============================================================ */
.showcase {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--clr-cream);
  overflow: hidden;
}

.showcase__header {
  margin-bottom: var(--space-lg);
}

.showcase__wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.showcase__track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 0 8px;
  animation: showcase-scroll 35s linear infinite;
}

.showcase__track:hover {
  animation-play-state: paused;
}

.showcase--empty .showcase__track {
  display: none;
}

@keyframes showcase-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.showcase__item {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.showcase__item:hover img {
  transform: scale(1.07);
}

.showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  font-size: 0.7rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase__empty-hint {
  text-align: center;
  color: var(--clr-text-light);
  font-size: 0.9rem;
  padding: var(--space-lg) 0;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
/* ─── FOOTER ─── */
.site-footer {
  background: linear-gradient(160deg, #130801 0%, #1e0d04 50%, #160901 100%);
  color: rgba(245, 232, 208, 0.72);
  padding: var(--space-2xl) 0 0;
  position: relative;
  overflow: hidden;
}

/* Ambient warm glow near top */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,160,23,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Elegant single-pixel gold top border */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.55) 25%, rgba(212,160,23,0.55) 75%, transparent);
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* Brand column */
.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-marigold);
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: 0.86rem;
  color: rgba(245, 232, 208, 0.42);
  line-height: 1.78;
  max-width: 310px;
  margin-bottom: var(--space-lg);
}

.footer__craft-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(212,160,23,0.65);
}

.footer__craft-badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-marigold);
  opacity: 0.65;
  flex-shrink: 0;
}

/* Nav column */
.footer__nav-title,
.footer__contact-title {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,160,23,0.6);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(212,160,23,0.13);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link {
  font-size: 0.87rem;
  color: rgba(245, 232, 208, 0.5);
  transition: color var(--transition-fast), gap var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer__nav-link::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: rgba(212,160,23,0.38);
  transition: width var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
}

.footer__nav-link:hover { color: rgba(212,160,23,0.88); }

.footer__nav-link:hover::before {
  width: 20px;
  background: var(--clr-marigold);
}

/* Contact column */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
}

.footer__contact-icon-svg {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.18);
  background: rgba(212,160,23,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-marigold);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__contact-icon-svg svg {
  width: 14px;
  height: 14px;
}

.footer__contact-link {
  color: rgba(245, 232, 208, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  line-height: 1.5;
  margin-top: 6px;
}

.footer__contact-link:hover { color: var(--clr-marigold); }

.footer__contact-address {
  color: rgba(245, 232, 208, 0.5);
  line-height: 1.65;
  font-size: 0.83rem;
  margin-top: 4px;
}

/* Thin gold divider */
.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.18) 30%, rgba(212,160,23,0.18) 70%, transparent);
  margin: 0;
}

/* Bottom bar */
.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.footer__artisan-line {
  font-size: 0.8rem;
  color: rgba(212,160,23,0.42);
  letter-spacing: 0.07em;
  font-style: italic;
}

.footer__copy {
  font-size: 0.74rem;
  color: rgba(245, 232, 208, 0.22);
}

/* ============================================================
   12. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Scroll-reveal utility (JS will add .reveal class + trigger .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   12b. HERO PILLS — 3 compact buttons always in one row
   ============================================================ */
.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* ─── Hero CTA Buttons — ultra-premium luxury ─── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: inherit;
  border-radius: 6px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.25s ease, color 0.2s ease;
}

/* Luxury shimmer sweep on hover */
.hero-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.65s ease;
}
.hero-pill:hover::before { left: 140%; }
.hero-pill:hover { transform: translateY(-3px) scale(1.02); }
.hero-pill:active { transform: translateY(-1px) scale(1.005); transition-duration: 0.08s; }

/* Explore — deep mahogany with warm gold text */
.hero-pill--explore {
  background: linear-gradient(145deg, #2f1508 0%, #4a2010 45%, #6b3018 100%);
  color: #f2c46b;
  border-color: rgba(212,160,23,0.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 4px 14px rgba(47,21,8,0.42),
    0 14px 42px rgba(47,21,8,0.22);
}
.hero-pill--explore:hover {
  color: #ffd98a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 6px 22px rgba(47,21,8,0.52),
    0 22px 58px rgba(47,21,8,0.3);
}

/* WhatsApp — dark sage elegance (not loud green) */
.hero-pill--whatsapp {
  background: linear-gradient(145deg, #152d1f 0%, #243d2d 45%, #2e5038 100%);
  color: #9dcfb2;
  border-color: rgba(80,170,100,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 4px 14px rgba(21,45,31,0.38),
    0 14px 40px rgba(21,45,31,0.2);
}
.hero-pill--whatsapp:hover {
  color: #c2e8d0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 6px 20px rgba(21,45,31,0.48),
    0 20px 52px rgba(21,45,31,0.26);
}

/* Products — deep antique brass/gold */
.hero-pill--products {
  background: linear-gradient(145deg, #6b4800 0%, #956410 45%, #b87d1a 100%);
  color: #fff3d6;
  border-color: rgba(212,160,23,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 4px 14px rgba(107,72,0,0.44),
    0 14px 42px rgba(107,72,0,0.22);
}
.hero-pill--products:hover {
  color: #fff8e8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 6px 22px rgba(107,72,0,0.54),
    0 22px 58px rgba(107,72,0,0.3);
}

/* ============================================================
   13. RESPONSIVE — TABLET (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  :root {
    --container-pad: var(--space-xl);
  }

  /* 3 cards at tablet — cards are compact so this fits well */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   14. RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
/* Mobile refinements for artisan collection headings */
@media (max-width: 480px) {
  .product-section .section-header__title,
  .categories .section-header__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    letter-spacing: 0.04em;
  }
}
@media (min-width: 1024px) {
  :root {
    --container-pad: var(--space-xl);
  }

  /* Nav — roomier padding on desktop */
  .nav {
    padding: 16px var(--space-xl);
  }
  /* Match nav links height to the taller desktop nav bar */
  .nav__links {
    height: 58px;
  }

  /* Hero — 2-column grid: head+body on left, gallery on right */
  .hero {
    display: grid;
    grid-template-columns: 1fr clamp(320px, 40vw, 500px);
    grid-template-rows: auto 1fr;
    grid-template-areas: "head visual" "body visual";
    text-align: left;
    align-items: start;
    column-gap: clamp(var(--space-xl), 5vw, 80px);
    row-gap: var(--space-xl);
    padding: calc(80px + var(--space-xl)) var(--space-xl) var(--space-xl);
  }

  .hero__head {
    grid-area: head;
    max-width: 520px;
  }

  .hero__body {
    grid-area: body;
    max-width: 520px;
    align-items: flex-start;
    align-self: start;
  }

  .hero__visual {
    grid-area: visual;
    width: 100%;
    max-width: 500px;
    align-self: center;
  }

  .hero__brand-rule {
    margin-inline: 0;
  }

  .hero__visual-label {
    align-self: flex-start;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__stats {
    justify-content: flex-start;
  }

  /* Categories — 4 across */
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Products — 4 across on desktop */
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Trust — 4 across on desktop */
  .trust-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Testimonials — 3 across on desktop */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact — 3 across on desktop */
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Footer — 3 cols */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    padding-bottom: var(--space-2xl);
  }
}

/* ============================================================
   15. RESPONSIVE — LARGE DESKTOP (≥ 1280px)
   ============================================================ */
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* ============================================================
   16. SCROLLBAR STYLING (Webkit)
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-cream-dark); }
::-webkit-scrollbar-thumb {
  background: var(--clr-wood-light);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-wood-mid); }

/* ============================================================
   17. FOCUS STYLES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--clr-marigold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   18. SELECTION COLOR
   ============================================================ */
::selection {
  background: var(--clr-marigold);
  color: var(--clr-wood-dark);
}

/* ============================================================
   19. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero pills — slightly tighter on tablet/mobile */
  .hero__actions {
    gap: 8px;
  }
  .hero-pill {
    padding: 11px 22px;
    font-size: 0.69rem;
    letter-spacing: 0.11em;
  }

  /* Hero trust strip — centered on mobile/tablet */
  .hero__trust {
    align-self: center;
    max-width: 100%;
  }

  /* Categories — 2 cols on mobile is already default; keep it */
  .categories__grid {
    gap: var(--space-md);
  }
  .category-card__title {
    font-size: 1rem;
  }

  /* Product cards — tighter on mobile */
  .product-card__name {
    font-size: 1.05rem;
  }

  /* Section headers — tighter spacing */
  .section-header {
    margin-bottom: var(--space-lg);
  }

  /* Showcase — smaller items */
  .showcase__item {
    width: 140px;
    height: 140px;
  }

  /* Footer — single column on mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  .footer__nav-list { justify-content: center; }
  .footer__tagline { margin-left: auto; margin-right: auto; }
  .footer__contact-item { justify-content: center; }

  /* Trust — 2x2 grid on mobile */
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-item { align-items: center; text-align: center; }

  /* Testimonials — single col on mobile */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact — single col on mobile */
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   20. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Hero title sizing */
  h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Hero pills — compact on small phones */
  .hero__actions {
    gap: 6px;
  }
  .hero-pill {
    padding: 10px 17px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    gap: 5px;
  }

  /* Hero stats — tighter */
  .hero__stat-num {
    font-size: 1.25rem;
  }
  .hero__stats {
    gap: var(--space-md);
  }

  /* Hero trust strip — compact on small phones */
  .hero__trust {
    padding: 10px 12px 10px 10px;
    gap: 9px;
    border-radius: 12px;
  }
  .hero__trust-icon-ring {
    width: 30px;
    height: 30px;
  }
  .hero__trust-icon-ring svg {
    width: 13px;
    height: 13px;
  }
  .hero__trust-copy {
    font-size: 0.76rem;
  }
  .hero__trust-live-badge {
    display: none;
  }

  /* Hero gallery — shorter on small phones */
  .hero-gallery {
    aspect-ratio: 3 / 2;
  }

  /* Product grid — tighter gap */
  .product-grid {
    gap: 10px;
  }

  /* Discount badge — smaller on small phones so it fits the card */
  .product-card__discount {
    width: 40px;
    height: 40px;
    bottom: 8px;
    left: 8px;
  }
  .pcd-num { font-size: 0.68rem; }
  .pcd-lbl { font-size: 0.38rem; letter-spacing: 0.08em; }

  /* Nav — compact on small phones */
  .nav {
    padding: 10px var(--space-md);
  }

  /* Section dividers */
  .section-divider {
    margin: var(--space-xl) 0;
  }

  /* Showcase */
  .showcase__item {
    width: 110px;
    height: 110px;
  }

  /* Trust — still 2 cols on tiny phones */
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-item {
    padding: 22px 18px 20px;
  }
  .trust-item__desc {
    font-size: 0.8rem;
  }
  /* Contact cards — tighter on small phones */
  .contact-method-card {
    padding: 18px 16px;
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON (legacy — kept for any pages that still use it)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65); }
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; width: 46px; height: 46px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   LIVE VIDEO PREVIEW SECTION
   ============================================================ */
.live-preview-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, #050e07 0%, #0a1f0e 40%, #071509 70%, #030b05 100%);
  position: relative;
  overflow: hidden;
}

/* Ambient forest glow — deep green + gold accents */
.live-preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%,  rgba(30, 110, 55, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 5%  80%,   rgba(212,160,23, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 95% 80%,   rgba(20, 90,  40, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 50% 105%,  rgba(212,160,23, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.live-preview-section__inner {
  position: relative;
  z-index: 1;
}

/* ── Centered header block ── */
.live-preview__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.live-preview__header .live-preview__subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Scrolling image strip ── */
.lp-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 6px 0 var(--space-xl);
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.lp-strip__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lp-strip-scroll 28s linear infinite;
}

.lp-strip__track:hover {
  animation-play-state: paused;
}

.lp-strip__item {
  width: 170px;
  height: 128px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(212,160,23,0.16);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.lp-strip__item:hover {
  border-color: rgba(212,160,23,0.45);
  transform: translateY(-3px);
}

.lp-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lp-strip__item:hover img {
  transform: scale(1.07);
}

/* Skeleton shimmer while images load */
.lp-strip__item--skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 100%
  );
  background-size: 200% 100%;
  animation: lp-skeleton-shimmer 1.7s ease-in-out infinite;
}

@keyframes lp-skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes lp-strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header ── */
.live-preview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  padding: 5px 14px;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 999px;
  background: rgba(212,160,23,0.06);
}

.live-preview__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.live-preview__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #f5e8d0;
  margin: 0 0 var(--space-md);
}

.live-preview__title em {
  font-style: italic;
  background: linear-gradient(135deg, #D4A017 0%, #F5C518 50%, #c88a10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live-preview__subtitle {
  font-size: 1.05rem;
  color: rgba(245,232,208,0.62);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 var(--space-xl);
}

/* ── Two-column layout ── */
.live-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 820px) {
  .live-preview__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Feature points ── */
.live-preview__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-xl);
}

.lp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.034);
  border: 1px solid rgba(212,160,23,0.10);
  border-left: 3px solid rgba(212,160,23,0.45);
  border-radius: var(--radius-md);
  transition: background 0.22s ease, border-left-color 0.22s ease, transform 0.22s ease;
}

.lp-feature:hover {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.lp-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,160,23,0.09);
  border: 1px solid rgba(212,160,23,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-marigold);
}

.lp-feature__icon svg { width: 16px; height: 16px; }

.lp-feature__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245,232,208,0.82);
  line-height: 1.4;
}

/* ── Action buttons ── */
.live-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background    0.24s ease,
    box-shadow    0.24s ease,
    transform     0.18s ease,
    border-color  0.24s ease;
}

.lp-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Primary — warm gold */
.lp-btn--primary {
  background: linear-gradient(135deg, #c8880e 0%, #D4A017 55%, #e8b820 100%);
  color: #1a0800;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 18px rgba(212,160,23,0.35), 0 0 0 0 rgba(212,160,23,0);
}

.lp-btn--primary:hover {
  background: linear-gradient(135deg, #d49412 0%, #e8b820 55%, #f5c518 100%);
  box-shadow: 0 6px 28px rgba(212,160,23,0.55), 0 0 20px rgba(212,160,23,0.22);
  transform: translateY(-2px);
}

/* Secondary — WhatsApp green */
.lp-btn--whatsapp {
  background: rgba(37,211,102,0.10);
  color: #4ad87a;
  border: 1.5px solid rgba(37,211,102,0.30);
}

.lp-btn--whatsapp:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.55);
  box-shadow: 0 4px 20px rgba(37,211,102,0.22);
  transform: translateY(-2px);
}

/* Tertiary — subtle call */
.lp-btn--call {
  background: rgba(255,255,255,0.05);
  color: rgba(245,232,208,0.72);
  border: 1.5px solid rgba(245,232,208,0.14);
}

.lp-btn--call:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(245,232,208,0.28);
  color: #f5e8d0;
  transform: translateY(-2px);
}

/* ── Right column: glass card ── */
.live-preview__card {
  background: rgba(255,255,255,0.042);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,160,23,0.16);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.live-preview__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,160,23,0.6) 40%, rgba(212,160,23,0.6) 60%, transparent 100%);
  border-radius: 20px 20px 0 0;
}

.lp-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212,160,23,0.10);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.lp-card__icon svg { width: 26px; height: 26px; }

.lp-card__label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin: 0 0 10px;
}

.lp-card__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #f5e8d0;
  line-height: 1.2;
  margin: 0 0 12px;
}

.lp-card__desc {
  font-size: 0.88rem;
  color: rgba(245,232,208,0.55);
  line-height: 1.65;
  margin: 0 0 28px;
}

.lp-card__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.lp-card__step {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.82rem;
  color: rgba(245,232,208,0.70);
  font-weight: 500;
}

.lp-card__step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212,160,23,0.13);
  border: 1px solid rgba(212,160,23,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.lp-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.2), transparent);
  margin: 24px 0;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .live-preview__card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .live-preview__title { font-size: 1.75rem; }
  .live-preview__actions { flex-direction: column; align-items: stretch; }
  .lp-btn { justify-content: center; }
}

/* ============================================================
   FLOATING LIVE PREVIEW BUTTON
   ============================================================ */
.lp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px 0 16px;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, #1c0900 0%, #341400 45%, #280f00 100%);
  border: 1.5px solid rgba(212,160,23,0.45);
  box-shadow:
    0 6px 28px rgba(0,0,0,0.55),
    0 2px 8px  rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,220,100,0.15);
  color: #f5e4c0;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transition:
    background    0.28s ease,
    box-shadow    0.28s ease,
    transform     0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color  0.28s ease;
  animation:
    lp-float-rise 0.6s  cubic-bezier(0.34, 1.56, 0.64, 1) both,
    lp-attention  5.5s  2.2s ease-in-out infinite;
}

/* Periodic shimmer sweep across the button */
.lp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,220,100,0.13), transparent);
  transform: skewX(-18deg);
  animation: lp-shimmer 5.5s 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lp-float-rise {
  from { opacity: 0; transform: translateY(28px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes lp-attention {
  0%, 65%, 100% {
    box-shadow:
      0 6px 28px rgba(0,0,0,0.55),
      0 2px 8px  rgba(0,0,0,0.35),
      0 0 0 0    rgba(212,160,23,0),
      inset 0 1px 0 rgba(255,220,100,0.15);
  }
  32% {
    box-shadow:
      0 6px 28px rgba(0,0,0,0.55),
      0 2px 8px  rgba(0,0,0,0.35),
      0 0 22px 6px rgba(212,160,23,0.22),
      inset 0 1px 0 rgba(255,220,100,0.15);
  }
}

@keyframes lp-shimmer {
  0%, 100% { left: -60%;  opacity: 0; }
  8%        { opacity: 1; }
  38%       { left: 130%; opacity: 0; }
  39%, 99%  { left: 130%; opacity: 0; }
}

.lp-float:hover {
  background: linear-gradient(135deg, #2e1200 0%, #501e00 45%, #3c1600 100%);
  border-color: rgba(212,160,23,0.88);
  box-shadow:
    0 10px 36px rgba(0,0,0,0.62),
    0 0 28px    rgba(212,160,23,0.26),
    0 0 0 4px   rgba(212,160,23,0.1),
    inset 0 1px 0 rgba(255,220,100,0.22);
  transform: translateY(-3px) scale(1.04);
  animation-play-state: paused;
}

.lp-float:active {
  transform: translateY(1px) scale(0.97);
  box-shadow:
    0 2px 10px rgba(0,0,0,0.5),
    0 0 10px   rgba(212,160,23,0.15),
    inset 0 2px 5px rgba(0,0,0,0.35),
    inset 0 1px 0   rgba(255,220,100,0.08);
  transition-duration: 0.08s;
}

.lp-float__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.24) 0%, rgba(212,160,23,0.08) 100%);
  border: 1.5px solid rgba(212,160,23,0.55);
  box-shadow: 0 0 10px rgba(212,160,23,0.18), inset 0 1px 0 rgba(255,220,100,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lp-float__icon svg { width: 14px; height: 14px; }

.lp-float__label {
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.lp-float__pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  z-index: 1;
  animation: lp-pulse 1.8s ease-in-out infinite;
}

.lp-float__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.85);
  animation: lp-ripple 1.8s ease-in-out infinite;
}

@keyframes lp-ripple {
  0%   { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0;   }
}

/* Hide text on very small screens — show icon only */
@media (max-width: 380px) {
  .lp-float {
    padding: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
    bottom: 16px;
    right: 16px;
  }
  .lp-float__label, .lp-float__pulse { display: none; }
  .lp-float__icon { width: 36px; height: 36px; }
  .lp-float__icon svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
  .lp-float { bottom: 16px; right: 16px; }
}
