/*!
 * Amoria — Luxury design system
 *
 * Shared tokens + reset for homepage.html, landing.html, index.html.
 * Loaded with: <link rel="stylesheet" href="/luxury.css">
 *
 * Phase 25 (homepage redesign — Aesop-grade editorial luxury):
 *   - Surface shifted to warm bone #FAF8F5 (was #fafaf7)
 *   - Ink deepened to espresso #1a1410 (kept)
 *   - Display font: Aref Ruqaa on /, Reem Kufi remains on /shop, /wa, /picks
 *   - Hero motion: cross-fade only (no slide transform)
 *   - 8/4 spacing grid scaled up: section gaps 96/64 px
 */

/* ─── Display font ─────────────────────────────────────────────────────── */
/* Loaded by each page with its own <link> for control over preload behavior */

:root{
  /* Palette */
  --accent:#8b2e4a;
  --accent-dark:#5d1f33;
  --accent-light:#a64863;
  --accent-soft:#f5e6ec;

  /* WhatsApp action color (dark ink — far more premium than green) */
  --wa:#1a1410;
  --wa-dark:#000;
  --wa-green:#25d366;     /* available if a place truly needs the WA brand color */

  /* Inks */
  --ink:#1a1410;          /* dark brown, NOT pure black */
  --ink-soft:#3a2f28;     /* tightened from #5a4a42 for better contrast */
  --ink-muted:#6f6359;

  /* Surfaces (Phase 25 — warmer bone for editorial luxury) */
  --bg:#FAF8F5;            /* warm bone — main surface */
  --card:#ffffff;
  --cream:#f3ebde;        /* hero/feature sections accent */
  --cream-deep:#F0E9DE;   /* slight contrast against --bg */
  --line:#dcd2c4;
  --line-soft:#e8e1d3;
  --hairline:#8b6731;     /* brass 1px hairlines for editorial dividers */

  /* Accents */
  --brass:#8b6731;        /* deeper brass — WCAG AA on cream */
  --brass-light:#c9a87a;
  --gold:#8b6731;         /* alias */

  /* Shadows (minimal) */
  --shadow:0 1px 2px rgba(26,20,16,.04);
  --shadow-lg:0 6px 20px rgba(26,20,16,.08);

  /* Typography */
  --display:'Reem Kufi','Tajawal','Segoe UI',sans-serif;
  --display-editorial:'Aref Ruqaa','Tajawal','Segoe UI',serif;  /* Aesop-grade editorial — used on homepage */
  --body:'Tajawal','Segoe UI',sans-serif;

  /* Spacing scale */
  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:24px;
  --s-6:32px; --s-7:48px; --s-8:64px; --s-9:96px;
}

/* ─── Base resets ──────────────────────────────────────────────────────── */
html,body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── Display headings ─────────────────────────────────────────────────── */
.lux-display{
  font-family:var(--display);
  font-weight:600;
  color:var(--ink);
  letter-spacing:0;
  line-height:1.25;
}

.lux-overline{
  font-size:11px;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:var(--brass);
  font-weight:500;
}

.lux-eyebrow-divider::after{
  content:'';
  display:block;
  width:28px;
  height:1px;
  background:var(--brass);
  margin:12px auto 0;
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.lux-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--ink);
  color:#fff;
  border:none;
  border-radius:2px;
  padding:15px 32px;
  font-family:inherit;
  font-size:13px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  min-height:50px;
  cursor:pointer;
  transition:background .18s ease, transform .12s ease;
  -webkit-tap-highlight-color:transparent;
  text-decoration:none;
  box-shadow:none;
}
.lux-btn:hover{background:var(--accent)}
.lux-btn:active{transform:scale(.985)}

.lux-btn-outline{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--ink);
}
.lux-btn-outline:hover{background:var(--ink);color:#fff}

.lux-btn-burgundy{background:var(--accent)}
.lux-btn-burgundy:hover{background:var(--accent-dark)}

.lux-btn-wa{
  background:var(--wa);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.lux-btn-wa:hover{background:var(--accent)}
.lux-btn-wa svg{width:18px;height:18px}

/* Small text link, underlined */
.lux-link{
  display:inline-block;
  color:var(--ink-soft);
  text-decoration:none;
  font-size:11px;
  letter-spacing:.25em;
  text-transform:uppercase;
  border-bottom:1px solid var(--ink-muted);
  padding:4px 2px 2px;
  font-weight:500;
}
.lux-link:hover{color:var(--accent);border-color:var(--accent)}

/* ─── Chips (square outline) ──────────────────────────────────────────── */
.lux-chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0;
}
.lux-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  background:transparent;
  border:1px solid var(--ink-muted);
  border-radius:0;
  color:var(--ink);
  font-size:12px;
  font-weight:500;
  letter-spacing:.16em;
  min-height:46px;
  text-decoration:none;
  cursor:pointer;
  font-family:inherit;
  transition:all .18s ease;
  margin:-1px 0 0 -1px;   /* collapse adjacent borders */
}
.lux-chip:hover{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
  z-index:2;
}
.lux-chip.is-active{background:var(--ink);color:#fff;border-color:var(--ink)}

/* ─── Product card (museum style) ─────────────────────────────────────── */
.lux-product{
  background:transparent;
  border:none;
  border-radius:0;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  transition:opacity .2s;
}
.lux-product:hover{opacity:.85}
.lux-product-img{
  aspect-ratio:4/5;
  background:var(--cream);
  overflow:hidden;
  margin-bottom:14px;
}
.lux-product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}
.lux-product:hover .lux-product-img img{transform:scale(1.04)}
.lux-product-body{padding:0 4px;text-align:center}
.lux-product-name{
  font-size:13px;
  font-weight:400;
  color:var(--ink-soft);
  margin:0 0 7px;
  line-height:1.5;
  letter-spacing:.02em;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:39px;
}
.lux-product-price{
  font-family:var(--display);
  font-size:16px;
  font-weight:500;
  color:var(--ink);
}

/* ─── Sections ─────────────────────────────────────────────────────────── */
.lux-section{padding:56px 20px 40px;max-width:1100px;margin:0 auto}
.lux-section-head{text-align:center;margin-bottom:32px}
.lux-section-title{
  font-family:var(--display);
  font-size:24px;
  font-weight:600;
  color:var(--ink);
  margin:0 0 4px;
  line-height:1.25;
}
.lux-section-sub{
  font-size:13px;
  color:var(--ink-muted);
  margin:6px auto 0;
  max-width:480px;
  line-height:1.65;
}

/* ─── Hero variants ────────────────────────────────────────────────────── */
.lux-hero{
  padding:48px 24px 40px;
  text-align:center;
  background:var(--cream);
  border-bottom:1px solid var(--line);
}
.lux-hero-title{
  font-family:var(--display);
  font-size:34px;
  font-weight:600;
  color:var(--ink);
  margin:18px 0 14px;
  line-height:1.2;
  letter-spacing:-.5px;
}
.lux-hero-sub{
  font-size:14px;
  color:var(--ink-soft);
  margin:0 auto 26px;
  max-width:440px;
  line-height:1.75;
  letter-spacing:.02em;
}

/* ─── Trust row (divided columns) ─────────────────────────────────────── */
.lux-trust{
  display:flex;
  padding:40px 16px;
  background:var(--bg);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  max-width:880px;
  margin:0 auto;
}
.lux-trust-item{
  flex:1;
  text-align:center;
  padding:8px 12px;
  border-inline-start:1px solid var(--line);
}
.lux-trust-item:first-child{border-inline-start:none}
.lux-trust-num{
  display:block;
  font-family:var(--display);
  font-weight:600;
  font-size:26px;
  color:var(--accent);
  line-height:1;
  margin-bottom:6px;
}
.lux-trust-lbl{
  display:block;
  font-size:10px;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--ink-muted);
  font-weight:500;
}

/* ─── Stroke SVG helpers ─────────────────────────────────────────────── */
.lux-icon{
  width:16px;
  height:16px;
  display:inline-block;
  stroke:currentColor;
  stroke-width:1.5;
  fill:none;
  flex-shrink:0;
  vertical-align:middle;
}

/* ─── Skeleton (luxury loading) ───────────────────────────────────────── */
.lux-skeleton{
  background:linear-gradient(110deg,
    var(--cream) 0%,
    var(--cream) 40%,
    var(--cream-deep) 50%,
    var(--cream) 60%,
    var(--cream) 100%);
  background-size:200% 100%;
  animation:luxShimmer 1.6s ease-in-out infinite;
}
@keyframes luxShimmer{
  to{background-position:-200% 0}
}

/* ─── Arabic-safe overrides (Phase 14B fix) ───────────────────────────── */
/* letter-spacing breaks Arabic letter-joining; uppercase is a no-op on Arabic but adds visual noise.
   Strip both from any element that holds Arabic text — keep them only on the explicit `.lux-overline`
   class, which is intended for Latin all-caps labels (AMORIA · RIYADH). */
.lux-btn, .hero-cta-primary, .hero-cta-secondary, .hero-direct-wa,
.btn, .btn-primary, .btn-wa, .lux-chip, .chip,
.feat-link, .lux-link, .helpme-link, .modal-cta-v2 .modal-wa-big,
.modal-wa-hint, .sticky-bar a, .sticky-bar button, .sticky .btn,
.ip-cta, .ip-fallback-btn, .ip-reason, .card-cta-v2, .modal-total-label,
.cg2-confirm, .cg2-cancel{
  letter-spacing:0 !important;
  text-transform:none !important;
}

/* ─── Floward-style chrome (Phase 15) ─────────────────────────────────── */

/* Top promo bar — Floward keeps it dense + dark + always informative.
   Phase 22.1: STICKY so the delivery promise + phone stay visible while scrolling.
   On mobile: scrolling marquee of 3 messages. On desktop: 3 dot-separated. */
.fw-topbar{
  background:var(--ink);color:#fff;font-size:12px;text-align:center;
  padding:9px 16px;letter-spacing:.04em;line-height:1.4;
  position:sticky;top:0;z-index:50;overflow:hidden;
  font-weight:400;
}
.fw-topbar a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.35);padding-bottom:1px;font-weight:500}
.fw-topbar a:hover{border-color:#fff}
.fw-topbar-sep{opacity:.45;margin:0 10px}
.fw-topbar-msg{display:inline-block}
@media (max-width:600px){
  /* Marquee on mobile so all 3 messages still get seen */
  .fw-topbar-track{display:inline-flex;animation:fwTopMarquee 18s linear infinite;white-space:nowrap}
  .fw-topbar-track .fw-topbar-msg{padding:0 22px}
}
@keyframes fwTopMarquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* Sticky main header — sits BELOW the sticky topbar (~36px).
   Phase 22.1: top offset matches topbar height so it stacks not overlaps. */
.fw-header{
  position:sticky;top:36px;z-index:49;background:#fff;
  border-bottom:1px solid var(--line);height:64px;
  display:flex;align-items:center;padding:0 16px;
}
.fw-header-inner{
  max-width:1280px;margin:0 auto;width:100%;
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;gap:12px;
}
.fw-header-left{display:flex;align-items:center;gap:14px;justify-content:flex-start}
.fw-header-right{display:flex;align-items:center;gap:6px;justify-content:flex-end}
.fw-logo{
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;line-height:1;
  padding:4px 0;
}
.fw-logo img{height:34px;width:auto;display:block}
@media (min-width:768px){.fw-logo img{height:38px}}
.fw-logo-tag{display:none}  /* image already includes wordmark */
.fw-iconbtn{
  width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;
  border:none;background:transparent;color:var(--ink);cursor:pointer;
  border-radius:50%;position:relative;transition:background .15s;
}
.fw-iconbtn:hover{background:var(--cream)}
.fw-iconbtn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.6}
.fw-iconbtn-count{
  position:absolute;top:0;inset-inline-end:0;
  background:var(--accent);color:#fff;font-size:9.5px;font-weight:700;
  min-width:16px;height:16px;padding:0 4px;border-radius:8px;
  display:inline-flex;align-items:center;justify-content:center;
}
/* City pill — Floward keeps this visible on every viewport because delivery is
   location-specific. Compact pill on mobile, fuller on desktop. */
.fw-loc{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;color:var(--ink-soft);cursor:pointer;
  background:var(--cream);border:1px solid var(--line);
  border-radius:999px;padding:6px 12px;font-family:inherit;
  min-height:34px;
  transition:background .18s, border-color .18s;
  -webkit-tap-highlight-color:transparent;
}
.fw-loc:hover{background:#fff;border-color:var(--accent)}
.fw-loc svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.7;flex-shrink:0}
.fw-loc b{color:var(--ink);font-weight:600;margin-inline-start:2px}
.fw-loc-label{display:none}
@media (min-width:600px){
  .fw-loc-label{display:inline}
  .fw-loc{padding:7px 14px;font-size:13px}
}

/* Hero carousel */
.fw-carousel{
  position:relative;width:100%;height:360px;
  background:var(--cream);overflow:hidden;
}
@media (min-width:768px){.fw-carousel{height:480px}}
.fw-slides{display:flex;width:100%;height:100%;transition:transform .6s cubic-bezier(.4,0,.2,1)}
.fw-slide{
  flex:0 0 100%;width:100%;height:100%;position:relative;
  display:flex;align-items:flex-end;justify-content:center;
  overflow:hidden;
}
/* Phase 23.2: <img> instead of background-image — LCP-friendly + Google indexes it. */
.fw-slide-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 28%;
  z-index:1;
}
.fw-slide-overlay{
  position:absolute;inset:0;z-index:2;
  background:linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.05) 35%,
    rgba(0,0,0,.55) 75%,
    rgba(0,0,0,.78) 100%);
}
.fw-slide-content{
  position:relative;text-align:center;color:#fff;
  padding:0 24px 36px;max-width:560px;z-index:3;
}
@media (min-width:768px){.fw-slide-content{padding:0 24px 54px}}
.fw-slide-tag{font-size:11px;letter-spacing:.4em;text-transform:uppercase;margin-bottom:14px;opacity:.95}
.fw-slide-title{
  font-family:var(--display);font-size:32px;font-weight:700;
  line-height:1.18;margin:0 0 12px;text-shadow:0 1px 3px rgba(0,0,0,.3);
}
@media (min-width:768px){.fw-slide-title{font-size:46px}}
.fw-slide-sub{font-size:14px;opacity:.95;margin:0 0 22px;line-height:1.6}
.fw-slide-cta{
  display:inline-block;background:#fff;color:var(--ink);
  padding:14px 36px;font-size:13px;font-weight:600;
  text-decoration:none;border-radius:2px;letter-spacing:.05em;
  transition:all .15s;
}
.fw-slide-cta:hover{background:var(--accent);color:#fff}
.fw-dots{
  position:absolute;bottom:16px;left:50%;transform:translateX(-50%);
  display:flex;gap:7px;z-index:3;
}
.fw-dot{
  width:7px;height:7px;border-radius:50%;
  background:rgba(255,255,255,.5);border:none;cursor:pointer;
  transition:all .25s;padding:0;
}
.fw-dot.is-active{background:#fff;width:26px;border-radius:4px}

/* Category circles */
.fw-cats{padding:40px 16px 24px;max-width:1100px;margin:0 auto}
.fw-cats-head{text-align:center;margin-bottom:24px}
.fw-cats-title{
  font-family:var(--display);font-size:22px;font-weight:600;
  color:var(--ink);margin:0;line-height:1.25;
}
.fw-cats-title::after{
  content:'';display:block;width:28px;height:1px;
  background:var(--brass);margin:10px auto 0;
}
.fw-cats-row{
  display:flex;gap:18px;overflow-x:auto;
  scroll-snap-type:x mandatory;padding:8px 4px 16px;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.fw-cats-row::-webkit-scrollbar{display:none}
@media (min-width:768px){.fw-cats-row{justify-content:center;flex-wrap:wrap}}
.fw-cat{
  flex-shrink:0;scroll-snap-align:start;
  display:flex;flex-direction:column;align-items:center;
  text-decoration:none;color:inherit;gap:10px;width:82px;
}
.fw-cat-circle{
  width:78px;height:78px;border-radius:50%;
  background:var(--cream);display:grid;place-items:center;
  font-size:30px;border:1px solid var(--line);
  transition:all .2s;overflow:hidden;
}
.fw-cat:hover .fw-cat-circle{border-color:var(--accent);transform:translateY(-3px)}
.fw-cat-circle img{width:100%;height:100%;object-fit:cover}
.fw-cat-name{
  font-size:11.5px;color:var(--ink);text-align:center;
  line-height:1.3;font-weight:500;
}

/* Promo banner */
.fw-banner{
  background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);
  color:#fff;text-align:center;padding:36px 24px;margin:32px 0;
}
.fw-banner-tag{font-size:11px;letter-spacing:.4em;text-transform:uppercase;opacity:.85;margin-bottom:8px}
.fw-banner-title{font-family:var(--display);font-size:22px;font-weight:600;margin:0 0 6px}
.fw-banner-sub{font-size:13px;opacity:.92}

/* Floward-style product card (1:1 with heart + cart) */
.fw-prod{
  position:relative;display:flex;flex-direction:column;
  background:#fff;border:1px solid var(--line-soft);border-radius:0;
  overflow:hidden;text-decoration:none;color:inherit;
  transition:all .25s;
}
.fw-prod:hover{border-color:var(--line);box-shadow:0 8px 20px rgba(0,0,0,.07);transform:translateY(-2px)}
.fw-prod-img{position:relative;aspect-ratio:1/1;background:var(--cream);overflow:hidden}
.fw-prod-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.fw-prod:hover .fw-prod-img img{transform:scale(1.05)}
.fw-prod-heart{
  position:absolute;top:10px;inset-inline-end:10px;
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.94);border:none;
  display:grid;place-items:center;cursor:pointer;
  transition:all .15s;z-index:2;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}
.fw-prod-heart svg{width:16px;height:16px;stroke:var(--ink);fill:none;stroke-width:1.8;transition:all .15s}
.fw-prod-heart:hover svg,.fw-prod-heart.is-active svg{stroke:var(--accent);fill:var(--accent)}
.fw-prod-body{padding:14px 12px 0;text-align:center;display:flex;flex-direction:column;gap:6px}
.fw-prod-name{
  font-size:13px;font-weight:500;color:var(--ink);line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;min-height:36px;
}
.fw-prod-price{
  font-family:var(--display);font-size:17px;font-weight:600;
  color:var(--accent);letter-spacing:.01em;
}
.fw-prod-add{
  display:flex;align-items:center;justify-content:center;gap:6px;
  width:100%;background:var(--ink);color:#fff;border:none;
  font-family:inherit;font-size:12.5px;font-weight:500;letter-spacing:.04em;
  padding:12px;margin-top:12px;cursor:pointer;
  transition:background .15s;text-decoration:none;
}
.fw-prod-add:hover{background:var(--accent)}
.fw-prod-add svg{width:14px;height:14px;fill:currentColor}

/* Footer (Floward-style 4-col) */
.fw-footer{background:#fff;border-top:1px solid var(--line);padding:48px 24px 24px;margin-top:48px}
.fw-footer-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1fr;gap:32px;
}
@media (min-width:768px){.fw-footer-inner{grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px}}
.fw-footer-col h4{
  font-family:var(--display);font-size:13px;font-weight:600;
  color:var(--ink);margin:0 0 14px;letter-spacing:.05em;
}
.fw-footer-col ul{list-style:none;padding:0;margin:0}
.fw-footer-col li{margin-bottom:9px}
.fw-footer-col a{color:var(--ink-soft);text-decoration:none;font-size:12.5px;transition:color .15s}
.fw-footer-col a:hover{color:var(--accent)}
.fw-footer-brand{
  font-family:var(--display);font-size:24px;font-weight:700;
  color:var(--accent);letter-spacing:.2em;margin:0 0 6px;line-height:1;
}
.fw-footer-tag{font-size:11px;color:var(--ink-muted);letter-spacing:.25em;text-transform:uppercase;margin-bottom:14px}
.fw-footer-desc{font-size:12.5px;color:var(--ink-soft);line-height:1.7;margin:0}
.fw-footer-social{display:flex;gap:10px;margin-top:14px}
.fw-footer-social a{
  width:34px;height:34px;border-radius:50%;background:var(--cream);
  display:inline-grid;place-items:center;color:var(--ink);
  border:1px solid var(--line);text-decoration:none;transition:all .15s;
}
.fw-footer-social a:hover{background:var(--accent);color:#fff;border-color:var(--accent)}
.fw-footer-social svg{width:15px;height:15px;fill:currentColor}
.fw-footer-payments{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;
  font-size:10px;color:var(--ink-muted);letter-spacing:.2em;text-transform:uppercase;
}
.fw-footer-payments span{
  background:var(--cream);padding:4px 10px;border-radius:2px;
  border:1px solid var(--line);
}
.fw-footer-bottom{
  border-top:1px solid var(--line-soft);margin-top:36px;padding-top:20px;
  text-align:center;font-size:11px;color:var(--ink-muted);letter-spacing:.05em;
}

/* Sticky cart FAB (mobile) */
.fw-cart-fab{
  position:fixed;bottom:20px;inset-inline-end:20px;
  width:56px;height:56px;border-radius:50%;
  background:var(--accent);color:#fff;
  display:inline-grid;place-items:center;
  box-shadow:0 10px 26px rgba(139,46,74,.35);
  border:none;cursor:pointer;text-decoration:none;
  z-index:80;transition:transform .2s;
}
.fw-cart-fab:hover{transform:scale(1.05)}
.fw-cart-fab svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:1.8}
.fw-cart-fab-count{
  position:absolute;top:-4px;inset-inline-start:-4px;
  background:#fff;color:var(--accent);font-size:11px;font-weight:700;
  min-width:22px;height:22px;padding:0 6px;border-radius:11px;
  display:grid;place-items:center;border:2px solid var(--accent);
}
@media (min-width:1024px){.fw-cart-fab{display:none}}

/* Product grid wrapper for /shop */
.fw-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px;
  max-width:1200px;margin:0 auto;padding:0 12px;
}
@media (min-width:600px){.fw-grid{grid-template-columns:repeat(3,1fr);gap:18px}}
@media (min-width:900px){.fw-grid{grid-template-columns:repeat(4,1fr);gap:24px}}

/* ─── /shop hero banner (Phase 15.6) ──────────────────────────────────── */
.fw-shop-hero{
  background:linear-gradient(180deg,var(--cream) 0%,#fff 100%);
  padding:32px 24px 26px;text-align:center;
  border-bottom:1px solid var(--line);
}
.fw-shop-hero-tag{
  font-size:11px;letter-spacing:.4em;text-transform:uppercase;
  color:var(--brass);margin-bottom:10px;font-weight:500;
}
.fw-shop-hero-title{
  font-family:var(--display);font-size:30px;font-weight:600;
  color:var(--ink);margin:0 0 8px;letter-spacing:-.3px;line-height:1.2;
}
.fw-shop-hero-title::after{
  content:'';display:block;width:32px;height:1px;
  background:var(--brass);margin:14px auto 0;
}
.fw-shop-hero-sub{font-size:13px;color:var(--ink-soft);margin:14px 0 0;line-height:1.6}
@media (min-width:768px){
  .fw-shop-hero{padding:48px 24px 36px}
  .fw-shop-hero-title{font-size:42px}
}

/* ─── Floward-style card mini badges (Phase 22.2) ─────────────────────── */
/* Minimal pill at top of image — single source, never stack. Priority: sale > new > express. */
.fw-mini-badge{
  position:absolute;top:10px;inset-inline-start:10px;z-index:3;
  display:inline-flex;align-items:center;gap:4px;
  background:#fff;color:var(--ink);
  font-size:10px;font-weight:700;letter-spacing:.05em;
  padding:4px 9px;border-radius:2px;
  box-shadow:0 1px 4px rgba(0,0,0,.10);
  border:1px solid var(--line-soft);
  text-transform:none;line-height:1;
  pointer-events:none;
}
.fw-mini-badge.is-express{background:var(--ink);color:#fff;border-color:var(--ink)}
.fw-mini-badge.is-new    {background:var(--accent);color:#fff;border-color:var(--accent)}
.fw-mini-badge.is-sale   {background:#933C27;color:#fff;border-color:#933C27}
/* Phase 28.2 — Floward gift badges */
.fw-mini-badge.is-floward-fast{background:#933C27;color:#fff;border-color:#933C27}      /* red "سريع" */
.fw-mini-badge.is-floward-new {background:#1f4e5f;color:#fff;border-color:#1f4e5f}      /* teal-dark "الجديد" */
.fw-mini-badge svg{width:11px;height:11px;stroke:currentColor;stroke-width:2;fill:none;flex-shrink:0}

/* ─── /shop card visual upgrade (Floward-grade — NO entrance animation) ── */
/* Tightens the existing .card.v2 markup without rewriting JS.
   Phase 21: Floward uses image-fade-in on load (opacity 0→1, .25s) — clean and luxe. */
.card.v2 .card-img-wrap{
  background:#faf6f0;
  border:1px solid var(--line-soft);
  position:relative;overflow:hidden;
}
.card.v2 .card-img-wrap > img{opacity:0}
.card.v2 .card-img-wrap > img.loaded,
.card.v2 .card-img-wrap.img-loaded > img{opacity:1}
.card.v2 .card-name{
  font-family:var(--body);
  font-size:13px;font-weight:500;
  color:var(--ink) !important;
  line-height:1.5;letter-spacing:.01em;
  min-height:39px;
}
.card.v2 .card-price-amount{
  color:var(--accent) !important;  /* burgundy price — Floward signature */
  font-size:20px !important;
}
.card.v2 .card-price-currency{
  font-family:var(--display);font-size:13px;color:var(--ink-soft);
  font-weight:500;margin-inline-start:2px;
}
/* Heart upgrade — bigger, white background, burgundy on hover */
.card-fav{
  width:36px !important;height:36px !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.94) !important;
  box-shadow:0 2px 6px rgba(0,0,0,.10) !important;
  top:10px !important;inset-inline-end:10px !important;
  bottom:auto !important;right:auto !important;
  display:grid;place-items:center;
  font-size:15px !important;
  border:none;cursor:pointer;
  transition:transform .15s, background .15s;
  z-index:4;
}
.card-fav:hover{background:#fff !important;transform:scale(1.08)}
.card-fav.is-fav{background:#fff !important}

/* CTA upgrade — bigger, refined */
.card-cta-v2{
  font-family:var(--display) !important;
  font-size:13px !important;
  letter-spacing:.04em !important;
  min-height:46px !important;
  text-transform:none;
  background:var(--ink);
}
.card-cta-v2:hover{background:var(--accent) !important}

/* ─── iOS safe areas + Android touch ─────────────────────────────────── */
@supports(padding:max(0px)){
  .fw-cart-fab{bottom:max(20px,env(safe-area-inset-bottom,20px))}
  .fw-footer{padding-bottom:max(24px,env(safe-area-inset-bottom,24px))}
}
.fw-iconbtn,.fw-cart-fab,.fw-prod-add,.fw-slide-cta,.card-cta-v2,.card-fav,.fw-cat,.fw-prod-heart{
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;   /* eliminates 300ms tap delay on Android */
}

/* Backdrop-blur fallback for iOS Safari */
@supports not (backdrop-filter:blur(1px)){
  .fw-header{background:#fff !important}
}

/* Phase 29.4 — /shop active filter header (?filter=perfumes etc) */
.shop-filter-header{
  max-width:1200px;margin:18px auto 14px;padding:0 16px;
  display:flex;justify-content:space-between;align-items:flex-end;gap:18px;
  border-bottom:1px solid var(--brass);padding-bottom:14px;
}
.shop-filter-title{
  font-family:var(--display);font-size:24px;font-weight:700;
  color:var(--ink);margin:0;letter-spacing:-.2px;
}
.shop-filter-meta{font-size:12px;color:var(--ink-soft);margin-top:6px}
.shop-filter-clear{
  font-size:12px;color:var(--accent);text-decoration:none;font-weight:500;
  border-bottom:1px solid var(--accent);padding-bottom:2px;flex-shrink:0;
}
.shop-filter-clear:hover{color:var(--accent-dark)}
@media (min-width:768px){.shop-filter-title{font-size:30px}}

/* Phase 28.3 — Floward-style "توصيل سريع | نصل خلال X دقيقة" pill in modal */
.modal-fast-delivery{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--cream);
  border:1px solid var(--line);
  color:var(--ink);
  padding:9px 14px;
  border-radius:6px;
  font-size:13px;line-height:1.3;
  margin:12px 0 4px;
  font-weight:500;letter-spacing:0;
}
.modal-fast-delivery strong{color:var(--accent);font-weight:700}
.modal-fast-delivery svg{color:var(--accent);flex-shrink:0}

/* ─── Product Modal Wizard (Phase 16) ─────────────────────────────────── */
/* Hide non-active steps when wizard mode is on (default).
   Steps are: .wz-step (data-step="1|2|3"). is-active = visible. */
.modal-content.wizard-on .wz-step{display:none}
.modal-content.wizard-on .wz-step.is-active{display:block;animation:wzIn .3s ease}
@keyframes wzIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.wizard-stepper{
  position:sticky;top:0;z-index:11;
  background:#fff;padding:14px 18px 12px;
  border-bottom:1px solid var(--line);
  margin:-16px -16px 16px;  /* eat modal-body padding */
}
.wizard-progress{
  position:relative;height:3px;background:var(--line-soft);
  border-radius:2px;overflow:hidden;
  margin-bottom:11px;
}
.wizard-progress-fill{
  position:absolute;inset-block:0;inset-inline-start:0;
  height:100%;background:var(--accent);
  width:33.33%;transition:width .35s cubic-bezier(.4,0,.2,1);
}
.wizard-tabs{
  display:flex;gap:0;justify-content:space-between;
  font-family:var(--display);font-size:12.5px;
}
.wizard-tab{
  flex:1;background:none;border:none;padding:4px 8px;
  cursor:pointer;color:var(--ink-muted);
  font-family:inherit;font-size:12px;font-weight:500;
  transition:color .15s;
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  -webkit-tap-highlight-color:transparent;touch-action:manipulation;
}
.wizard-tab b{
  display:inline-grid;place-items:center;
  width:22px;height:22px;border-radius:50%;
  background:var(--line-soft);color:var(--ink-muted);
  font-weight:700;font-size:11.5px;line-height:1;
  transition:all .2s;
}
.wizard-tab.is-active{color:var(--accent)}
.wizard-tab.is-active b{background:var(--accent);color:#fff}
.wizard-tab.is-done b{background:var(--ink);color:#fff}
.wizard-tab.is-done b::before{content:'✓';font-size:12px}
.wizard-tab.is-done b > span{display:none}

.wizard-nav{
  display:flex;gap:10px;padding:14px 0 4px;margin-top:18px;
  border-top:1px solid var(--line-soft);
}
.wizard-nav button{
  min-height:48px;border-radius:2px;
  font-family:var(--display);font-size:13px;font-weight:600;
  cursor:pointer;transition:all .15s;
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  font-family:'Reem Kufi','Tajawal',sans-serif;
  -webkit-tap-highlight-color:transparent;touch-action:manipulation;
  border:1px solid transparent;
}
.wz-back{
  background:transparent;color:var(--ink-soft);
  border-color:var(--line);min-width:48px;padding:0 14px;
}
.wz-back:hover{background:var(--cream)}
.wz-skip{
  background:transparent;color:var(--ink-soft);
  border:none;font-weight:500;
  text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:4px;
  padding:0 14px;
}
.wz-skip:hover{color:var(--accent)}
.wz-next{
  flex:1;background:var(--ink);color:#fff;
  border:none;font-size:14px;letter-spacing:.04em;
  padding:0 18px;
}
.wz-next:hover{background:var(--accent)}
.wz-next:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

/* Step intro mini-header */
.wz-step-intro{
  text-align:center;margin:0 0 16px;
}
.wz-step-tag{
  font-size:10.5px;letter-spacing:.4em;text-transform:uppercase;
  color:var(--brass);margin-bottom:6px;font-weight:500;
}
.wz-step-title{
  font-family:var(--display);font-size:18px;font-weight:600;
  color:var(--ink);margin:0;line-height:1.3;
}
.wz-step-sub{
  font-size:12.5px;color:var(--ink-soft);
  margin:6px 0 0;line-height:1.5;
}

/* Step 3 (final) — hide the wizard nav and reveal the bottom CTA prominently */
.modal-content.wizard-on .wz-step[data-step="3"] .wizard-nav{display:none}

/* ─── Bundle Picks (Phase 17 — replaces wizard) ───────────────────────── */
.bundle-picks{margin:24px 0 22px;padding-top:14px}
.bp-tag{
  font-size:11px;letter-spacing:.35em;text-transform:uppercase;
  color:var(--brass);text-align:center;
  margin-bottom:14px;font-weight:500;
}
.bp-tag::after{
  content:'';display:block;width:24px;height:1px;
  background:var(--brass);margin:8px auto 0;
}
.bp-options{display:flex;flex-direction:column;gap:10px}
.bp-opt{
  position:relative;display:flex;align-items:center;gap:12px;
  padding:14px 16px;
  border:1.5px solid var(--line);border-radius:3px;
  background:#fff;cursor:pointer;
  transition:border-color .18s, background .18s, transform .12s;
  -webkit-tap-highlight-color:transparent;touch-action:manipulation;
  margin:0;
}
.bp-opt:hover{border-color:var(--accent-light);background:var(--cream)}
.bp-opt:active{transform:scale(.985)}
.bp-opt input[type=radio]{
  appearance:none;-webkit-appearance:none;
  width:26px;height:26px;border-radius:50%;
  border:2px solid var(--ink-muted);
  flex-shrink:0;position:relative;margin:0;cursor:pointer;
  background:#fff;
  transition:all .18s;
}
.bp-opt input[type=radio]:checked{
  border-color:var(--accent);
  box-shadow:inset 0 0 0 5px var(--accent), inset 0 0 0 8px #fff;
}
.bp-opt.is-selected{
  border-color:var(--accent);
  border-width:2px;
  background:var(--cream);
  box-shadow:0 6px 18px rgba(139,46,74,.12);
}
.bp-opt-body{flex:1;min-width:0}
.bp-opt-name{
  font-family:var(--display);font-size:14.5px;font-weight:600;
  color:var(--ink);line-height:1.3;letter-spacing:0;
}
.bp-opt-price{
  font-size:12.5px;color:var(--ink-soft);
  margin-top:4px;letter-spacing:.02em;
}
.bp-opt-price b{
  font-family:var(--display);color:var(--ink);font-weight:600;
}
.bp-opt.is-selected .bp-opt-price{color:var(--ink)}
.bp-opt.is-selected .bp-opt-price b{color:var(--accent)}
.bp-opt-badge{
  position:absolute;top:-10px;inset-inline-end:14px;
  background:var(--accent);color:#fff;
  font-size:10.5px;font-weight:700;letter-spacing:.04em;
  padding:5px 12px;border-radius:2px;
  white-space:nowrap;
  box-shadow:0 3px 10px rgba(139,46,74,.30);
  z-index:2;
}
.bp-opt-meta{
  font-size:10.5px;color:var(--brass);
  margin-top:2px;font-weight:600;letter-spacing:.03em;
}
.bp-customize{
  background:transparent;border:none;
  color:var(--ink-soft);font-family:var(--body);
  font-size:12px;font-weight:500;
  text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:4px;
  cursor:pointer;display:block;margin:14px auto 0;
  padding:10px 14px;min-height:40px;
  -webkit-tap-highlight-color:transparent;touch-action:manipulation;
}
.bp-customize:hover{color:var(--accent)}
.bp-detailed{
  margin-top:18px;padding-top:16px;
  border-top:1px solid var(--line-soft);
  animation:wzIn .25s ease;
}
.bp-detailed[hidden]{display:none}

/* ═══════════════════════════════════════════════════════════════════════
   Phase 25 — Editorial Luxury for Homepage (/)
   Aesop / Bottega Veneta restraint + Saudi دارج راقٍ.
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════
   Phase 26 — Floward-style structure
   Hero banner + occasions strip + gift-ideas grid + category sections + best sellers
   ═══════════════════════════════════════════════════════════════════════ */

/* Full-width hero banner with caption */
.fl-hero{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  max-height:560px;
  overflow:hidden;
  background:var(--cream);
}
@media (max-width:600px){.fl-hero{aspect-ratio:5/4;max-height:none}}
.fl-hero-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;
}
.fl-hero-caption{
  position:absolute;
  inset-block-end:0;inset-inline:0;
  padding:32px 24px 28px;
  background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.6) 100%);
  color:#fff;text-align:center;
}
.fl-hero-title{
  font-family:var(--display);
  font-size:32px;font-weight:700;
  margin:0 0 6px;letter-spacing:-.3px;line-height:1.15;
  text-shadow:0 1px 6px rgba(0,0,0,.3);
}
.fl-hero-sub{
  font-size:13px;color:rgba(255,255,255,.92);
  margin:0;letter-spacing:.04em;
}
/* Phase 34 — eyebrow above hero title for Floward-style hierarchy. */
.fl-hero-eyebrow{
  display:inline-block;font-size:10.5px;color:rgba(255,255,255,.85);
  letter-spacing:.32em;text-transform:uppercase;font-weight:500;
  margin-bottom:10px;text-shadow:0 1px 4px rgba(0,0,0,.3);
}
/* Phase 34 — dual CTA inside hero caption. Primary white-on-burgundy, ghost outlined. */
.fl-hero-ctas{display:flex;gap:10px;margin-top:18px;flex-wrap:wrap;justify-content:center}
.fl-hero-btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:46px;
  padding:12px 22px;font-size:12px;font-weight:600;letter-spacing:.16em;
  border-radius:2px;text-decoration:none;transition:all .2s ease;font-family:inherit;
  -webkit-tap-highlight-color:transparent;min-width:140px;
}
.fl-hero-btn-primary{background:#fff;color:var(--ink)}
.fl-hero-btn-primary:hover,.fl-hero-btn-primary:active{background:var(--accent);color:#fff}
.fl-hero-btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.7)}
.fl-hero-btn-ghost:hover,.fl-hero-btn-ghost:active{background:rgba(255,255,255,.12);border-color:#fff}
@media (min-width:768px){
  .fl-hero-title{font-size:48px}
  .fl-hero-sub{font-size:15px}
  .fl-hero-caption{padding:48px 32px 40px}
  .fl-hero-eyebrow{font-size:11.5px;letter-spacing:.36em}
  .fl-hero-btn{min-height:52px;font-size:13px;padding:14px 28px;min-width:170px}
}

/* Phase 34 — Categories shelf (تسوّق حسب الفئة). 2-col mobile, 4-col desktop. */
.fl-cat-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
  max-width:1200px;margin:0 auto;
}
@media (min-width:768px){.fl-cat-grid{grid-template-columns:repeat(4,1fr);gap:20px}}
.fl-cat{
  display:flex;flex-direction:column;text-decoration:none;color:inherit;
  background:#fff;border:1px solid var(--line);border-radius:6px;overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease;-webkit-tap-highlight-color:transparent;
}
.fl-cat:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(26,20,16,.08)}
.fl-cat-img{aspect-ratio:1/1;overflow:hidden;background:var(--cream)}
.fl-cat-img>img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.fl-cat:hover .fl-cat-img>img{transform:scale(1.04)}
.fl-cat-label{padding:12px 14px;text-align:center;display:flex;flex-direction:column;gap:3px}
.fl-cat-name{font-family:var(--display);font-size:14.5px;font-weight:600;color:var(--ink);line-height:1.3}
.fl-cat-meta{font-size:10.5px;color:var(--ink-muted);letter-spacing:.2em;text-transform:uppercase;font-weight:500}
@media (min-width:768px){
  .fl-cat-label{padding:16px 18px;gap:5px}
  .fl-cat-name{font-size:16px}
  .fl-cat-meta{font-size:11px}
}

/* Section wrapper */
.fl-section{
  padding:48px 16px 32px;
  max-width:1200px;margin:0 auto;
}
@media (min-width:768px){.fl-section{padding:64px 32px 48px}}
.fl-section-head{
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  margin-bottom:28px;gap:6px;
}
.fl-section-title{
  font-family:var(--display);
  font-size:22px;font-weight:700;
  color:var(--ink);margin:0;
  letter-spacing:-.2px;line-height:1.25;
}
@media (min-width:768px){.fl-section-title{font-size:28px}}
.fl-section-sub{
  font-size:13px;color:var(--ink-soft);
  margin:4px 0 0;font-weight:400;
}
.fl-section-link{
  display:inline-block;margin-top:8px;
  font-size:12px;font-weight:500;
  color:var(--accent);letter-spacing:.04em;
  text-decoration:none;border-bottom:1px solid var(--accent);
  padding-bottom:2px;
}
.fl-section-link:hover{color:var(--accent-dark);border-color:var(--accent-dark)}

/* Occasions strip — circles (مبروك، عيد ميلاد، تخرّج...) */
.fl-occ-row{
  display:flex;gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:4px 4px 16px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.fl-occ-row::-webkit-scrollbar{display:none}
@media (min-width:768px){.fl-occ-row{justify-content:center;flex-wrap:wrap;gap:24px}}
.fl-occ{
  flex-shrink:0;
  scroll-snap-align:start;
  display:flex;flex-direction:column;
  align-items:center;gap:10px;
  text-decoration:none;color:inherit;
  width:90px;
  transition:transform .2s;
}
.fl-occ:hover{transform:translateY(-3px)}
.fl-occ-img{
  width:90px;height:90px;
  border-radius:50%;
  overflow:hidden;
  background:var(--cream-deep);
  border:1px solid var(--line);
}
.fl-occ-img > img{width:100%;height:100%;object-fit:cover;display:block}
.fl-occ-name{
  font-size:12.5px;font-weight:500;
  color:var(--ink);text-align:center;
  line-height:1.3;
}

/* Gift ideas grid — 6 category cards (rectangular tiles like Floward) */
.fl-gift-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media (min-width:768px){.fl-gift-grid{grid-template-columns:repeat(3,1fr);gap:20px}}
.fl-gift{
  position:relative;
  display:block;
  text-decoration:none;color:inherit;
  aspect-ratio:1/1;
  border-radius:8px;
  overflow:hidden;
  background:var(--cream);
  transition:transform .25s ease;
}
.fl-gift:hover{transform:translateY(-3px)}
.fl-gift-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .6s ease;
}
.fl-gift:hover .fl-gift-img{transform:scale(1.05)}
.fl-gift-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 35%,rgba(0,0,0,.55) 100%);
}
.fl-gift-label{
  position:absolute;
  inset-block-end:14px;inset-inline:14px;
  color:#fff;
  font-family:var(--display);
  font-size:16px;font-weight:600;
  letter-spacing:-.1px;
  text-shadow:0 1px 4px rgba(0,0,0,.4);
  display:flex;align-items:center;justify-content:space-between;
}
.fl-gift-label::after{
  content:'←';
  font-size:18px;
  opacity:.85;
}
@media (min-width:768px){.fl-gift-label{font-size:19px;inset-block-end:18px;inset-inline:18px}}

/* Product row — horizontal scroll (4 per view mobile, all visible desktop) */
.fl-prod-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
@media (min-width:600px){.fl-prod-row{grid-template-columns:repeat(3,1fr);gap:18px}}
@media (min-width:900px){.fl-prod-row{grid-template-columns:repeat(4,1fr);gap:24px}}
@media (min-width:1100px){.fl-prod-row{grid-template-columns:repeat(6,1fr)}}

.fl-prod{
  display:flex;flex-direction:column;
  text-decoration:none;color:inherit;
  transition:opacity .25s ease;
}
.fl-prod:hover{opacity:.85}
.fl-prod-img{
  aspect-ratio:4/5;
  background:var(--cream);
  overflow:hidden;
  margin-bottom:10px;
  border-radius:4px;
  position:relative;
}
.fl-prod-img > img{
  width:100%;height:100%;object-fit:cover;
  display:block;transition:transform .8s ease;
}
.fl-prod:hover .fl-prod-img > img{transform:scale(1.03)}
.fl-prod-soon{
  position:absolute;top:10px;inset-inline-end:10px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  font-size:10px;font-weight:600;letter-spacing:.05em;
  padding:4px 8px;border-radius:2px;
  text-transform:uppercase;
}
.fl-prod-name{
  text-align:center;
  font-family:var(--body);
  font-size:13px;font-weight:500;
  color:var(--ink);
  margin:0 0 4px;letter-spacing:.01em;
  line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;
  -webkit-box-orient:vertical;overflow:hidden;
  min-height:36px;
}
.fl-prod-price{
  text-align:center;
  font-family:var(--display);
  font-size:15px;font-weight:600;
  color:var(--accent);
}

/* Editorial hero — full-bleed, cross-fade carousel */
.ed-hero{
  position:relative;
  width:100%;
  height:70vh;
  min-height:520px;
  max-height:780px;
  background:var(--ink);
  overflow:hidden;
}
.ed-hero-stack{position:absolute;inset:0}
.ed-hero-slide{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity .6s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.ed-hero-slide.is-active{opacity:1;pointer-events:auto}
.ed-hero-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;
}
.ed-hero-veil{
  position:absolute;inset:0;
  background:linear-gradient(180deg,
    rgba(26,20,16,0)  0%,
    rgba(26,20,16,.10) 40%,
    rgba(26,20,16,.55) 80%,
    rgba(26,20,16,.78) 100%);
}
.ed-hero-content{
  position:absolute;
  inset-inline:0;
  bottom:max(48px,env(safe-area-inset-bottom,48px));
  text-align:center;
  color:#fff;
  padding:0 24px;
  z-index:2;
}
.ed-hero-eyebrow{
  font-family:var(--body);
  font-size:11px;letter-spacing:.4em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
  margin-bottom:14px;
  font-weight:500;
}
.ed-hero-title{
  font-family:var(--display-editorial);
  font-size:36px;
  font-weight:700;
  line-height:1.18;
  margin:0 0 14px;
  letter-spacing:-.3px;
  text-shadow:0 1px 3px rgba(0,0,0,.35);
}
.ed-hero-sub{
  font-size:14px;
  color:rgba(255,255,255,.92);
  margin:0 auto 28px;
  max-width:480px;
  line-height:1.65;
  letter-spacing:.02em;
}
.ed-hero-cta{
  display:inline-block;
  color:#fff;
  font-size:13px;font-weight:500;
  letter-spacing:.05em;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.85);
  padding:6px 0 3px;
  transition:opacity .2s;
}
.ed-hero-cta:hover{opacity:.78}

/* Cross-fade dots */
.ed-hero-dots{
  position:absolute;bottom:18px;left:50%;
  transform:translateX(-50%);
  display:flex;gap:8px;z-index:3;
}
.ed-hero-dot{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,.4);
  border:none;cursor:pointer;padding:0;
  transition:all .25s;
}
.ed-hero-dot.is-active{background:#fff;width:24px;border-radius:3px}

@media (min-width:768px){
  .ed-hero{height:78vh;max-height:840px}
  .ed-hero-title{font-size:54px;line-height:1.12}
  .ed-hero-sub{font-size:15px;max-width:560px}
  .ed-hero-eyebrow{font-size:12px}
  .ed-hero-content{bottom:80px}
}
@media (min-width:1100px){
  .ed-hero-title{font-size:64px}
}

/* Editorial section frame */
.ed-section{
  padding:64px 24px 56px;
  max-width:1180px;
  margin:0 auto;
}
@media (min-width:768px){.ed-section{padding:96px 40px 80px}}
@media (min-width:1100px){.ed-section{padding:96px 80px 80px}}

.ed-section-head{text-align:center;margin-bottom:40px}
.ed-eyebrow{
  font-family:var(--body);
  font-size:11px;letter-spacing:.4em;
  text-transform:uppercase;
  color:var(--hairline);
  margin-bottom:14px;
  font-weight:500;
  display:inline-flex;align-items:center;gap:14px;
}
.ed-eyebrow::before,.ed-eyebrow::after{
  content:'';width:24px;height:1px;
  background:var(--hairline);opacity:.55;
}
.ed-section-title{
  font-family:var(--display-editorial);
  font-size:26px;font-weight:700;
  color:var(--ink);margin:0;
  line-height:1.25;letter-spacing:-.2px;
}
@media (min-width:768px){.ed-section-title{font-size:34px}}

/* Editorial featured grid (4 products max) */
.ed-featured-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px 14px;
  margin:0 auto;
}
@media (min-width:768px){
  .ed-featured-grid{grid-template-columns:repeat(4,1fr);gap:32px 28px}
}
.ed-prod{
  display:flex;flex-direction:column;
  text-decoration:none;color:inherit;
  transition:opacity .25s ease;
}
.ed-prod:hover{opacity:.82}
.ed-prod-img{
  aspect-ratio:4/5;
  background:var(--cream-deep);
  overflow:hidden;
  margin-bottom:14px;
  position:relative;
}
.ed-prod-img > img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .8s ease;
}
.ed-prod:hover .ed-prod-img > img{transform:scale(1.03)}
.ed-prod-name{
  text-align:center;
  font-family:var(--body);
  font-size:13px;
  font-weight:500;color:var(--ink);
  margin:0 0 6px;
  letter-spacing:.01em;line-height:1.5;
  display:-webkit-box;-webkit-line-clamp:1;
  -webkit-box-orient:vertical;overflow:hidden;
  min-height:20px;
}
.ed-prod-price{
  text-align:center;
  font-family:var(--display-editorial);
  font-size:15px;font-weight:700;
  color:var(--accent);
  letter-spacing:.01em;
}
.ed-featured-link{
  display:block;text-align:center;margin-top:36px;
  font-family:var(--body);
  font-size:12px;font-weight:500;
  letter-spacing:.25em;text-transform:uppercase;
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid var(--ink);
  padding-bottom:3px;
}
.ed-featured-link:hover{color:var(--accent);border-color:var(--accent)}

/* Editorial categories (6 circular photo chips) */
.ed-cats{
  display:flex;gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:6px 4px 14px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  justify-content:flex-start;
}
.ed-cats::-webkit-scrollbar{display:none}
@media (min-width:768px){
  .ed-cats{justify-content:center;flex-wrap:wrap;gap:24px}
}
.ed-cat{
  flex-shrink:0;
  scroll-snap-align:start;
  display:flex;flex-direction:column;
  align-items:center;gap:12px;
  text-decoration:none;color:inherit;
  width:96px;
}
.ed-cat-img{
  width:96px;height:96px;
  border-radius:50%;
  overflow:hidden;
  background:var(--cream-deep);
  position:relative;
  transition:transform .25s;
}
.ed-cat:hover .ed-cat-img{transform:translateY(-3px)}
.ed-cat-img > img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.ed-cat-name{
  font-family:var(--body);
  font-size:12.5px;font-weight:500;
  color:var(--ink);letter-spacing:.01em;
}

/* Editorial founder note */
.ed-note{
  background:var(--cream);
  padding:64px 24px;
  text-align:center;
}
@media (min-width:768px){.ed-note{padding:96px 40px}}
.ed-note-mark{
  font-family:var(--display-editorial);
  font-size:48px;
  line-height:1;
  color:var(--hairline);
  margin-bottom:18px;
  opacity:.8;
}
.ed-note-text{
  font-family:var(--display-editorial);
  font-size:20px;font-weight:400;
  font-style:italic;
  color:var(--ink);
  margin:0 auto 22px;
  max-width:640px;
  line-height:1.65;
  letter-spacing:-.1px;
}
@media (min-width:768px){.ed-note-text{font-size:26px;max-width:760px}}
.ed-note-sig{
  font-family:var(--body);
  font-size:12px;
  letter-spacing:.3em;text-transform:uppercase;
  color:var(--ink-soft);font-weight:500;
}

/* Editorial trust strip */
.ed-trust{
  display:flex;flex-direction:column;
  gap:32px;align-items:center;
  text-align:center;
}
.ed-trust-headline{
  font-family:var(--display-editorial);
  font-size:22px;font-weight:700;
  color:var(--ink);margin:0;
}
.ed-trust-headline b{color:var(--accent);font-weight:700}
.ed-trust-source{
  font-family:var(--body);
  font-size:11.5px;letter-spacing:.3em;
  text-transform:uppercase;color:var(--ink-muted);
}
.ed-quotes{
  display:grid;grid-template-columns:1fr;
  gap:24px;max-width:920px;width:100%;
  margin-top:16px;
}
@media (min-width:768px){.ed-quotes{grid-template-columns:repeat(3,1fr);gap:32px}}
.ed-quote{
  padding:0 8px;text-align:center;
}
.ed-quote-stars{
  color:var(--hairline);font-size:14px;
  letter-spacing:2px;margin-bottom:10px;
}
.ed-quote-text{
  font-size:14.5px;color:var(--ink-soft);
  line-height:1.75;margin:0 0 8px;font-weight:400;
}
.ed-quote-author{
  font-size:11px;letter-spacing:.25em;
  text-transform:uppercase;color:var(--ink-muted);font-weight:500;
}

/* Editorial FAQ — 3 only, hairline accordion */
.ed-faq{max-width:760px;margin:0 auto}
.ed-faq-item{
  border-top:1px solid var(--line);
  padding:22px 0;cursor:pointer;
}
.ed-faq-item:last-child{border-bottom:1px solid var(--line)}
.ed-faq-q{
  display:flex;justify-content:space-between;
  align-items:center;gap:16px;
  font-family:var(--display-editorial);
  font-size:18px;font-weight:700;
  color:var(--ink);line-height:1.4;
}
.ed-faq-q::after{
  content:'+';font-family:var(--body);
  font-size:22px;color:var(--ink-soft);
  transition:transform .25s;flex-shrink:0;
}
.ed-faq-item[open] .ed-faq-q::after{content:'−';color:var(--accent)}
.ed-faq-a{
  font-size:14.5px;color:var(--ink-soft);
  line-height:1.8;margin:14px 0 0;padding-bottom:4px;
}

/* Reduce hero motion */
@media (prefers-reduced-motion: reduce){
  .ed-hero-slide{transition:none}
}

/* ─── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
