/* ==========================================================================
   ALQUDRAT — MAIN STYLESHEET
   Design tokens, layout, components, floating animations, responsive rules
   ========================================================================== */

:root{
  /* ---- brand palette (sampled from brand video) ---- */
  --cream:        #FBF8ED;
  --cream-2:      #FDFBF3;
  --paper:        #FFFFFF;
  --ink:          #2B241C;
  --ink-soft:     #6B6459;
  --forest:       #1B5E2C;
  --forest-2:     #103A1A;
  --gold-1:       #FFDE59;
  --gold-2:       #F5A623;
  --gold-3:       #E8721D;
  --terracotta:   #E8721D;
  --terracotta-2: #C2590F;
  --leaf:         #3FA34D;
  --leaf-dark:    #1B7A3D;
  --line:         #ECE4D3;
  --line-dark:    rgba(255,255,255,.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(43,36,28,.06);
  --shadow-md: 0 12px 32px rgba(43,36,28,.10);
  --shadow-lg: 0 24px 60px rgba(43,36,28,.16);

  --container: 1240px;
  --gap: 24px;

  --ease: cubic-bezier(.22,1,.36,1);
  --speed: .5s;

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- reset ---- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1em; }
h1,h2,h3,h4,h5{
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
  letter-spacing: -.01em;
}
p{ margin:0 0 1em; }
.container{
  width:100%;
  max-width: var(--container);
  margin-inline:auto;
  padding-inline: 24px;
  position:relative;
  z-index: 3; /* keep content above ambient floaters/blobs/spotlight (z-index 0-2) */
}
.screen-reader-text{
  position:absolute !important;
  clip:rect(1px,1px,1px,1px);
  width:1px;height:1px;overflow:hidden;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---- section spacing / headings ---- */
.section{ padding: 100px 0; position:relative; }
.section--tight{ padding: 70px 0; }
.section--dark{ background: linear-gradient(160deg,var(--forest),var(--forest-2)); color: #EFEAD9; }
.section--dark h1,.section--dark h2,.section--dark h3{ color:#F7F2E2; }
.section--dark .section-sub{ color: rgba(239,234,217,.72); }
.section--alt{ background: var(--cream-2); }
.section--overflow-visible{ overflow: visible; }

.section-head{ text-align:center; max-width:720px; margin:0 auto 56px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold-3);
  margin-bottom:14px;
}
.section--dark .eyebrow{ color: var(--gold-1); }
.section-title{ font-size: clamp(2rem, 3.6vw, 2.85rem); margin-bottom:14px; }
.section-title em{ font-style:normal; background:linear-gradient(90deg,var(--gold-2),var(--terracotta)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.section-sub{ color: var(--ink-soft); font-size:1.08rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight:600; font-size:.95rem;
  border:1px solid transparent;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed) var(--ease), color var(--speed) var(--ease);
  white-space:nowrap;
  will-change: transform;
}
.btn svg{ width:16px; height:16px; transition: transform .35s var(--ease); flex-shrink:0; }
.btn:hover svg{ transform: translateX(4px); }
.btn-gold{
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#3A2405;
  box-shadow: 0 10px 24px rgba(229,143,14,.32);
}
.btn-gold:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(229,143,14,.42); }
.btn-outline{
  background: var(--cream-2); border:2px solid var(--ink); color: var(--ink);
  box-shadow: 0 2px 10px rgba(43,36,28,.06);
  padding: 14px 27px;
}
.btn-outline:hover{ background: var(--ink); color:#F7F2E2; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(43,36,28,.28); }
.section--dark .btn-outline{ background:transparent; border-color: #F7F2E2; color:#F7F2E2; box-shadow:none; }
.section--dark .btn-outline:hover{ background: #F7F2E2; color: var(--ink); }
.btn-sm{ padding:10px 20px; font-size:.85rem; }
.btn-block{ width:100%; }

/* ==========================================================================
   FLOATING DECORATIVE SPHERES (advanced ambient animation)
   ========================================================================== */
/* ==========================================================================
   AMBIENT BACKGROUND LAYERS (advanced, multi-layered motion system)
   Layer order (back to front): honeycomb watermark → morphing blobs →
   spotlight glow → small floating spheres → page content.
   All layers are pointer-events:none and sit at z-index 0-2, while
   .container content sits at z-index 3, so nothing ever overlaps text.
   ========================================================================== */

/* ---- 1. honeycomb watermark (ties back to the brand logo) ---- */
.honeycomb-bg{
  position:absolute; inset:-10%; z-index:0; pointer-events:none;
  opacity:.05; overflow:hidden;
  animation: honeySpin 140s linear infinite;
}
.section--dark .honeycomb-bg{ opacity:.07; }
.honeycomb-bg svg{ width:100%; height:100%; }
@keyframes honeySpin{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

/* ---- 2. morphing ambient blobs (soft aurora glow, not a plain circle) ---- */
.blob-layer{ position:absolute; inset:0; z-index:1; overflow:hidden; pointer-events:none; }
.blob{
  position:absolute;
  filter: blur(40px);
  opacity:.5;
  mix-blend-mode: normal;
  animation: blobMorph var(--mdur,14s) ease-in-out infinite, blobDrift var(--ddur,16s) ease-in-out infinite;
  will-change: border-radius, transform;
}
.blob--gold{ background: radial-gradient(circle at 35% 30%, rgba(255,212,135,.9), rgba(229,143,14,.55) 60%, transparent 78%); }
.blob--terracotta{ background: radial-gradient(circle at 35% 30%, rgba(217,140,111,.85), rgba(138,63,42,.5) 60%, transparent 78%); }
.blob--sage{ background: radial-gradient(circle at 35% 30%, rgba(140,180,110,.6), rgba(22,50,15,.4) 60%, transparent 78%); }
@keyframes blobMorph{
  0%,100%{ border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%; }
  33%{ border-radius: 58% 42% 35% 65% / 55% 65% 35% 45%; }
  66%{ border-radius: 65% 35% 45% 55% / 40% 60% 40% 60%; }
}
@keyframes blobDrift{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(2%,-3%,0) scale(1.06); }
}

/* ---- 3. cursor-follow spotlight (dark sections only) ---- */
.spotlight{
  position:absolute; inset:0; z-index:2; pointer-events:none;
  background: radial-gradient(380px circle at var(--sx,50%) var(--sy,30%), rgba(255,212,135,.14), transparent 68%);
  opacity:0; transition: opacity .5s var(--ease);
}
.section--dark:hover .spotlight,
.section--dark.is-touch .spotlight{ opacity:1; }

/* ---- 4. small floating shapes: mini honeycomb cells + dates (was: plain spheres) ---- */
.floaters{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:1; }
.floater{
  position:absolute;
  will-change: transform;
  animation: floatY var(--dur,7s) cubic-bezier(.45,0,.55,1) infinite;
  animation-delay: var(--delay,0s);
}
.floater::before,
.floater::after{ content:""; position:absolute; inset:0; display:block; }

/* -- honeycomb cell: a small hexagon with a soft inner cell rim, gently spinning -- */
.floater--gold::before{
  background: linear-gradient(135deg, #FFEFC7 0%, var(--gold-1) 42%, var(--gold-3) 100%);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0% 50%);
  box-shadow: 0 16px 32px rgba(229,143,14,.32);
  animation: hexSpin 16s linear infinite;
}
.floater--gold::after{
  background: transparent;
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0% 50%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
  animation: hexSpin 16s linear infinite;
}

/* -- date fruit: an elongated, wrinkled-skin oval in deep amber-brown -- */
.floater--terracotta::before{
  background: radial-gradient(circle at 32% 26%, #C48A52, #8A5A2E 55%, #5C3A1E 100%);
  border-radius: 50%;
  transform: scaleY(.6) rotate(-8deg);
  box-shadow: 0 16px 30px rgba(92,58,30,.4), inset -5px -6px 10px rgba(35,20,10,.35), inset 4px 5px 8px rgba(215,165,110,.35);
  animation: dateSway 4.5s ease-in-out infinite;
}
.floater--terracotta::after{
  background: repeating-linear-gradient(100deg, transparent 0, transparent 3px, rgba(35,20,10,.18) 3px, rgba(35,20,10,.18) 4px);
  border-radius: 50%;
  transform: scaleY(.6) rotate(-8deg);
  mix-blend-mode: multiply;
  animation: dateSway 4.5s ease-in-out infinite;
}

.floater--outline{
  background:transparent;
  border-radius:50%;
  border:2px solid var(--gold-2);
  opacity:.5;
}
.floater--outline::before,
.floater--outline::after{ content:none; } /* plain dashed/solid circle — no pseudo-element shape needed */
@keyframes floatY{
  0%,100%{ transform: translate3d(0,0,0) rotate(0deg); }
  50%{ transform: translate3d(var(--driftx,10px), var(--drifty,-26px), 0) rotate(8deg); }
}
@keyframes hexSpin{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}
@keyframes dateSway{
  0%,100%{ transform: scaleY(.6) rotate(-8deg); }
  50%{ transform: scaleY(.6) rotate(6deg); }
}
@keyframes floatSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
.floater-ring{
  position:absolute; border-radius:50%;
  border:1.5px dashed rgba(229,143,14,.35);
  animation: floatSpin 40s linear infinite;
}

/* ==========================================================================
   3D TILT / MAGNETIC CARDS (advanced pointer-driven interaction)
   ========================================================================== */
.tilt{
  transition: transform .18s ease-out, box-shadow var(--speed) var(--ease), border-color var(--speed);
  transform-style: preserve-3d;
}
.tilt-glare{
  position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,.5), transparent 55%);
  opacity:0; transition: opacity .25s ease-out; mix-blend-mode:overlay;
}
.tilt:hover .tilt-glare{ opacity:.55; }

/* ==========================================================================
   GRADIENT TEXT SHIMMER (emphasized headline words)
   ========================================================================== */
.section-title em{
  background-size: 220% auto;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText{
  0%{ background-position: 0% center; }
  100%{ background-position: -220% center; }
}

/* ==========================================================================
   COUNT-UP STAT NUMBERS
   ========================================================================== */
[data-count-to]{ font-variant-numeric: tabular-nums; }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index:200;
  padding: 18px 0;
  transition: background var(--speed) var(--ease), box-shadow var(--speed) var(--ease), padding var(--speed) var(--ease);
  background: rgba(251,248,237,0);
}
.site-header.is-scrolled{
  background: rgba(251,248,237,.92);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(43,36,28,.08);
  padding: 12px 0;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-size:1.4rem; color:var(--ink); }
.brand img{ height:64px; width:auto; transition: transform .4s var(--ease); }
.brand:hover img{ transform: rotate(-8deg) scale(1.05); }
.main-nav ul{ display:flex; align-items:center; gap:34px; }
.main-nav a{
  font-size:.98rem; font-weight:500; color: var(--ink); position:relative; padding:6px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background: linear-gradient(90deg,var(--leaf),var(--leaf-dark));
  transition: right var(--speed) var(--ease);
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after{ right:0; }
.main-nav .current-menu-item > a{ color: var(--leaf-dark); }
.header-actions{ display:flex; align-items:center; gap:14px; }
.hamburger{
  display:none; flex-direction:column; gap:5px; width:38px; height:38px;
  align-items:center; justify-content:center; border:none; background:transparent;
}
.hamburger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition: all .35s var(--ease); }
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0 0 0 auto; width:min(86vw,360px); height:100vh;
  background: var(--cream); z-index:300; padding:30px 28px;
  transform: translateX(100%); transition: transform .5s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
  overflow-y:auto;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:36px; }
.mobile-nav-close{ background:none; border:none; font-size:1.6rem; line-height:1; color:var(--ink); }
.mobile-nav ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-nav a{ display:block; padding:14px 4px; font-size:1.15rem; font-family:var(--font-head); border-bottom:1px solid var(--line); }
.mobile-nav .current-menu-item > a{ color: var(--leaf-dark); border-bottom-color: var(--leaf-dark); }
.nav-overlay{
  position:fixed; inset:0; background:rgba(22,50,15,.45); z-index:250;
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease);
  backdrop-filter: blur(2px);
}
.nav-overlay.is-open{ opacity:1; pointer-events:auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  padding: 90px 0 0;
  background: radial-gradient(ellipse 900px 500px at 50% 0%, #FCEFC9 0%, var(--cream) 70%);
}
.hero-inner{ position:relative; z-index:5; text-align:center; max-width:900px; margin:0 auto; padding-bottom:70px; }
.hero-title{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}
.hero-title .stroke{ -webkit-text-stroke: 1.5px var(--ink); color:transparent; }
.hero-sub{ font-size:1.15rem; color:var(--ink-soft); max-width:640px; margin:0 auto 34px; }
.hero-cta{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:26px; }
.hero-trust{ display:flex; justify-content:center; gap:28px; flex-wrap:wrap; font-size:.9rem; color: var(--ink-soft); }
.hero-trust li{ display:flex; align-items:center; gap:7px; }
.hero-trust svg{ width:16px; height:16px; color: var(--gold-3); }

/* ==========================================================================
   ANNOUNCEMENT BAR (moving line above the header)
   ========================================================================== */
.announce-bar{
  background: linear-gradient(90deg, var(--forest-2), var(--forest));
  color: var(--gold-1);
  overflow:hidden; position:relative; z-index:60; white-space:nowrap;
}
.announce-track{
  display:inline-flex; width:max-content;
  animation: announce-scroll var(--announce-speed, 22s) linear infinite;
}
.announce-bar:hover .announce-track{ animation-play-state: paused; }
.announce-item{
  display:inline-flex; align-items:center; gap:10px;
  padding: 9px 40px; font-size:.82rem; font-weight:600;
  letter-spacing:.03em; text-transform:uppercase; white-space:nowrap;
}
.announce-item .dot{
  width:5px; height:5px; border-radius:50%; background: var(--gold-2); flex:none;
}
@keyframes announce-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (max-width:640px){
  .announce-item{ padding: 8px 22px; font-size:.72rem; }
}

/* marquee */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background: var(--paper); overflow:hidden; position:relative; z-index:5;
}
.marquee-track{ display:flex; width:max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{ display:flex; align-items:center; gap:10px; padding: 18px 34px; font-size:.92rem; font-weight:500; color:var(--ink-soft); white-space:nowrap; }
.marquee-item svg{ width:14px; height:14px; color:var(--gold-2); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   ICON FEATURE CARDS ("Three Ways to Indulge")
   ========================================================================== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap); }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:var(--gap); }
.feature-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:38px 30px; transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed);
}
.feature-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color:transparent; }
.feature-icon{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); margin-bottom:22px;
  transition: transform var(--speed) var(--ease);
}
.feature-card:hover .feature-icon{ transform: rotate(-8deg) scale(1.08); }
.feature-icon svg{ width:26px; height:26px; color:#3A2405; }
.feature-card h3{ font-size:1.3rem; margin-bottom:8px; }
.feature-card p{ color:var(--ink-soft); margin-bottom:0; font-size:.96rem; }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap); }
.product-card{
  background:var(--paper); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  position:relative; display:flex; flex-direction:column;
}
.product-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-media{ position:relative; aspect-ratio:4/3.1; overflow:hidden; background:#eee; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.09); }
.badge{
  position:absolute; top:16px; left:16px; z-index:2;
  padding:6px 14px; border-radius:var(--radius-pill); font-size:.72rem; font-weight:700; letter-spacing:.03em;
  background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); color:#3A2405;
}
.badge--rare{ background: linear-gradient(135deg,#E7B7A4,var(--terracotta)); color:#fff; }
.badge--limited{ background: var(--forest); color:#EFEAD9; }
.product-body{ padding:22px 24px 26px; flex:1; display:flex; flex-direction:column; }
.product-kicker{ font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-3); font-weight:700; margin-bottom:6px; }
.product-body h3{ font-size:1.2rem; margin-bottom:8px; }
.product-body p{ color:var(--ink-soft); font-size:.92rem; margin-bottom:18px; flex:1; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; }
.price{ font-family:var(--font-head); font-size:1.15rem; color:var(--ink); }
.price span{ font-size:.78rem; color:var(--ink-soft); font-family:var(--font-body); }
.icon-btn{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--cream-2); border:1px solid var(--line); transition: all var(--speed) var(--ease);
}
.icon-btn:hover{ background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); border-color:transparent; transform: rotate(90deg); }
.icon-btn svg{ width:18px; height:18px; }

/* ==========================================================================
   STORY / ABOUT SPLIT
   ========================================================================== */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.split-media{ position:relative; }
.split-media img{ border-radius:var(--radius-lg); box-shadow: var(--shadow-lg); }
.floating-badge{
  position:absolute; bottom:-24px; left:-24px; background:var(--forest); color:#F2EDDC;
  padding:22px 26px; border-radius:var(--radius-md); box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
}
.floating-badge .big{ font-family:var(--font-head); font-size:1.8rem; color: var(--gold-1); display:block; }
.floating-badge .small{ font-size:.82rem; opacity:.85; }
.split-copy .highlight{ color:var(--gold-3); }
.checklist{ margin-top:22px; display:flex; flex-direction:column; gap:12px; }
.checklist li{ display:flex; align-items:center; gap:10px; font-size:.96rem; }
.checklist svg{ width:18px; height:18px; color:#2E7D32; flex-shrink:0; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars{ display:flex; gap:4px; margin-bottom:14px; }
.stars svg{ width:16px; height:16px; color: var(--gold-2); }
.testimonial-card p{ color:var(--ink); font-style:italic; font-size:.98rem; }
.testimonial-who{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testimonial-who .avatar{
  width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--gold-1),var(--terracotta));
  display:flex; align-items:center; justify-content:center; font-family:var(--font-head); color:#fff; font-size:.95rem;
}
.testimonial-who .name{ font-weight:600; font-size:.9rem; }
.testimonial-who .loc{ font-size:.78rem; color:var(--ink-soft); }

/* ==========================================================================
   GIFTING CARDS
   ========================================================================== */
.gift-card{
  background:var(--paper); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}
.gift-card:hover{ transform: translateY(-8px); box-shadow:var(--shadow-lg); }
.gift-media{ aspect-ratio:16/8; overflow:hidden; }
.gift-media img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.gift-card:hover .gift-media img{ transform: scale(1.08); }
.gift-body{ padding:24px 26px 28px; }
.gift-body h3{ font-size:1.25rem; margin-bottom:8px; }
.gift-body > p{ color:var(--ink-soft); font-size:.93rem; margin-bottom:16px; }
.gift-list{ display:flex; flex-direction:column; gap:9px; margin-bottom:22px; }
.gift-list li{ display:flex; align-items:center; gap:8px; font-size:.9rem; }
.gift-list svg{ width:15px; height:15px; color:var(--gold-3); flex-shrink:0; }
.gift-foot{ display:flex; align-items:center; justify-content:space-between; }

/* ==========================================================================
   CTA BAND ("Perfect For")
   ========================================================================== */
.cta-band{ text-align:center; }
.pill-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; margin-top:36px; }
.pill{
  padding:12px 22px; border-radius:var(--radius-pill); border:1px solid var(--line-dark);
  font-size:.9rem; color:#EFEAD9; background: rgba(255,255,255,.04);
  transition: all var(--speed) var(--ease);
}
.pill:hover{ background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); color:#3A2405; border-color:transparent; transform: translateY(-4px); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list{ max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md);
  overflow:hidden; transition: box-shadow var(--speed);
}
.faq-item.is-open{ box-shadow: var(--shadow-md); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:20px 24px; background:none; border:none; text-align:left; font-size:1rem; font-weight:500; color:var(--ink);
}
.faq-q .plus{
  width:30px; height:30px; border-radius:50%; background:var(--cream-2); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; position:relative; transition: transform var(--speed) var(--ease), background var(--speed);
}
.faq-q .plus::before,.faq-q .plus::after{ content:""; position:absolute; background:var(--gold-3); border-radius:2px; }
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; transition: opacity var(--speed); }
.faq-item.is-open .plus{ background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); transform: rotate(180deg); }
.faq-item.is-open .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .45s var(--ease); }
.faq-a-inner{ padding: 0 24px 22px; color:var(--ink-soft); font-size:.95rem; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter-box{
  background: var(--paper); border-radius:var(--radius-lg); padding:50px; text-align:center;
  box-shadow: var(--shadow-md); max-width:680px; margin:0 auto; position:relative; overflow:hidden;
}
.newsletter-form{ display:flex; gap:12px; max-width:440px; margin:26px auto 0; }
.newsletter-form input[type=email]{
  flex:1; padding:15px 20px; border-radius:var(--radius-pill); border:1px solid var(--line); background:var(--cream-2);
}
.newsletter-form input[type=email]:focus{ outline:2px solid var(--gold-2); outline-offset:2px; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:1fr 1.2fr; gap:56px; align-items:flex-start; }
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; margin-bottom:26px; }
.contact-info-item .ico{
  width:46px; height:46px; border-radius:14px; background:var(--cream-2); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-item .ico svg{ width:20px; height:20px; color:var(--gold-3); }
.contact-info-item h4{ font-size:1rem; margin-bottom:2px; font-family:var(--font-body); font-weight:600; }
.contact-info-item p{ color:var(--ink-soft); font-size:.92rem; margin:0; }
.contact-form{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:36px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ margin-bottom:18px; }
.form-group label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:7px; }
.form-group input, .form-group textarea, .form-group select{
  width:100%; padding:13px 16px; border-radius:12px; border:1px solid var(--line); background:var(--cream-2);
  transition: border-color var(--speed);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus{ outline:none; border-color:var(--gold-2); background:#fff; }
.form-group textarea{ min-height:130px; resize:vertical; }
.form-group select{ cursor:pointer; }
.form-group select:disabled{ cursor:not-allowed; opacity:.75; }
.required-mark{ color:#C0392B; }
.optional-mark{ color:var(--ink-soft); font-weight:400; font-size:.8rem; }
.field-error{ display:none; color:#C0392B; font-size:.8rem; margin-top:6px; }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select{ border-color:#C0392B !important; background:#FBEAEA !important; }
.form-group.has-error .field-error{ display:block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: linear-gradient(160deg,var(--forest),var(--forest-2)); color:#D9D2BC; padding: 80px 0 26px; position:relative; overflow:hidden; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:60px; }
.footer-brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-size:1.4rem; color:#F7F2E2; margin-bottom:14px; }
.footer-brand img{ height:48px; }
.site-footer p{ color: rgba(217,210,188,.8); font-size:.92rem; }
.footer-col h4{ color:#F0C97A; font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; font-family:var(--font-body); font-weight:600; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:.92rem; color: rgba(217,210,188,.85); transition: color var(--speed), padding-left var(--speed); }
.footer-col a:hover{ color:#F0C97A; padding-left:4px; }
.footer-col li{ display:flex; align-items:center; gap:8px; font-size:.92rem; color:rgba(217,210,188,.85); }
.footer-col li svg{ width:15px; height:15px; color:#F0C97A; flex-shrink:0; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line-dark); display:flex; align-items:center; justify-content:center;
  transition: all var(--speed) var(--ease);
}
.footer-social a:hover{ background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); border-color:transparent; transform: translateY(-4px); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{ border-top:1px solid var(--line-dark); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; color:rgba(217,210,188,.6); }

/* back to top */
.to-top{
  position:fixed; right:24px; bottom:24px; z-index:150;
  width:48px; height:48px; border-radius:50%; border:none;
  background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); color:#3A2405;
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md);
  opacity:0; pointer-events:none; transform: translateY(12px);
  transition: all var(--speed) var(--ease);
}
.to-top.is-visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; }

/* ==========================================================================
   SCROLL-REVEAL ANIMATION SYSTEM
   ========================================================================== */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.15s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.25s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.35s; }

/* generic WP content areas (blog / default pages, kept minimal so Elementor pages stay clean) */
.entry-content{ max-width:760px; margin:0 auto; padding: 60px 24px; }
.entry-content h1,.entry-content h2,.entry-content h3{ margin-top:1.4em; }
.entry-content img{ border-radius:var(--radius-md); margin:1.4em 0; }
.entry-content a{ color:var(--gold-3); text-decoration:underline; }
.page-hero{ padding:70px 0 40px; text-align:center; }
.page-hero h1{ font-size:clamp(2rem,4vw,3rem); }

/* woocommerce-agnostic simple "shop now" anchor fallback */
.skip-link{ position:absolute; left:-9999px; top:0; background:var(--forest); color:#fff; padding:12px 20px; z-index:999; }
.skip-link:focus{ left:12px; top:12px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 900px){
  .main-nav, .header-actions .btn{ display:none; }
  .hamburger{ display:flex; }
  .split{ grid-template-columns:1fr; gap:40px; }
  .split-media{ order:1; }
  .contact-grid{ grid-template-columns:1fr; }
  .floating-badge{ left:16px; bottom:-20px; padding:16px 20px; }
}
@media (max-width: 720px){
  .section{ padding:64px 0; }
  .section-head{ margin-bottom:36px; }
  .grid-3, .grid-2, .product-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; }
  .hero{ padding-top:60px; }
  .form-row{ grid-template-columns:1fr; }
  .newsletter-form{ flex-direction:column; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .floater{ transform: scale(.7); }
  .blob{ filter: blur(26px); opacity:.35; }
  .honeycomb-bg{ opacity:.035; }
  .tilt{ transform:none !important; } /* tilt effect is mouse-driven; skip on touch */
}
@media (max-width: 480px){
  .footer-grid{ grid-template-columns:1fr; }
  .hero-trust{ flex-direction:column; align-items:center; gap:10px; }
}

/* ==========================================================================
   CART: header button, slide-in drawer, cart page, checkout, order complete
   ========================================================================== */
.cart-btn{
  position:relative; width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
  background:var(--cream-2); display:flex; align-items:center; justify-content:center; transition: all var(--speed) var(--ease);
}
.cart-btn:hover{ background: linear-gradient(135deg,var(--gold-1),var(--gold-2)); border-color:transparent; }
.cart-btn svg{ width:19px; height:19px; color:var(--ink); }
.cart-badge{
  position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; padding:0 4px; border-radius:999px;
  background: var(--leaf-dark); color:#fff; font-size:.68rem; font-weight:700; display:flex; align-items:center; justify-content:center;
}

.cart-overlay{
  position:fixed; inset:0; background:rgba(22,50,15,.45); z-index:350;
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease); backdrop-filter: blur(2px);
}
.cart-overlay.is-open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; inset:0 0 0 auto; width:min(92vw,420px); height:100vh; background:var(--paper); z-index:360;
  transform: translateX(100%); transition: transform .5s var(--ease); box-shadow:-20px 0 60px rgba(0,0,0,.18);
  display:flex; flex-direction:column;
}
.cart-drawer.is-open{ transform: translateX(0); }
.cart-drawer-head{
  display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line);
  font-family:var(--font-head); font-size:1.15rem;
}
.cart-drawer-head span{ display:flex; align-items:center; gap:10px; }
.cart-drawer-head svg{ width:20px; height:20px; color:var(--gold-3); }
.cart-drawer-body{ flex:1; overflow-y:auto; padding:20px 24px; }
.cart-drawer-foot{ padding:20px 24px 26px; border-top:1px solid var(--line); }
.cart-drawer-foot .btn{ margin-top:10px; }

.cart-empty{ color:var(--ink-soft); font-size:.94rem; text-align:center; padding:30px 10px; }

.cart-item{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); position:relative; }
.cart-item-media{ width:64px; height:64px; border-radius:12px; overflow:hidden; flex-shrink:0; background:var(--cream-2); }
.cart-item-media img{ width:100%; height:100%; object-fit:cover; }
.cart-item-ph{ width:100%; height:100%; background: linear-gradient(135deg,var(--gold-1),var(--terracotta)); }
.cart-item-body{ flex:1; min-width:0; }
.cart-item-title{ font-weight:600; font-size:.94rem; }
.cart-item-unit{ font-size:.78rem; color:var(--ink-soft); margin-bottom:8px; }
.cart-item-row{ display:flex; align-items:center; justify-content:space-between; margin-top:8px; }
.cart-item-price{ font-family:var(--font-head); font-size:.98rem; }
.cart-item-remove{
  background:none; border:none; color:var(--ink-soft); font-size:1.1rem; line-height:1; padding:4px 6px; align-self:flex-start;
}
.cart-item-remove:hover{ color:var(--terracotta); }

.qty-stepper{ display:flex; align-items:center; border:1px solid var(--line); border-radius:999px; overflow:hidden; }
.qty-stepper button{ width:28px; height:28px; background:var(--cream-2); border:none; font-size:1rem; line-height:1; cursor:pointer; }
.qty-stepper button:hover{ background:var(--gold-1); }
.qty-stepper .qty-input{
  width:36px; text-align:center; border:none; background:transparent; font-size:.9rem; padding:0;
  -moz-appearance:textfield;
}
.qty-stepper .qty-input::-webkit-outer-spin-button, .qty-stepper .qty-input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }

.cart-total-row{ display:flex; align-items:center; justify-content:space-between; font-family:var(--font-head); font-size:1.05rem; padding:10px 0; }
.cart-total-row--lg{ font-size:1.25rem; border-top:1px solid var(--line); margin-top:10px; padding-top:16px; }

.icon-btn.just-added, .btn.just-added{ animation: cart-pop .5s var(--ease); }
@keyframes cart-pop{ 0%{ transform:scale(1); } 40%{ transform:scale(1.15); } 100%{ transform:scale(1); } }

.btn[aria-disabled="true"]{ opacity:.45; pointer-events:none; }

/* full cart page */
.cart-page{ max-width:760px; margin:0 auto; }
.cart-list--page .cart-item{ padding:22px 0; }
.cart-page-summary{ margin-top:10px; }

/* checkout */
.checkout-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:48px; align-items:flex-start; }
.checkout-form textarea{ min-height:90px; }
.checkout-summary{ background:var(--cream-2); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; position:sticky; top:100px; }
.checkout-summary h3{ font-family:var(--font-head); font-size:1.2rem; margin-bottom:16px; }
.checkout-lines{ display:flex; flex-direction:column; gap:10px; }
.checkout-line{ display:flex; align-items:center; justify-content:space-between; font-size:.92rem; color:var(--ink); }
.checkout-line span:last-child{ color:var(--ink-soft); }

/* payment method (checkout) */
.payment-options{ display:flex; flex-direction:column; gap:10px; margin-top:6px; }
.payment-option{
  display:flex; align-items:center; gap:12px; padding:14px 16px; border:1px solid var(--line); border-radius:var(--radius-sm);
  background:var(--cream-2); cursor:pointer; transition: border-color var(--speed), background var(--speed);
}
.payment-option:has(input:checked), .payment-option.is-checked{ border-color:var(--gold-2); background:#fff; box-shadow:0 0 0 2px rgba(245,166,35,.18) inset; }
.payment-option input{ width:16px; height:16px; accent-color:var(--gold-2); flex-shrink:0; }
.payment-option-label{ display:flex; flex-direction:column; gap:2px; }
.payment-option-title{ font-weight:600; font-size:.92rem; }
.payment-option-sub{ font-size:.78rem; color:var(--ink-soft); }
.card-fields{ margin-top:16px; padding-top:16px; border-top:1px dashed var(--line); }
.card-fields[hidden]{ display:none; }

.payment-processing{
  position:fixed; inset:0; z-index:500; background:rgba(43,36,28,.55); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.payment-processing.is-open{ opacity:1; pointer-events:auto; }
.payment-processing-card{
  background:var(--paper); border-radius:var(--radius-lg); padding:36px 40px; text-align:center; box-shadow:var(--shadow-lg); max-width:320px;
}
.payment-spinner{
  width:40px; height:40px; margin:0 auto 16px; border-radius:50%; border:3px solid var(--line); border-top-color:var(--gold-2);
  animation: payment-spin .8s linear infinite;
}
@keyframes payment-spin{ to{ transform:rotate(360deg); } }
.payment-processing-card p{ font-size:.92rem; color:var(--ink-soft); margin:0; }
.payment-processing-card strong{ display:block; margin-bottom:6px; font-family:var(--font-head); font-size:1.05rem; color:var(--ink); }

/* order complete */
.order-complete-box{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-md); }
.order-complete-icon{
  width:64px; height:64px; border-radius:50%; background: linear-gradient(135deg,var(--leaf),var(--leaf-dark)); color:#fff;
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
}
.order-complete-icon svg{ width:30px; height:30px; }

@media (max-width: 900px){
  .checkout-grid{ grid-template-columns:1fr; }
  .checkout-summary{ position:static; }
}
@media (max-width: 480px){
  .cart-drawer{ width:100vw; }
}

/* ==========================================================================
   FLOATER MOTION VARIANTS — "flying" (bob + spin), and full-width
   "drift" crossings that travel behind the text (z-index 1 vs content 3)
   from one edge of the section to the other, looping forever.
   ========================================================================== */
.floater-icon{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color: var(--gold-2);
}
.floater--star .floater-icon{ color: var(--gold-1); filter: drop-shadow(0 6px 14px rgba(229,143,14,.35)); }
.floater--necklace .floater-icon,
.floater--bracelet .floater-icon{ color: var(--terracotta); opacity:.85; }
.floater--star::before,
.floater--star::after,
.floater--necklace::before,
.floater--necklace::after,
.floater--bracelet::before,
.floater--bracelet::after{ content:none; } /* these types render via SVG icon, not the pseudo-element shapes */

/* -- "float" (default): unchanged gentle bob in place -- */
.floater--m-float{ animation: floatY var(--dur,7s) cubic-bezier(.45,0,.55,1) infinite; animation-delay:var(--delay,0s); }

/* -- "fly": bobs + slowly spins/twinkles, a bit more lively than a plain float -- */
.floater--m-fly{ animation: floatFly var(--dur,6s) ease-in-out infinite; animation-delay:var(--delay,0s); }
@keyframes floatFly{
  0%{ transform: translate3d(0,0,0) rotate(0deg) scale(1); opacity:.75; }
  25%{ transform: translate3d(calc(var(--driftx,10px) * .6), calc(var(--drifty,-26px) * .5), 0) rotate(-12deg) scale(1.12); opacity:1; }
  50%{ transform: translate3d(var(--driftx,10px), var(--drifty,-26px), 0) rotate(10deg) scale(1); opacity:.85; }
  75%{ transform: translate3d(calc(var(--driftx,10px) * .3), calc(var(--drifty,-26px) * .8), 0) rotate(-6deg) scale(1.08); opacity:1; }
  100%{ transform: translate3d(0,0,0) rotate(0deg) scale(1); opacity:.75; }
}

/* -- "drift-lr" / "drift-rl": cross the ENTIRE section, left→right or
      right→left, gently bobbing/rotating as they go, then loop. Because
      .floaters sits at z-index:1 and .container content sits at
      z-index:3, these visibly pass behind headings/paragraphs. -- */
.floater--m-drift-lr,
.floater--m-drift-rl{ top: var(--top, 30%); }
.floater--m-drift-lr{ animation: driftLR var(--dur,18s) linear infinite; animation-delay:var(--delay,0s); }
.floater--m-drift-rl{ animation: driftRL var(--dur,18s) linear infinite; animation-delay:var(--delay,0s); }
@keyframes driftLR{
  0%{   left:-12%; transform: translateY(0) rotate(-6deg); opacity:0; }
  8%{   opacity:.9; }
  25%{  transform: translateY(-18px) rotate(4deg); }
  50%{  transform: translateY(6px) rotate(-4deg); }
  75%{  transform: translateY(-12px) rotate(5deg); }
  92%{  opacity:.9; }
  100%{ left:112%; transform: translateY(0) rotate(-6deg); opacity:0; }
}
@keyframes driftRL{
  0%{   left:112%; transform: translateY(0) rotate(6deg); opacity:0; }
  8%{   opacity:.9; }
  25%{  transform: translateY(14px) rotate(-4deg); }
  50%{  transform: translateY(-10px) rotate(5deg); }
  75%{  transform: translateY(12px) rotate(-5deg); }
  92%{  opacity:.9; }
  100%{ left:-12%; transform: translateY(0) rotate(6deg); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .floater--m-drift-lr, .floater--m-drift-rl, .floater--m-fly{ animation: none; opacity:.6; }
}
@media (max-width: 780px){
  .floater--m-drift-lr, .floater--m-drift-rl{ animation-duration: calc(var(--dur,18s) * .7); }
}

/* ==========================================================================
   PRODUCT QUICK VIEW — clicking a product card now opens a popup with
   the full description, a color picker (when the product has variants),
   quantity, and its own Add to Cart, instead of the card only being
   able to add straight to the cart.
   ========================================================================== */
.product-card{ cursor:pointer; }
.product-card:focus-visible{ outline:2px solid var(--gold-2); outline-offset:3px; }
.product-quickview-hint{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px; font-size:.82rem; font-weight:600; letter-spacing:.02em; color:#fff;
  background: linear-gradient(0deg, rgba(22,50,15,.78), rgba(22,50,15,0));
  transform: translateY(100%); opacity:0; transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
  pointer-events:none;
}
.product-quickview-hint svg{ width:16px; height:16px; }
.product-card:hover .product-quickview-hint,
.product-card:focus-visible .product-quickview-hint{ transform: translateY(0); opacity:1; }
.product-card-swatches{ display:flex; gap:6px; margin:-2px 0 10px; }
.mini-swatch{
  width:16px; height:16px; border-radius:50%; border:2px solid var(--paper); box-shadow:0 0 0 1px var(--line);
}

.quickview-overlay{
  position:fixed; inset:0; z-index:450; background:rgba(22,50,15,.5); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition: opacity var(--speed) var(--ease);
}
.quickview-overlay.is-open{ opacity:1; pointer-events:auto; }
.quickview-modal{
  position:fixed; top:50%; left:50%; z-index:460; width:min(94vw,920px); max-height:88vh; overflow-y:auto;
  background:var(--paper); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  transform: translate(-50%,-46%) scale(.96); opacity:0; pointer-events:none;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.quickview-modal.is-open{ transform: translate(-50%,-50%) scale(1); opacity:1; pointer-events:auto; }
.quickview-close{
  position:absolute; top:16px; right:16px; z-index:2; width:38px; height:38px; border-radius:50%;
  background:var(--paper); border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm); transition: background var(--speed), transform var(--speed);
}
.quickview-close:hover{ background:var(--gold-1); transform:rotate(90deg); }
.quickview-close svg{ width:16px; height:16px; }
.quickview-inner{ display:grid; grid-template-columns:1fr 1fr; gap:0; }
.quickview-media{ background:var(--cream-2); padding:28px; display:flex; flex-direction:column; gap:12px; }
.quickview-media img{
  width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:var(--radius-md); box-shadow:var(--shadow-md); background:#eee;
}
.quickview-thumbs{ display:flex; gap:8px; flex-wrap:wrap; }
.quickview-thumb{
  width:56px; height:56px; border-radius:10px; overflow:hidden; border:2px solid transparent; padding:0; background:none;
}
.quickview-thumb img{ width:100%; height:100%; object-fit:cover; border-radius:8px; }
.quickview-thumb:hover{ border-color:var(--gold-2); }
.quickview-body{ padding:32px; display:flex; flex-direction:column; }
.quickview-kicker{ font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-3); font-weight:600; margin-bottom:6px; }
.quickview-body h2{ font-size:1.7rem; margin-bottom:10px; }
.quickview-price{ font-family:var(--font-head); font-size:1.3rem; color:var(--ink); margin-bottom:16px; }
.quickview-price .quickview-unit{ font-family:var(--font-body); font-size:.85rem; color:var(--ink-soft); }
.quickview-desc{ font-size:.94rem; color:var(--ink-soft); margin-bottom:18px; max-height:220px; overflow-y:auto; }
.quickview-desc p{ margin:0 0 .8em; }
.quickview-desc ul{ list-style:disc; padding-left:1.2em; margin:0 0 .8em; }
.quickview-desc li{ margin-bottom:.3em; }
.quickview-desc img{ display:none; } /* full-size gallery images embedded in the body would duplicate the media panel */
.quickview-colors{ margin-bottom:18px; }
.quickview-colors label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:8px; }
.quickview-colors label span{ font-weight:400; color:var(--ink-soft); }
.quickview-swatches{ display:flex; gap:10px; flex-wrap:wrap; }
.quickview-swatch{
  width:32px; height:32px; border-radius:50%; border:2px solid var(--paper); box-shadow:0 0 0 1px var(--line);
  transition: box-shadow var(--speed), transform var(--speed);
}
.quickview-swatch:hover{ transform: translateY(-2px); }
.quickview-swatch.is-active{ box-shadow:0 0 0 2px var(--paper), 0 0 0 4px var(--gold-2); }
.quickview-qty{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.quickview-qty label{ font-size:.85rem; font-weight:600; }

@media (max-width: 760px){
  .quickview-inner{ grid-template-columns:1fr; }
  .quickview-media{ padding:20px; }
  .quickview-body{ padding:24px; }
  .quickview-modal{ max-height:92vh; }
}

/* ==========================================================================
   ABOUT PAGE — "our collection" category cards (honey, dates, art,
   bracelets & jewelry, stress-relief wellness) and photo strip.
   ========================================================================== */
.category-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.category-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden; aspect-ratio:3/4; box-shadow:var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.category-card:hover{ transform: translateY(-8px); box-shadow:var(--shadow-lg); }
.category-card img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.category-card:hover img{ transform: scale(1.08); }
.category-card-label{
  position:absolute; inset:auto 0 0 0; padding:16px 14px;
  background: linear-gradient(0deg, rgba(22,50,15,.88), rgba(22,50,15,0));
  color:#fff; font-family:var(--font-head); font-size:1.02rem;
}
.photo-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.photo-strip img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
@media (max-width: 900px){
  .category-grid{ grid-template-columns:repeat(3,1fr); }
  .photo-strip{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 560px){
  .category-grid{ grid-template-columns:repeat(2,1fr); }
}
