/* =========================================================
   Ray Lenses — mobile-first luxury glassmorphic system
   ========================================================= */

:root {
  /* Palette */
  --ink:        #0a0907;
  --ink-2:      #100d0a;
  --ink-3:      #1a1612;
  --bone:       #f4ecdc;
  --bone-soft:  #e8dfca;
  --cream:      #faf4e7;
  --gold:       #bcc0c6;
  --gold-warm:  #d6d9de;
  --gold-deep:  #6c7078;
  --rose:       #b89488;
  --jade:       #5c7a6a;
  --plum:       #6b4e5d;

  /* Glass surfaces */
  --glass-1:        rgba(255, 250, 240, 0.045);
  --glass-2:        rgba(255, 250, 240, 0.075);
  --glass-3:        rgba(255, 250, 240, 0.11);
  --glass-border:   rgba(255, 245, 225, 0.16);
  --glass-border-2: rgba(255, 245, 225, 0.28);
  --glass-shadow:   0 28px 70px -28px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 245, 225, 0.10);

  /* Type */
  --f-display: "Bodoni Moda", "Didot", "Bodoni 72", "Cormorant Garamond", "Times New Roman", serif;
  --f-serif:   "Cormorant Garamond", "Times New Roman", serif;
  --f-sans:    "Inter", "Helvetica Neue", -apple-system, "Segoe UI", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;
  --f-arabic:  "Amiri", "Tajawal", "Cairo", "Noto Sans Arabic", -apple-system, sans-serif;
  --f-arabic-display: "Amiri", "Alyamama", "Aref Ruqaa", "El Messiri", serif;
  --f-arabic-accent: "Alyamama", "Aref Ruqaa", serif;

  /* Layout — mobile-first */
  --gutter: 18px;
  --max:    1480px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


@media (min-width: 760px) {
  :root { --gutter: 40px; }
}
@media (min-width: 1100px) {
  :root { --gutter: 80px; }
}
@media (min-width: 1440px) {
  :root { --gutter: 112px; }
}

/* =========================================================
   Mobile performance overrides
   ---------------------------------------------------------
   Below 760px (mobile), reduce/disable expensive paint work:
   - backdrop-filter is the #1 mobile perf killer; reduce blur
     radius drastically. On low-power devices fully disable.
   - content-visibility: auto on below-fold sections so the
     browser can skip layout/paint for off-screen content
     until the user scrolls near them.
   ========================================================= */
@media (max-width: 759px) {
  /* Tame backdrop-filter blur radius for paint cost */
  .nav-bar, .nav-bar.scrolled,
  .ccy-pill, .ccy-menu, .lang-pill,
  .panel.glass, .glass, .glass-strong,
  .summary.glass-strong, .drawer, .mobile-menu,
  .drawer-banner-strong, .drawer-banner,
  .bogo-bar, .free-ship-bar, .switch-prompt,
  .cookie-banner, .product-tag, .pdp-tag {
    backdrop-filter: blur(10px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(110%) !important;
  }
  /* Disable backdrop-filter entirely on the overlay scrim — it just dims */
  .drawer-scrim, .modal-scrim {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* prefers-reduced-motion: skip backdrop entirely (saves significant battery) */
  @media (prefers-reduced-motion: reduce) {
    .nav-bar, .panel.glass, .glass, .glass-strong,
    .summary.glass-strong, .drawer, .mobile-menu {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }
  }
}

/* =========================================================
   WhatsApp CTA (floating)
   ---------------------------------------------------------
   GCC-specific high-converting contact channel. Sits bottom-
   left on mobile (right side is reserved for the bogo dock /
   cart), bottom-right on desktop where the dock has room.
   ========================================================= */
.wa-cta {
  position: fixed;
  inset-block-end: 18px;
  inset-inline-start: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px 11px 12px;
  background: rgba(10, 9, 7, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(214, 217, 222, 0.32);
  border-radius: 999px;
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  text-decoration: none;
}
body.is-ar .wa-cta { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.wa-cta:hover { transform: translateY(-2px); background: rgba(20, 16, 12, 0.95); }
.wa-cta svg {
  width: 18px;
  height: 18px;
  fill: #25d366; /* WhatsApp green — sole brand-color touch on the whole site */
  flex-shrink: 0;
}
@media (max-width: 759px) {
  .wa-cta {
    inset-block-end: 14px;
    inset-inline-start: 14px;
    padding: 10px 14px 10px 11px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .wa-cta .wa-label { display: none; }
  .wa-cta { padding: 11px; border-radius: 999px; }
  .wa-cta svg { width: 20px; height: 20px; }
}

/* =========================================================
   Exit-intent code drawer
   ---------------------------------------------------------
   Shown once per visit when the user moves cursor toward the
   tab-close (desktop) or attempts to navigate back (mobile).
   Reveals the existing HELLO10 promo \u2014 no new offers needed.
   ========================================================= */
.exit-modal-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 7, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
  padding: 20px;
}
.exit-modal-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}
.exit-modal {
  position: relative;
  width: min(440px, 100%);
  background:
    radial-gradient(120% 100% at 10% 0%, rgba(188,192,198,0.10), transparent 60%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.96), rgba(10, 9, 7, 0.98));
  border: 1px solid rgba(214, 217, 222, 0.32);
  border-radius: 22px;
  padding: 36px 30px 28px;
  text-align: center;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.8);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.42s var(--ease-out), opacity 0.32s var(--ease);
}
.exit-modal-scrim.is-open .exit-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.exit-modal .eyebrow {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
body.is-ar .exit-modal .eyebrow { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.exit-modal h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
  color: var(--cream);
}
.exit-modal h3 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .exit-modal h3 { font-family: var(--f-arabic-display); }
body.is-ar .exit-modal h3 em { font-family: var(--f-arabic-display); font-style: normal; }
.exit-modal p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244,236,220,0.75);
  margin-bottom: 22px;
}
body.is-ar .exit-modal p { font-family: var(--f-arabic); font-size: 14px; line-height: 1.82; }
.exit-modal .exit-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(188,192,198,0.10);
  border: 1px dashed rgba(214,217,222,0.45);
  border-radius: 12px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--cream);
  cursor: pointer;
  user-select: all;
  transition: all 0.2s var(--ease);
}
.exit-modal .exit-code:hover { background: rgba(188,192,198,0.16); border-color: var(--gold); }
.exit-modal .exit-code-copy { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,236,220,0.5); font-family: var(--f-sans); }
.exit-modal .exit-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.exit-modal-close {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 14px;
  background: transparent;
  border: 0;
  color: rgba(244,236,220,0.45);
  font-size: 18px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.exit-modal-close:hover { color: var(--cream); }
#collection,
#ladder,
.edit-grid,
.reviews-strip,
.outro,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; }

html.has-js.i18n-pending body {
  opacity: 0;
}

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  overflow-x: hidden;
}
body {
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(188, 192, 198, 0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 90%, rgba(107, 78, 93, 0.16), transparent 60%),
    var(--ink);
  overflow-x: hidden;
  transition: opacity 0.18s var(--ease);
}

/* Arabic font swap */
html[dir="rtl"] body,
body.is-ar {
  font-family: var(--f-arabic);
  line-height: 1.82;
}
body.is-ar .display, body.is-ar .serif,
body.is-ar h1, body.is-ar h2, body.is-ar h3, body.is-ar h4 {
  font-family: var(--f-arabic-display);
  font-weight: 500;
}
body.is-ar h1 em, body.is-ar h2 em, body.is-ar h3 em, body.is-ar h4 em { font-family: var(--f-arabic-display); font-style: normal; font-weight: 500; }
body.is-ar .brand, body.is-ar .brand span:not(.mark) { font-family: var(--f-arabic-display); letter-spacing: 0.04em; }
html[dir="rtl"] :where(p, li, blockquote, label, small, figcaption, input, textarea, select, .meta, .product-desc, .lede, .eyebrow, .link, .btn, .field, .summary, .cart-line, .rev-card, .review, .exit-modal p),
body.is-ar :where(p, li, blockquote, label, small, figcaption, input, textarea, select, .meta, .product-desc, .lede, .eyebrow, .link, .btn, .field, .summary, .cart-line, .rev-card, .review, .exit-modal p) {
  line-height: 1.82;
}
/* Arabic display needs breathing room */
body.is-ar .hero-headline,
body.is-ar .section-head h2,
body.is-ar .checkout h1,
body.is-ar .pdp-info h1,
body.is-ar .outro .display,
body.is-ar .ladder-head h3 { line-height: 1.6; padding-block: 0.12em; }
body.is-ar .edit-card h4,
body.is-ar .recommend h3,
body.is-ar .product-name,
body.is-ar .panel h3,
body.is-ar .summary h4,
body.is-ar .ribbon-cell .k,
body.is-ar .cart-empty h4,
body.is-ar .drawer-head h3,
body.is-ar .totals-x .l.total,
body.is-ar .totals .line.total { line-height: 1.58; padding-block: 0.1em; }
body.is-ar .exit-modal h3 { line-height: 1.62; padding-block: 0.12em; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* =========================================================
   Strike-through prices in WARM red — psychological anchor
   ========================================================= */
:root { --strike: #d96a55; }
s, del,
.product-price s,
.pdp-price-row .compare,
.cart-line .px s,
.summary .lines .px s,
.totals .line.save,
.totals-x .l.save,
.rung .price s {
  color: var(--strike) !important;
  text-decoration-color: var(--strike);
  text-decoration-thickness: 1.2px;
  opacity: 0.95;
}
.pdp-price-row .compare { text-decoration-line: line-through; }

/* "Save" pills in cart shift to red-on-cream for grab-eye */
.cart-line .px .save-pill {
  color: var(--strike);
  border-color: rgba(217, 106, 85, 0.4);
  background: rgba(217, 106, 85, 0.08);
}

/* Smooth scroll for hash links — disabled when reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Keyboard focus */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible, .btn:focus-visible, .cart-btn:focus-visible, .ccy-pill:focus-visible, .lang-pill:focus-visible {
  outline-offset: 2px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 192, 198, 0.18);
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--bone);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 10px;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease);
}
body.is-ar .skip-link { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.skip-link:focus { transform: translateY(0); }

/* Cookie consent */
.consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  padding: 14px var(--gutter);
  display: flex; justify-content: center;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.consent.is-open { transform: translateY(0); pointer-events: auto; }
.consent-card {
  max-width: 820px;
  width: 100%;
  padding: 16px 18px;
  background: rgba(10, 9, 7, 0.85);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border-2);
  border-radius: 16px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
}
.consent-card p { flex: 1; min-width: 240px; font-size: 12.5px; color: rgba(244, 236, 220, 0.78); line-height: 1.5; }
.consent-card .row { gap: 8px; flex-wrap: wrap; }
@media (min-width: 760px) {
  .consent-card { padding: 18px 22px; gap: 22px; }
  .consent-card p { font-size: 13px; }
}

/* Newsletter success */
.outro form.is-sent { border-color: rgba(214, 217, 222, 0.5); background: rgba(188, 192, 198, 0.08); }
.outro form.is-sent input { display: none; }
.outro form.is-sent button { margin-inline: auto; }

/* Print */
@media print {
  body { background: #fff !important; color: #000 !important; }
  .site-header, .fab, .drawer, .scrim, .mobile-menu, .consent, .marquee, .hero-scroll, .ccy-menu { display: none !important; }
  .hero { min-height: auto !important; }
  .hero-media::after, .hero::after { display: none !important; }
  a { color: inherit !important; text-decoration: underline; }
  .product-media, .pdp-main, .edit-card { break-inside: avoid; }
}

/* No-JS fallback message */
.no-js-banner {
  display: none;
  padding: 16px var(--gutter);
  background: rgba(188, 192, 198, 0.1);
  border-bottom: 1px solid rgba(188, 192, 198, 0.3);
  color: var(--gold-warm);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.08em;
}
:root:not(.has-js) .no-js-banner { display: block; }

/* ----- type roles ----------------------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  font-feature-settings: "ss01" on, "liga" on;
}
.serif {
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
body.is-ar .eyebrow {
  font-family: var(--f-arabic);
  letter-spacing: 0.18em;
  text-transform: none;
}
.mono { font-family: var(--f-mono); font-feature-settings: "tnum" on; }

/* All currency / numeric displays render LTR (digits + currency code) so RTL bidi
   doesn't flip "15.000 BHD" to "BHD 15.000". */
.mono,
.product-price, .hero-side .price,
.cart-line .px, .summary .lines .px,
.pdp-price-row .price, .pdp-price-row .compare,
.totals .line .mono, .totals-x .l .mono,
.rung .price, .ccy-pill, .lang-pill,
.cart-btn .count, .fab .pulse,
[data-bhd], [data-ccy-label] {
  unicode-bidi: isolate;
  direction: ltr;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ----- layout helpers ------------------------------------- */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.row { display: flex; align-items: center; }

/* ----- glass primitive ------------------------------------ */
.glass {
  background: linear-gradient(180deg, var(--glass-2), var(--glass-1));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(36px) saturate(140%);
  -webkit-backdrop-filter: blur(36px) saturate(140%);
  box-shadow: var(--glass-shadow);
}
.glass-strong {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.13), rgba(255, 250, 240, 0.05));
  border: 1px solid var(--glass-border-2);
  backdrop-filter: blur(44px) saturate(150%);
  -webkit-backdrop-filter: blur(44px) saturate(150%);
  box-shadow: var(--glass-shadow);
}

/* ----- buttons -------------------------------------------- */
.btn {
  --bg: transparent;
  --fg: var(--bone);
  --bd: var(--glass-border-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
body.is-ar .btn {
  font-family: var(--f-arabic);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 760px) {
  .btn { padding: 16px 26px; font-size: 13px; }
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost { --bd: var(--glass-border-2); }
.btn-ghost:hover { --bg: rgba(255, 250, 240, 0.06); }
.btn-bone { --bg: var(--bone); --fg: var(--ink); --bd: var(--bone); }
.btn-bone:hover { --bg: var(--cream); }
.btn-gold { --bg: var(--gold); --fg: var(--ink); --bd: var(--gold); }
.btn-gold:hover { --bg: var(--gold-warm); }
.btn-sm { padding: 10px 16px; font-size: 11px; min-height: 38px; }
.btn-block { width: 100%; }

.link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}
body.is-ar .link { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.link::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform-origin: var(--lo-start, left);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
[dir="rtl"] .link::after { --lo-start: right; }
.link:hover::after { opacity: 1; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
@media (min-width: 1100px) {
  .site-header {
    padding: 18px var(--gutter);
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
  }
}
.site-header.is-scrolled {
  padding-top: 10px; padding-bottom: 10px;
  background: rgba(10, 9, 7, 0.62);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid rgba(255, 245, 225, 0.08);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 8px; }
@media (min-width: 1100px) {
  .nav-left, .nav-right { gap: 22px; }
  .nav-right { justify-content: flex-end; }
}
.nav a {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
}
body.is-ar .nav a { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.nav a:hover { opacity: 1; }
.nav-desktop { display: none; }
@media (min-width: 1100px) { .nav-desktop { display: contents; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--bone);
  white-space: nowrap;
  justify-self: center;
}
@media (min-width: 760px) { .brand { font-size: 22px; letter-spacing: 0.32em; gap: 14px; } }
.brand-logo {
  width: 30px; height: 30px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
@media (min-width: 760px) { .brand-logo { width: 38px; height: 38px; } }

/* burger */
.burger {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  border: 1px solid var(--glass-border);
  color: var(--bone);
}
.burger:hover { background: rgba(255,250,240,0.06); }
@media (min-width: 1100px) { .burger { display: none; } }

.ccy-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--bone);
  transition: background 0.3s var(--ease);
  min-height: 34px;
}
.ccy-pill:hover { background: rgba(255,250,240,0.06); }
.ccy-pill svg { opacity: 0.6; transition: transform 0.3s var(--ease); }
.ccy-pill:hover svg { opacity: 1; }

.lang-pill {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--bone);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.lang-pill:hover { background: var(--bone); color: var(--ink); }

.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s var(--ease);
  min-height: 34px;
}
body.is-ar .cart-btn { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.cart-btn:hover { background: rgba(255,250,240, 0.06); }
.cart-btn .count {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px; letter-spacing: 0; font-weight: 700;
  font-family: var(--f-mono);
}
.cart-btn .label { display: none; }
@media (min-width: 760px) { .cart-btn .label { display: inline; } }

/* currency menu */
.ccy-menu {
  position: fixed;
  z-index: 200;
  min-width: 220px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.92), rgba(10, 9, 7, 0.95));
  border: 1px solid var(--glass-border-2);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.ccy-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.ccy-menu .ccy-item {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bone);
  cursor: pointer;
  transition: background 0.2s var(--ease);
  text-align: start;
}
body.is-ar .ccy-menu .ccy-item { font-family: var(--f-arabic); letter-spacing: 0.02em; font-size: 13px; }
.ccy-menu .ccy-item:hover { background: rgba(255,250,240,0.06); }
.ccy-menu .ccy-item .code { font-family: var(--f-mono); color: var(--gold-warm); font-size: 11px; letter-spacing: 0.05em; unicode-bidi: isolate; direction: ltr; }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 9, 7, 0.96);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu .mm-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(255,245,225,0.08);
}
.mobile-menu nav {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  gap: 6px;
}
.mobile-menu nav a {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1.2;
  color: var(--cream);
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid rgba(255,245,225,0.06);
}
body.is-ar .mobile-menu nav a { font-family: var(--f-arabic-display); }
.mobile-menu .mm-foot {
  padding: 24px var(--gutter);
  border-top: 1px solid rgba(255,245,225,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(244,236,220,0.6);
}
@media (min-width: 1100px) { .mobile-menu { display: none; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) brightness(0.85);
  transform-origin: center;
}
@media (max-width: 760px) {
  .hero-media img { object-position: 82% 46%; }
  html[dir="ltr"] .hero-media img { object-position: 18% 46%; }
}
@media (min-width: 761px) {
  html[dir="ltr"] .hero-media img { transform: scaleX(-1); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,9,7,0.55) 0%, rgba(10,9,7,0.18) 30%, rgba(10,9,7,0.65) 75%, rgba(10,9,7,0.98) 100%),
    linear-gradient(90deg, rgba(10,9,7,0.6) 0%, transparent 55%);
  pointer-events: none;
}
[dir="rtl"] .hero::after {
  background:
    linear-gradient(180deg, rgba(10,9,7,0.55) 0%, rgba(10,9,7,0.18) 30%, rgba(10,9,7,0.65) 75%, rgba(10,9,7,0.98) 100%),
    linear-gradient(-90deg, rgba(10,9,7,0.6) 0%, transparent 55%);
}

.hero-inner {
  padding: 120px var(--gutter) 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 1100px) {
  .hero-inner {
    padding: 180px var(--gutter) 72px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 56px;
  }
}
.hero-copy { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero-headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(52px, 13vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--cream);
}
body.is-ar .hero-headline {
  font-family: var(--f-arabic-display);
  letter-spacing: 0;
  font-size: clamp(40px, 7.2vw, 86px);
  line-height: 1.36;
}
.hero-headline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
}
body.is-ar .hero-headline em { font-family: var(--f-arabic-display); font-style: normal; }

.hero-sub {
  margin-top: 22px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244, 236, 220, 0.82);
}
@media (min-width: 760px) { .hero-sub { font-size: 17px; margin-top: 28px; } }

.hero-actions {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
@media (min-width: 760px) { .hero-actions { margin-top: 36px; gap: 14px; } }

.hero-meta {
  margin-top: 24px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244, 236, 220, 0.6);
}
body.is-ar .hero-meta { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
@media (min-width: 760px) { .hero-meta { gap: 32px; margin-top: 32px; font-size: 12px; } }
.hero-meta b { color: var(--bone); font-weight: 500; letter-spacing: 0.04em; }

.hero-side {
  display: grid;
  gap: 10px;
  align-self: end;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}
@media (min-width: 1100px) { .hero-side { gap: 12px; max-width: 360px; justify-self: end; } }
.hero-side .glass {
  border-radius: 16px;
  padding: 12px 14px;
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
@media (min-width: 760px) { .hero-side .glass { padding: 14px; grid-template-columns: 52px 1fr auto; gap: 16px; } }
.hero-side .glass:hover { transform: translateX(-4px); background: linear-gradient(180deg, var(--glass-3), var(--glass-1)); }
[dir="rtl"] .hero-side .glass:hover { transform: translateX(4px); }
.hero-side .swatch {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--c1) 0%, var(--c1) 28%, var(--c2) 38%, var(--c3) 70%, #1a1410 100%);
  position: relative;
  border: 1px solid rgba(255,245,225,0.18);
  box-shadow: inset 0 0 0 5px rgba(10,9,7,0.4);
}
@media (min-width: 760px) { .hero-side .swatch { width: 52px; height: 52px; } }
.hero-side .swatch::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: #0a0907;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(255,245,225,0.06);
}
.hero-side h4 { font-family: var(--f-serif); font-size: 17px; font-weight: 500; letter-spacing: 0.005em; }
body.is-ar .hero-side h4 { font-family: var(--f-arabic-display); }
.hero-side p { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,236,220,0.55); margin-top: 2px; }
body.is-ar .hero-side p { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.hero-side .price { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--gold-warm); white-space: nowrap; }

.hero-scroll {
  display: none;
}
@media (min-width: 1100px) {
  .hero-scroll {
    display: flex;
    position: absolute;
    inset-inline-start: var(--gutter); bottom: 24px;
    flex-direction: column; align-items: center; gap: 12px;
    writing-mode: vertical-rl;
    font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(244,236,220,0.6);
  }
  [dir="rtl"] .hero-scroll { writing-mode: vertical-lr; }
  body.is-ar .hero-scroll { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.1em; }
  .hero-scroll::after {
    content: ""; width: 1px; height: 56px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: drip 2.4s ease-in-out infinite;
  }
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid rgba(255,245,225,0.08);
  border-bottom: 1px solid rgba(255,245,225,0.08);
  background: rgba(10,9,7,0.4);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 38s linear infinite;
}
@media (min-width: 760px) { .marquee-track { gap: 56px; } }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244, 236, 220, 0.74);
  white-space: nowrap;
}
body.is-ar .marquee-track span { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
@media (min-width: 760px) { .marquee-track span { font-size: 12px; letter-spacing: 0.32em; gap: 14px; } }
.marquee-track .star { color: var(--gold); font-size: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding-top: 72px; padding-bottom: 72px; position: relative; }
@media (min-width: 760px) { .section { padding-top: 96px; padding-bottom: 96px; } }
@media (min-width: 1100px) { .section { padding-top: 128px; padding-bottom: 128px; } }
.section + .section { padding-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 56px; margin-bottom: 56px; }
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--cream);
}
body.is-ar .section-head h2 { font-family: var(--f-arabic-display); letter-spacing: 0; font-size: clamp(36px, 7vw, 80px); }
.section-head h2 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .section-head h2 em { font-family: var(--f-arabic-display); font-style: normal; }
.section-head .h-meta { display: grid; gap: 16px; max-width: 460px; }
.section-head .h-meta p { color: rgba(244,236,220,0.72); font-size: 15px; line-height: 1.55; }
@media (min-width: 760px) { .section-head .h-meta p { font-size: 16px; } }
.section-head .h-meta .row { gap: 12px; }

/* =========================================================
   COLLECTION GRID — 1:1 square images, mobile-first
   ========================================================= */
.collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 12px;
}
@media (min-width: 760px) { .collection { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }
@media (min-width: 1100px) { .collection { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; } }
.product {
  position: relative;
  display: grid;
  gap: 14px;
  cursor: pointer;
}
@media (min-width: 760px) { .product { gap: 16px; } }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(255,245,225,0.06);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out);
  filter: saturate(0.95) contrast(1.02);
}
.product:hover .product-media img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  inset-block-start: 12px; inset-inline-start: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px;
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(10,9,7,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--bone);
}
@media (min-width: 760px) { .product-tag { inset-block-start: 16px; inset-inline-start: 16px; padding: 7px 13px; font-size: 10px; letter-spacing: 0.24em; } }
body.is-ar .product-tag { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 11px; }
.product-tag.gold { color: var(--gold-warm); border-color: rgba(214, 217, 222, 0.35); }
.product-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.product-tag.low .dot { background: var(--rose); }

.product-quick {
  position: absolute;
  inset-block-end: 12px; inset-inline-end: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(244, 236, 220, 0.94);
  color: var(--ink);
  border-radius: 999px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease), background 0.3s var(--ease);
  min-height: 36px;
}
body.is-ar .product-quick { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; font-weight: 600; }
@media (min-width: 760px) {
  .product-quick { inset-block-end: 16px; inset-inline-end: 16px; padding: 11px 16px; font-size: 11px; letter-spacing: 0.18em; transform: translateY(8px); opacity: 0; }
  .product:hover .product-quick { opacity: 1; transform: translateY(0); }
}
.product-quick:hover { background: var(--cream); }
.product-quick svg { width: 11px; height: 11px; }

.product-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}
.product-name {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--cream);
  line-height: 1.1;
  white-space: nowrap;
}
body.is-ar .product-name { font-family: var(--f-arabic-display); }
@media (min-width: 760px) { .product-name { font-size: 26px; } }
.product-desc {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 220, 0.62);
  margin-top: 4px;
  line-height: 1.4;
}
@media (min-width: 760px) { .product-desc { font-size: 12px; margin-top: 6px; } }
.product-price {
  text-align: end;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-warm);
  line-height: 1.3;
  white-space: nowrap;
}
@media (min-width: 760px) { .product-price { font-size: 13px; } }
.product-price s { display: block; color: rgba(244,236,220,0.4); font-size: 10.5px; }
.product-shade-strip {
  margin-top: 8px;
  display: flex; gap: 5px;
}
.product-shade-strip .chip {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid rgba(255,245,225,0.18);
  background: var(--c, var(--gold));
}
@media (min-width: 760px) { .product-shade-strip .chip { width: 14px; height: 14px; } }

/* =========================================================
   LADDER (AOV)
   ========================================================= */
.ladder-wrap {
  border-radius: 22px;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 760px) { .ladder-wrap { padding: 40px 36px; border-radius: 24px; } }
@media (min-width: 1100px) { .ladder-wrap { padding: 56px; border-radius: 28px; } }
.ladder-wrap::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(214, 217, 222, 0.6), transparent 30%, transparent 70%, rgba(214, 217, 222, 0.3));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.ladder-head {
  display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 760px) { .ladder-head { margin-bottom: 44px; gap: 24px; } }
.ladder-head h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1;
  color: var(--cream);
}
body.is-ar .ladder-head h3 em { font-family: var(--f-arabic-display); font-style: normal; }

.ladder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 14px;
}
@media (min-width: 760px) { .ladder { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.ladder::before {
  content: "";
  position: absolute;
  inset-inline: 12%; top: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,217,222,0.1), rgba(214,217,222,0.45), rgba(214,217,222,0.1));
  z-index: 0;
  display: none;
}
@media (min-width: 760px) { .ladder::before { display: block; } }
.rung {
  position: relative;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.rung .node {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10,9,7,0.7);
  border: 1px solid var(--glass-border-2);
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--bone);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
@media (min-width: 760px) { .rung .node { width: 52px; height: 52px; font-size: 22px; } }
.rung.is-active .node {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(188, 192, 198, 0.15);
}
.rung.is-hot .node {
  background: var(--bone); color: var(--ink); border-color: var(--bone);
  box-shadow: 0 0 0 5px rgba(244, 236, 220, 0.12);
}
.rung .label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,236,220,0.72); }
body.is-ar .rung .label { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.rung .price { font-family: var(--f-mono); font-size: 13px; color: var(--cream); white-space: nowrap; }
.rung .price s { color: rgba(244,236,220,0.4); margin-inline-end: 5px; font-size: 11px; }
.rung .save { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-warm); }
body.is-ar .rung .save { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 11px; }

.ladder-foot {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,245,225,0.08);
}
@media (min-width: 760px) { .ladder-foot { margin-top: 36px; padding-top: 26px; gap: 24px; } }
.ladder-foot p { font-size: 13px; letter-spacing: 0.06em; color: rgba(244,236,220,0.72); flex: 1; min-width: 250px; }
.ladder-foot b { color: var(--gold-warm); font-weight: 500; }

/* =========================================================
   EDITORIAL (lens story)
   ========================================================= */
.edit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .edit-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.edit-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
@media (min-width: 760px) { .edit-card { aspect-ratio: 1 / 1; } }
.edit-card-portrait { aspect-ratio: 1 / 1; }
@media (min-width: 760px) { .edit-card-portrait { aspect-ratio: 1 / 1; } }
.edit-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.edit-card:hover img { transform: scale(1.04); }
.edit-card .overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(10,9,7,0.85));
  color: var(--cream);
}
@media (min-width: 760px) { .edit-card .overlay { padding: 32px 30px; } }
.edit-card h4 { font-family: var(--f-display); font-size: clamp(26px, 4vw, 42px); line-height: 1; }
.edit-card h4 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .edit-card h4 em { font-family: var(--f-arabic-display); font-style: normal; }
.edit-card p {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(244,236,220,0.78);
  max-width: 420px;
  line-height: 1.5;
}
@media (min-width: 760px) { .edit-card p { font-size: 14px; margin-top: 10px; } }
.edit-card .num {
  position: absolute; inset-block-start: 18px; inset-inline-start: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--bone);
  opacity: 0.85;
}
@media (min-width: 760px) { .edit-card .num { inset-block-start: 22px; inset-inline-start: 26px; } }

/* ribbon */
.ribbon {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255,245,225,0.08);
  border: 1px solid rgba(255,245,225,0.08);
}
@media (min-width: 760px) { .ribbon { grid-template-columns: repeat(4, 1fr); margin-top: 56px; } }
.ribbon-cell {
  padding: 24px 20px;
  background: var(--ink);
  display: grid; gap: 10px;
}
@media (min-width: 760px) { .ribbon-cell { padding: 32px 26px; gap: 12px; } }
.ribbon-cell .k { font-family: var(--f-display); font-size: 36px; line-height: 1; color: var(--cream); }
@media (min-width: 760px) { .ribbon-cell .k { font-size: 44px; } }
body.is-ar .ribbon-cell .k { font-family: var(--f-arabic-display); }
.ribbon-cell .k em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .ribbon-cell .k em { font-family: var(--f-arabic-display); font-style: normal; }
.ribbon-cell .l { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,236,220,0.62); }
body.is-ar .ribbon-cell .l { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-strip {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 760px) { .reviews-strip { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.review {
  padding: 24px;
  border-radius: 18px;
  display: grid; gap: 14px;
}
@media (min-width: 760px) { .review { padding: 30px; gap: 18px; } }
.review .stars { color: var(--gold-warm); letter-spacing: 0.3em; font-size: 13px; }
.review blockquote {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--cream);
  font-style: italic;
}
body.is-ar .review blockquote { font-family: var(--f-arabic-display); font-style: normal; }
@media (min-width: 760px) { .review blockquote { font-size: 20px; line-height: 1.35; } }
.review blockquote::before { content: "\201C"; margin-inline-end: 4px; color: var(--gold-warm); }
.review blockquote::after { content: "\201D"; margin-inline-start: 2px; color: var(--gold-warm); }
.review-foot { display: flex; align-items: center; gap: 12px; }
.review-foot .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg, linear-gradient(135deg, var(--gold), var(--gold-deep)));
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--ink);
  font-size: 14px;
}
.review-foot .who { font-size: 12px; letter-spacing: 0.06em; color: rgba(244,236,220,0.85); }
.review-foot .who small { display: block; color: rgba(244,236,220,0.5); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
body.is-ar .review-foot .who small { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 11px; }

/* =========================================================
   OUTRO / FOOTER
   ========================================================= */
.outro {
  position: relative;
  padding: 80px var(--gutter);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 760px) { .outro { padding: 120px var(--gutter); } }
@media (min-width: 1100px) { .outro { padding: 160px var(--gutter); } }
.outro .display { font-size: clamp(52px, 12vw, 132px); }
body.is-ar .outro .display { font-family: var(--f-arabic-display); }
.outro p { margin: 18px auto 0; max-width: 480px; color: rgba(244,236,220,0.72); font-size: 15px; }
@media (min-width: 760px) { .outro p { margin-top: 22px; font-size: 16px; } }
.outro form {
  margin: 28px auto 0;
  max-width: 480px;
  display: grid; grid-template-columns: 1fr auto; gap: 6px;
  padding: 5px;
  border-radius: 999px;
}
@media (min-width: 760px) { .outro form { margin-top: 36px; padding: 6px; gap: 8px; } }
.outro input[type="email"] {
  background: transparent; border: 0; outline: 0;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--bone);
  min-width: 0;
}
@media (min-width: 760px) { .outro input[type="email"] { padding: 14px 22px; } }
.outro input[type="email"]::placeholder { color: rgba(244,236,220,0.45); }

.site-footer {
  border-top: 1px solid rgba(255,245,225,0.08);
  padding: 44px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  align-items: start;
}
@media (min-width: 760px) { .site-footer { padding: 56px var(--gutter); grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; } }
.site-footer h6 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 14px; font-weight: 500; }
body.is-ar .site-footer h6 { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { font-size: 13px; color: rgba(244,236,220,0.78); transition: color 0.3s var(--ease); }
.site-footer a:hover { color: var(--bone); }
.site-footer .brand {
  max-width: 100%;
  overflow: visible;
  justify-self: start;
}
.site-footer .brand span {
  overflow: visible;
  text-overflow: clip;
}
body.is-ar .site-footer .brand,
body.is-ar .site-footer .brand span {
  font-family: var(--f-display);
}
.site-footer .meta { font-size: 13px; color: rgba(244,236,220,0.62); max-width: 320px; line-height: 1.55; grid-column: 1 / -1; }
@media (min-width: 760px) { .site-footer .meta { grid-column: auto; } }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,245,225,0.06);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,236,220,0.5);
}
body.is-ar .footer-bottom { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }

/* =========================================================
   CART DRAWER
   ========================================================= */
.scrim {
  position: fixed; inset: 0;
  background: rgba(10,9,7,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 90;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; bottom: 0;
  inset-inline-end: 0;
  width: min(440px, 92vw);
  z-index: 100;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.92), rgba(10, 9, 7, 0.96));
  border-inline-start: 1px solid var(--glass-border);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
}
[dir="rtl"] .drawer { transform: translateX(-100%); }
.drawer.is-open { transform: translateX(0); }
[dir="rtl"] .drawer.is-open { transform: translateX(0); }

.drawer-head {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,245,225,0.06);
}
.drawer-head h3 { font-family: var(--f-display); font-size: 24px; }
body.is-ar .drawer-head h3 { font-family: var(--f-arabic-display); }
@media (min-width: 760px) { .drawer-head { padding: 24px 28px; } .drawer-head h3 { font-size: 28px; } }
.drawer-close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  transition: background 0.3s var(--ease);
}
.drawer-close:hover { background: rgba(255,250,240,0.06); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: grid; gap: 18px;
  align-content: start;
}
@media (min-width: 760px) { .drawer-body { padding: 22px 28px; gap: 22px; } }

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,245,225,0.06);
  align-items: start;
}
@media (min-width: 760px) { .cart-line { grid-template-columns: 72px 1fr auto; gap: 16px; padding-bottom: 22px; } }
.cart-line:last-child { border-bottom: 0; padding-bottom: 0; }
.cart-line img {
  width: 64px; height: 64px;
  object-fit: cover;
  border: 1px solid rgba(255,245,225,0.08);
}
@media (min-width: 760px) { .cart-line img { width: 72px; height: 72px; } }
.cart-line .name { font-family: var(--f-serif); font-size: 17px; font-weight: 500; line-height: 1.15; }
body.is-ar .cart-line .name { font-family: var(--f-arabic-display); }
.cart-line .desc { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,236,220,0.55); margin-top: 4px; }
body.is-ar .cart-line .desc { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.cart-line .qty { margin-top: 10px; display: inline-flex; align-items: center; gap: 4px; padding: 2px; border: 1px solid var(--glass-border); border-radius: 999px; }
.cart-line .qty button { width: 24px; height: 24px; display: grid; place-items: center; font-size: 13px; color: rgba(244,236,220,0.78); }
.cart-line .qty button:hover { color: var(--bone); }
.cart-line .qty span { min-width: 24px; text-align: center; font-family: var(--f-mono); font-size: 12px; }
.cart-line .px { font-family: var(--f-mono); font-size: 12.5px; color: var(--gold-warm); text-align: end; white-space: nowrap; }
.cart-line .px s { display: block; font-size: 10.5px; color: rgba(244,236,220,0.4); }
.cart-line .px .save-pill {
  display: inline-block; margin-top: 4px;
  font-family: var(--f-sans);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 3px 8px;
  border: 1px solid rgba(188,192,198,0.3);
  border-radius: 999px;
}
body.is-ar .cart-line .px .save-pill { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 10px; }

.drawer-foot {
  border-top: 1px solid rgba(255,245,225,0.08);
  padding: 20px 24px 24px;
  display: grid; gap: 12px;
}
@media (min-width: 760px) { .drawer-foot { padding: 22px 28px 28px; gap: 14px; } }
.totals { display: grid; gap: 7px; font-size: 13px; }
.totals .line { display: flex; justify-content: space-between; gap: 12px; color: rgba(244,236,220,0.75); }
.totals .line.save { color: var(--gold-warm); }
.totals .line.total { font-size: 18px; font-family: var(--f-display); color: var(--cream); padding-top: 9px; border-top: 1px solid rgba(255,245,225,0.06); margin-top: 4px; }
body.is-ar .totals .line.total { font-family: var(--f-arabic-display); }

.free-token {
  font-family: var(--f-display);
  color: #5fb37a;            /* tasteful jade green — reads against warm cream */
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-feature-settings: "ss01" on;
  unicode-bidi: isolate;
  direction: ltr;
}
body.is-ar .free-token { font-family: var(--f-arabic-display); }

/* drawer banner — BOGO state (stronger gold) */
.drawer-banner-strong {
  background: linear-gradient(135deg, rgba(188,192,198,0.18), rgba(188,192,198,0.06));
  border-color: rgba(214, 217, 222, 0.5);
  color: var(--cream);
}
.drawer-banner-strong b { color: var(--gold-warm); }

.drawer-banner {
  padding: 12px 14px;
  background: rgba(188,192,198,0.10);
  border: 1px solid rgba(188,192,198,0.32);
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold-warm);
  display: flex; gap: 10px; align-items: center;
  line-height: 1.4;
}
.drawer-banner b { color: var(--cream); font-weight: 500; }

.cart-empty {
  text-align: center;
  display: grid; gap: 14px; justify-items: center;
  padding: 40px 24px;
}
.cart-empty .ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  color: var(--gold-warm);
}
.cart-empty h4 { font-family: var(--f-display); font-size: 26px; }
body.is-ar .cart-empty h4 { font-family: var(--f-arabic-display); }
.cart-empty p { color: rgba(244,236,220,0.6); max-width: 280px; font-size: 13px; }

/* =========================================================
   Header account / order-tracking link (injected by app.js)
   ========================================================= */
.acct-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  color: var(--bone); opacity: 0.82; text-decoration: none;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.acct-link:hover { opacity: 1; color: var(--gold-warm); }
@media (max-width: 600px) { .acct-link { width: 32px; height: 32px; } }

/* =========================================================
   FAB (AOV orb) — desktop only; on mobile the header cart suffices
   ========================================================= */
.fab {
  display: none;
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 70;
  align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px;
  background: rgba(10,9,7,0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border-2);
  border-radius: 999px;
  color: var(--bone);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 900px) {
  .fab.is-on { display: inline-flex; }
}
body.is-ar .fab { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
[dir="rtl"] .fab { padding: 10px 10px 10px 14px; }
.fab:hover { transform: translateY(-2px); background: rgba(10,9,7,0.92); }
.fab [data-fab-headline] {
  display: inline-block;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fab .pulse {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--f-mono); font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}
.fab .pulse::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
.fab b { color: var(--gold-warm); font-weight: 500; }

/* =========================================================
   MOBILE FINAL POLISH (<= 600px)
   ========================================================= */
@media (max-width: 600px) {
  /* Tap-target floors */
  .btn { min-height: 46px; }
  .btn-sm { min-height: 40px; }
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    padding-inline: 12px;
  }
  .lang-pill, .ccy-pill, .burger { min-height: 38px; min-width: 38px; }
  .nav-right, .nav-left { min-width: 0; gap: 6px; }
  .nav-right { justify-content: flex-end; }
  /* Tighter brand and compact icon controls so header doesn't overflow. */
  .site-header .brand, .mobile-menu .brand { max-width: 34vw; overflow: hidden; font-size: 14px; letter-spacing: 0.12em; gap: 7px; }
  .site-header .brand span, .mobile-menu .brand span { overflow: hidden; text-overflow: ellipsis; }
  .site-footer .brand { max-width: 100%; font-size: 16px; letter-spacing: 0.16em; gap: 9px; }
  .site-footer .brand span { overflow: visible; text-overflow: clip; }
  .brand-logo { width: 26px; height: 26px; }
  .ccy-pill, .cart-btn {
    width: 38px;
    min-width: 38px;
    padding-inline: 0;
    justify-content: center;
  }
  .ccy-pill { gap: 0; }
  .ccy-pill [data-ccy-label] { display: none; }
  .cart-btn { gap: 0; }
  .cart-btn .count {
    position: absolute;
    inset-block-start: -5px;
    inset-inline-end: -3px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 9px;
  }
  /* PDP info breathing room */
  .pdp-info h1 { font-size: clamp(40px, 14vw, 56px); }
  .pdp-info .lede { font-size: 16px; }
  .pdp-price-row .price { font-size: 28px; }
  .product-foot {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }
  .product-price { text-align: start; }
  .product-name {
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }
  body.is-ar .product-name { font-size: clamp(22px, 6.1vw, 26px); }
  /* Drawer full width on phones */
  .drawer { width: 100vw; max-width: 100vw; border-inline-start: 0; }
  /* Promo input + apply stack */
  .code-field { grid-template-columns: 1fr; gap: 8px; }
  .code-field .btn { width: 100%; }
  /* Touch-swipe replaces arrows on review carousel */
  .pdp-reviews-controls { display: none; }
  /* Ladder rung tightening */
  .ladder { gap: 18px 12px; }
  .rung .price { font-size: 12px; }
}

/* =========================================================
   Social-proof line under price
   ========================================================= */
.social-proof {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  padding: 14px 0;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: rgba(244,236,220,0.7);
  border-bottom: 1px solid rgba(255,245,225,0.06);
}
body.is-ar .social-proof { font-size: 13px; }
.sp-live { display: inline-flex; align-items: center; gap: 7px; color: var(--cream); }
.sp-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #5c9a6a;
  box-shadow: 0 0 0 4px rgba(92, 154, 106, 0.18);
  animation: pulse-live 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-live {
  0%   { box-shadow: 0 0 0 0   rgba(92, 154, 106, 0.5); }
  100% { box-shadow: 0 0 0 8px rgba(92, 154, 106, 0); }
}
.sp-sep { color: rgba(244,236,220,0.3); }
.social-proof b { color: var(--cream); font-weight: 500; }
@media (max-width: 600px) { .social-proof { font-size: 11px; gap: 8px; } }

/* =========================================================
   BOGO countdown bar (fixed top strip, above header)
   ========================================================= */
:root { --bogo-h: 34px; }
@media (max-width: 600px) { :root { --bogo-h: 32px; } }
.bogo-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 85; /* above header */
  height: var(--bogo-h);
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--gutter);
  background: linear-gradient(90deg, rgba(188,192,198,0.22), rgba(214, 217, 222, 0.32), rgba(188,192,198,0.22));
  border-bottom: 1px solid rgba(214, 217, 222, 0.38);
  color: var(--cream);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
body.is-ar .bogo-bar { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; font-weight: 600; }
.bogo-bar b { color: var(--gold-warm); font-weight: 600; padding-inline-end: 0.18em; }
@media (max-width: 600px) { .bogo-bar { font-size: 10px; letter-spacing: 0.1em; } }

/* Push header + hero down by bar height */
.site-header { top: var(--bogo-h); }
/* hero-inner controls actual hero padding; bump it down by bar height */
.hero-inner { padding-top: calc(120px + var(--bogo-h)); }
@media (min-width: 1100px) { .hero-inner { padding-top: calc(180px + var(--bogo-h)); } }
.pdp { padding-top: calc(100px + var(--bogo-h)); }
@media (min-width: 900px)  { .pdp { padding-top: calc(120px + var(--bogo-h)); } }
@media (min-width: 1100px) { .pdp { padding-top: calc(140px + var(--bogo-h)); } }
.checkout { padding-top: calc(96px + var(--bogo-h)); }
@media (min-width: 900px) { .checkout { padding-top: calc(120px + var(--bogo-h)); } }

/* Switch prompt — let the "Add {Name}" button shrink, no clip */
.switch-prompt-actions .btn[data-switch-add] { flex: 2 1 0; min-width: 0; }

/* =========================================================
   SWITCH-SHADE PROMPT
   ========================================================= */
.switch-prompt {
  margin-top: 14px;
  padding: 0;
  background: linear-gradient(135deg, rgba(188,192,198,0.13), rgba(188,192,198,0.04));
  border: 1px solid rgba(214, 217, 222, 0.42);
  border-radius: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin-top 0.3s var(--ease);
}
.switch-prompt[hidden] { display: none; }
.switch-prompt.is-open { max-height: 220px; opacity: 1; }
.switch-prompt-inner {
  padding: 16px 18px;
  display: grid;
  gap: 12px;
}
@media (min-width: 760px) { .switch-prompt-inner { padding: 18px 20px; gap: 14px; } }
.switch-prompt-copy { display: grid; gap: 4px; }
.switch-prompt-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  line-height: 1.2;
}
body.is-ar .switch-prompt-title { font-family: var(--f-arabic-display); font-style: normal; }
.switch-prompt-title em { color: var(--gold-warm); font-weight: 500; }
.switch-prompt-desc { font-size: 12.5px; color: rgba(244,236,220,0.72); line-height: 1.45; }
.switch-prompt-desc b { color: var(--cream); font-weight: 500; }
.switch-prompt-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.switch-prompt-actions .btn { flex: 1; min-width: 130px; }
@media (max-width: 600px) {
  .switch-prompt-actions { gap: 6px; }
  .switch-prompt-actions .btn { min-width: 0; padding: 12px 14px; font-size: 11px; letter-spacing: 0.12em; }
  body.is-ar .switch-prompt-actions .btn { font-size: 12.5px; }
}
.pdp {
  padding: 100px var(--gutter) 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 900px) { .pdp { grid-template-columns: 1.1fr 1fr; gap: 48px; padding: 120px var(--gutter) 72px; } }
@media (min-width: 1100px) { .pdp { gap: 64px; padding: 140px var(--gutter) 80px; } }
.pdp-gallery { display: grid; gap: 12px; }
.pdp-main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 760px) { .pdp-thumbs { gap: 10px; } }
.pdp-thumbs button {
  aspect-ratio: 1;
  border: 1px solid rgba(255,245,225,0.1);
  background: var(--ink-2);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
  padding: 0;
  position: relative;
}
.pdp-thumbs button:hover { border-color: rgba(255,245,225,0.28); }
.pdp-thumbs button.is-active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(188,192,198,0.18); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   PDP TOAST (silent add confirmation)
   ========================================================= */
.pdp-toast {
  position: fixed;
  inset-block-start: auto;
  inset-block-end: 90px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 92;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px 12px 12px;
  min-width: min(360px, calc(100vw - 32px));
  max-width: 420px;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.92), rgba(10, 9, 7, 0.95));
  border: 1px solid rgba(214, 217, 222, 0.42);
  border-radius: 18px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.pdp-toast.is-open { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.pdp-toast img { width: 44px; height: 44px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.pdp-toast > div { flex: 1; min-width: 0; }
.pdp-toast-title { font-family: var(--f-serif); font-size: 15px; font-weight: 500; color: var(--cream); line-height: 1.2; }
body.is-ar .pdp-toast-title { font-family: var(--f-arabic-display); }
.pdp-toast-title b { color: var(--gold-warm); font-weight: 500; }
.pdp-toast-sub { font-size: 11.5px; color: rgba(244,236,220,0.65); margin-top: 2px; letter-spacing: 0.02em; }
.pdp-toast-cta {
  padding: 8px 14px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
body.is-ar .pdp-toast-cta { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; font-weight: 600; }
.pdp-toast-cta:hover { background: var(--cream); }
@media (max-width: 600px) {
  .pdp-toast { inset-block-end: 76px; }
}

.pdp-info { display: grid; gap: 22px; padding-top: 4px; }
@media (min-width: 900px) { .pdp-info { position: sticky; top: 90px; padding-top: 18px; gap: 24px; } }
.pdp-info .crumb { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,236,220,0.5); }
body.is-ar .pdp-info .crumb { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.pdp-info h1 {
  font-family: var(--f-display);
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  word-break: keep-all;
  hyphens: none;
}
.pdp-info h1 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .pdp-info h1 em { font-family: var(--f-arabic-display); font-style: normal; }
.pdp-info .lede { font-family: var(--f-serif); font-style: italic; font-size: 18px; color: rgba(244,236,220,0.85); max-width: 460px; line-height: 1.4; }
body.is-ar .pdp-info .lede { font-family: var(--f-arabic-display); font-style: normal; }
body.is-ar .pdp-info .lede { line-height: 1.82; }
@media (min-width: 760px) { .pdp-info .lede { font-size: 20px; } }

.pdp-price-row {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,245,225,0.08);
  border-bottom: 1px solid rgba(255,245,225,0.08);
}
.pdp-price-row .price { font-family: var(--f-display); font-size: 32px; color: var(--cream); white-space: nowrap; }
body.is-ar .pdp-price-row .price { font-family: var(--f-arabic-display); }
@media (min-width: 760px) { .pdp-price-row .price { font-size: 36px; } }
.pdp-price-row .compare { font-family: var(--f-mono); font-size: 13px; color: rgba(244,236,220,0.45); text-decoration: line-through; }
.pdp-price-row .save { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-warm); padding: 5px 11px; border: 1px solid rgba(214,217,222,0.32); border-radius: 999px; }
body.is-ar .pdp-price-row .save { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }

.opt-group { display: grid; gap: 10px; }
.opt-group .opt-label { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,236,220,0.65); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
body.is-ar .opt-group .opt-label { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
@media (min-width: 760px) { .opt-group .opt-label { font-size: 11px; } }
.opt-group .opt-label b { color: var(--cream); font-weight: 500; }

.power-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
@media (min-width: 760px) { .power-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; } }
.power-grid button {
  padding: 10px 0;
  border: 1px solid rgba(255,245,225,0.12);
  border-radius: 10px;
  font-family: var(--f-mono); font-size: 12px;
  color: rgba(244,236,220,0.78);
  transition: all 0.2s var(--ease);
  min-height: 38px;
}
.power-grid button:hover { border-color: rgba(255,245,225,0.3); color: var(--cream); }
.power-grid button.is-active { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.shade-row { display: flex; flex-wrap: wrap; gap: 8px; }
@media (min-width: 760px) { .shade-row { gap: 10px; } }
.shade-row button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(255,245,225,0.12);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244,236,220,0.78);
  transition: all 0.25s var(--ease);
  min-height: 38px;
  flex: 1 1 auto;
  justify-content: center;
}
@media (min-width: 760px) {
  .shade-row button { flex: 0 1 auto; justify-content: flex-start; }
}
.shade-row button:hover { border-color: rgba(255,245,225,0.32); color: var(--cream); }
.shade-row button.is-active {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(188,192,198,0.08);
  box-shadow: 0 0 0 2px rgba(188,192,198,0.14);
}
.shade-row .iris {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--c1), var(--c2) 40%, var(--c3) 70%, #1a1410);
  position: relative;
  border: 1px solid rgba(255,245,225,0.18);
}
.shade-row .iris::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; border-radius: 50%; background: #0a0907;
  transform: translate(-50%, -50%);
}

.pdp-cta { display: grid; gap: 10px; }

.pdp-meta-list { display: grid; gap: 12px; padding: 20px 0; border-top: 1px solid rgba(255,245,225,0.08); margin: 0; }
.pdp-meta-list li {
  display: grid; grid-template-columns: 20px 1fr;
  align-items: center; gap: 12px;
  list-style: none;
  font-size: 13px;
  color: rgba(244,236,220,0.8);
  line-height: 1.4;
}
.pdp-meta-list .ic { color: var(--gold-warm); font-size: 11px; }

.pdp-collapse details {
  border-top: 1px solid rgba(255,245,225,0.08);
  padding: 16px 0;
}
.pdp-collapse details:last-of-type { border-bottom: 1px solid rgba(255,245,225,0.08); }
.pdp-collapse summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
}
body.is-ar .pdp-collapse summary { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 14px; font-weight: 600; }
@media (min-width: 760px) { .pdp-collapse summary { font-size: 13px; } }
.pdp-collapse summary::-webkit-details-marker { display: none; }
.pdp-collapse summary::after { content: "+"; color: var(--gold-warm); font-size: 18px; transition: transform 0.3s var(--ease); }
.pdp-collapse details[open] summary::after { content: "−"; }
.pdp-collapse p { padding-top: 10px; color: rgba(244,236,220,0.72); font-size: 14px; line-height: 1.6; }

.recommend {
  padding: 64px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 760px) { .recommend { padding: 96px var(--gutter); } }
.recommend h3 { font-family: var(--f-display); font-size: clamp(34px, 7vw, 64px); margin-bottom: 28px; }
@media (min-width: 760px) { .recommend h3 { margin-bottom: 36px; } }
.recommend h3 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .recommend h3 em { font-family: var(--f-arabic-display); font-style: normal; }
.recommend-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 760px) { .recommend-grid { gap: 20px; } }
@media (min-width: 1100px) { .recommend-grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   PDP REVIEWS CAROUSEL
   ========================================================= */
.pdp-reviews {
  padding: 56px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 760px) { .pdp-reviews { padding: 72px var(--gutter); } }
.pdp-reviews-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pdp-reviews-head .eyebrow { margin-bottom: 12px; }
.pdp-reviews-head h3 { font-family: var(--f-display); font-size: clamp(28px, 5vw, 56px); line-height: 1; color: var(--cream); }
body.is-ar .pdp-reviews-head h3 { font-family: var(--f-arabic-display); line-height: 1.52; }
.pdp-reviews-head h3 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .pdp-reviews-head h3 em { font-family: var(--f-arabic-display); font-style: normal; }
.pdp-reviews-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(244,236,220,0.7);
}
.pdp-reviews-meta b { color: var(--cream); font-weight: 500; }
.pdp-reviews-meta .stars { color: var(--gold-warm); letter-spacing: 0.3em; }

.pdp-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 14px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding-bottom: 12px;
  /* hide scrollbar */
  scrollbar-width: none;
}
.pdp-reviews-track::-webkit-scrollbar { display: none; }
@media (min-width: 760px) {
  .pdp-reviews-track { grid-auto-columns: minmax(300px, 360px); gap: 18px; }
}

.rev-card {
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  padding: 0;
}
.rev-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(255,245,225,0.06);
}
.rev-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.rev-card:hover .rev-card-img img { transform: scale(1.04); }
.rev-card-img .verified {
  position: absolute;
  inset-block-start: 12px; inset-inline-start: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(10,9,7,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(214, 217, 222, 0.32);
  border-radius: 999px;
  color: var(--gold-warm);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
body.is-ar .rev-card-img .verified { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 11px; }
.rev-card .stars { color: var(--gold-warm); letter-spacing: 0.25em; font-size: 12px; }
.rev-card blockquote {
  font-family: var(--f-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  font-weight: 500;
}
body.is-ar .rev-card blockquote { font-family: var(--f-arabic-display); font-style: normal; line-height: 1.82; font-size: 17px; }
.rev-card blockquote::before { content: "\201C"; color: var(--gold-warm); margin-inline-end: 2px; }
.rev-card blockquote::after  { content: "\201D"; color: var(--gold-warm); margin-inline-start: 1px; }
.rev-card .who {
  font-size: 12px;
  color: rgba(244,236,220,0.85);
  display: flex; align-items: center; gap: 8px;
}
.rev-card .who small { color: rgba(244,236,220,0.5); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }
body.is-ar .rev-card .who small { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 11.5px; }

.pdp-reviews-controls { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; }
.rev-arrow {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--bone);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.rev-arrow:hover { background: rgba(255,250,240,0.06); border-color: var(--glass-border-2); }
[dir="rtl"] .rev-arrow svg { transform: scaleX(-1); }

/* =========================================================
   PROMO CODE FEEDBACK
   ========================================================= */
.promo-msg {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.promo-msg b { font-family: var(--f-mono); font-weight: 600; letter-spacing: 0.04em; }
.promo-msg.promo-ok {
  background: rgba(95, 179, 122, 0.10);
  border: 1px solid rgba(95, 179, 122, 0.35);
  color: #9ec5a8;
}
.promo-msg.promo-err {
  background: rgba(217, 106, 85, 0.10);
  border: 1px solid rgba(217, 106, 85, 0.32);
  color: #e8a594;
}
.promo-clear {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
body.is-ar .promo-clear { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.promo-clear:hover { background: rgba(255,255,255,0.05); }

/* =========================================================
   CHECKOUT
   ========================================================= */
.checkout {
  padding: 96px var(--gutter) 56px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) { .checkout { grid-template-columns: 1.3fr 0.9fr; gap: 40px; padding: 120px var(--gutter) 80px; } }
@media (min-width: 1100px) { .checkout { gap: 56px; } }
.checkout h1 { font-family: var(--f-display); font-size: clamp(36px, 7vw, 64px); margin-bottom: 8px; line-height: 1; }
.checkout h1 em { font-family: var(--f-serif); font-style: italic; color: var(--gold-warm); }
body.is-ar .checkout h1 em { font-family: var(--f-arabic-display); font-style: normal; }
.checkout .crumb { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,236,220,0.5); margin-bottom: 14px; }
body.is-ar .checkout .crumb { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.checkout > div > p { color: rgba(244,236,220,.72); margin-top: 6px; font-size: 14px; line-height: 1.55; }

.steps { display: flex; gap: 8px; align-items: center; margin: 24px 0 28px; flex-wrap: wrap; }
@media (min-width: 760px) { .steps { gap: 12px; margin: 28px 0 36px; } }
.steps .step {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,236,220,0.5);
}
body.is-ar .steps .step { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 13px; }
.steps .step .n {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(255,245,225,0.12);
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 11px;
}
.steps .step.is-active { color: var(--cream); }
.steps .step.is-active .n { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.steps .sep { width: 18px; height: 1px; background: rgba(255,245,225,0.12); }

.panel {
  padding: 22px;
  border-radius: 18px;
  display: grid; gap: 16px;
}
@media (min-width: 760px) { .panel { padding: 26px; border-radius: 22px; gap: 18px; } }
.panel h3 { font-family: var(--f-display); font-size: 22px; color: var(--cream); line-height: 1; }
@media (min-width: 760px) { .panel h3 { font-size: 24px; } }

.field { display: grid; gap: 7px; }
.field label { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,236,220,0.6); }
body.is-ar .field label { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(10,9,7,0.4);
  border: 1px solid rgba(255,245,225,0.1);
  border-radius: 10px;
  color: var(--cream);
  font-size: 14px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  min-height: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); background: rgba(10,9,7,0.6); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 760px) { .field-row-3 { grid-template-columns: 1fr 1fr 1fr; gap: 14px; } }

.pay-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 760px) { .pay-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.pay-tile {
  padding: 16px;
  border: 1px solid rgba(255,245,225,0.12);
  border-radius: 14px;
  display: grid; gap: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.pay-tile.is-active { border-color: var(--gold); background: rgba(188,192,198,0.06); }
.pay-tile .t { font-family: var(--f-serif); font-size: 17px; font-weight: 500; line-height: 1.2; }
body.is-ar .pay-tile .t { font-family: var(--f-arabic-display); }
.pay-tile .s { font-size: 11px; letter-spacing: 0.12em; color: rgba(244,236,220,0.55); }
body.is-ar .pay-tile .s { font-family: var(--f-arabic); letter-spacing: 0.04em; font-size: 12px; }
.pay-tile .ic { color: var(--gold-warm); font-size: 14px; }
.pay-tile .row { justify-content: space-between; gap: 8px; }
.pay-mode-note {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border: 1px solid rgba(255,245,225,0.14);
  border-radius: 999px;
  background: rgba(255,250,240,0.06);
  color: rgba(244,236,220,0.76);
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.is-ar .pay-mode-note {
  font-family: var(--f-arabic);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: none;
}
.pay-tile .bnpl-mark,
.bnpl-mark {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border: 1px solid rgba(214,217,222,0.32);
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--gold-warm);
  white-space: nowrap;
  flex-shrink: 0;
}
.bnpl-mark + .bnpl-mark { margin-inline-start: 6px; }
.pdp-bnpl .bnpl-mark { margin-inline-start: 4px; }
body.is-ar .pay-tile .bnpl-mark,
body.is-ar .bnpl-mark { font-family: var(--f-sans); direction: ltr; unicode-bidi: isolate; }
.pay-tile .bnpl-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.pay-tile .bnpl-line .s { margin: 0; }
.pdp-bnpl {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(244,236,220,0.6);
  letter-spacing: 0.01em;
}
body.is-ar .pdp-bnpl { font-family: var(--f-arabic); font-size: 13.5px; }
.pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 18px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(244,236,220,0.78);
}
body.is-ar .pdp-rating { font-family: var(--f-arabic); font-size: 14px; letter-spacing: 0.02em; }
.pdp-rating-stars {
  color: var(--gold-warm);
  letter-spacing: 0.18em;
  font-size: 13px;
}
.pdp-rating-score {
  font-family: var(--f-mono);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pdp-rating-sep { color: rgba(244,236,220,0.4); }
.pdp-rating-count {
  color: rgba(244,236,220,0.65);
  text-decoration: underline;
  text-decoration-color: rgba(244,236,220,0.18);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.pdp-rating-count:hover { color: var(--cream); text-decoration-color: var(--gold-warm); }
.pay-tile .bnpl-inst {
  font-family: var(--f-mono);
  color: var(--gold-warm);
  letter-spacing: 0.04em;
  text-transform: none;
  unicode-bidi: isolate;
  direction: ltr;
}
.pay-tile.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  filter: saturate(0.4);
}
.bnpl-disclaimer {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(188,192,198,0.06);
  border: 1px solid rgba(214,217,222,0.18);
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(244,236,220,0.65);
}
body.is-ar .bnpl-disclaimer { font-family: var(--f-arabic); font-size: 12.5px; line-height: 1.82; }
.pay-redirect-note {
  margin-top: 12px;
  padding: 14px 16px;
  gap: 7px;
  border: 1px solid rgba(214,217,222,0.18);
  border-radius: 12px;
  background: rgba(188,192,198,0.055);
  color: rgba(244,236,220,0.68);
}
.pay-redirect-note-title {
  font-family: var(--f-serif);
  font-size: 16px;
  line-height: 1.2;
  color: var(--cream);
}
.pay-redirect-note p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
body.is-ar .pay-redirect-note-title { font-family: var(--f-arabic-display); }
body.is-ar .pay-redirect-note p {
  font-family: var(--f-arabic);
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.summary-sticky { display: grid; gap: 18px; }
@media (min-width: 900px) { .summary-sticky { position: sticky; top: 90px; } }
.summary { padding: 22px; border-radius: 18px; display: grid; gap: 16px; }
@media (min-width: 760px) { .summary { padding: 26px; border-radius: 22px; gap: 18px; } }
.summary h4 { font-family: var(--f-display); font-size: 22px; line-height: 1; }
.summary .lines { display: grid; gap: 12px; }
.summary .lines .l { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; }
.summary .lines img { width: 52px; height: 52px; object-fit: cover; }
.summary .lines .n { font-family: var(--f-serif); font-size: 15px; font-weight: 500; line-height: 1.2; }
body.is-ar .summary .lines .n { font-family: var(--f-arabic-display); }
.summary .lines .meta { font-size: 10.5px; letter-spacing: 0.14em; color: rgba(244,236,220,0.5); text-transform: uppercase; margin-top: 3px; }
body.is-ar .summary .lines .meta { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.summary .lines .px { font-family: var(--f-mono); font-size: 13px; color: var(--gold-warm); text-align: end; white-space: nowrap; }

.code-field {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
}
.totals-x { display: grid; gap: 9px; padding-top: 14px; border-top: 1px solid rgba(255,245,225,0.08); }
.totals-x .l { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: rgba(244,236,220,0.78); }
.totals-x .l[hidden] { display: none !important; }
.totals-x .l.save { color: var(--gold-warm); }
.totals-x .l.total { font-family: var(--f-display); font-size: 24px; color: var(--cream); padding-top: 12px; border-top: 1px solid rgba(255,245,225,0.06); margin-top: 4px; line-height: 1; }

.trust-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; color: rgba(244,236,220,0.55); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; align-items: center; }
body.is-ar .trust-row { font-family: var(--f-arabic); text-transform: none; letter-spacing: 0.04em; font-size: 12px; }
.trust-row svg { color: var(--gold-warm); }
