/* ================================================
   Manar Perfumes — Dark Brown · Gold · Cream
   ================================================ */

:root {
  /* Exact palette from manar-perfume.html */
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --brown-deep: #1A1008;
  --brown-dark: #221508;
  --brown-mid: #2E1C0A;
  --brown-surface: #3A240E;
  --brown-card: #2A1A08;
  --text-cream: #F5EDD5;
  --text-muted: #9E8B6E;
  --text-muted-ref: #9E8B6E;
  --border-gold: rgba(201, 169, 110, 0.32);
  --border-gold-strong: rgba(201, 169, 110, 0.52);
  --gold-surface: rgba(201, 169, 110, 0.12);
  --gold-surface-strong: rgba(201, 169, 110, 0.18);

  /* Surface hierarchy — visible depth on dark theme */
  --surface-base: var(--brown-deep);
  --surface-raised: var(--brown-dark);
  --surface-band: var(--brown-mid);
  --surface-panel: var(--brown-surface);
  --surface-card: var(--brown-card);

  /* Light section surfaces — warm cream (NOT dark brown) */
  --cream-50: #FAF6EE;
  --cream-100: #F5EDD5;
  --cream-200: #EBE0CC;
  --cream-300: #E2D4B8;
  --cream-card: #FFFCF7;
  --text-on-cream: #1A1008;
  --text-on-cream-muted: #6B5340;
  --border-on-cream: rgba(139, 105, 20, 0.2);
  --border-on-cream-strong: rgba(201, 169, 110, 0.45);
  --shadow-on-cream: 0 8px 28px rgba(26, 16, 8, 0.08);
  --shadow-on-cream-lg: 0 16px 44px rgba(26, 16, 8, 0.11);

  /* Mapped tokens */
  --brown-950: var(--brown-deep);
  --brown-900: var(--brown-dark);
  --brown-800: var(--brown-mid);
  --brown-700: var(--brown-surface);
  --brown-600: var(--brown-surface);
  --brown-500: var(--gold-dark);

  --dark-950: var(--brown-deep);
  --dark-900: var(--brown-dark);
  --dark-800: var(--brown-mid);
  --dark-700: var(--brown-surface);
  --dark-600: var(--brown-card);

  /* Legacy beige tokens — real light tones for light sections */
  --beige-50: var(--cream-50);
  --beige-100: var(--cream-200);
  --beige-200: var(--cream-300);
  --beige-300: #D8C9A8;
  --white: var(--surface-card);

  --light-bg: var(--surface-base);
  --light-surface: var(--surface-panel);
  --light-text: var(--text-cream);
  --light-muted: var(--text-muted);
  --light-border: var(--border-gold);

  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(201, 169, 110, 0.12),
    0 0 48px rgba(201, 169, 110, 0.07);
  --shadow-panel: 0 20px 56px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(201, 169, 110, 0.14),
    0 0 64px rgba(201, 169, 110, 0.09);

  --gold-100: var(--gold-light);
  --gold-200: var(--gold-light);
  --gold-300: var(--gold);
  --gold-400: var(--gold);
  --gold-500: var(--gold-dark);
  --gold-glow: rgba(201, 169, 110, 0.22);
  --glow-gold-soft: rgba(201, 169, 110, 0.14);
  --glow-gold-faint: rgba(201, 169, 110, 0.07);
  --glow-beige-soft: rgba(232, 213, 163, 0.1);
  --glow-cream-soft: rgba(245, 237, 213, 0.06);

  --cream: var(--text-cream);
  --text-on-brown: var(--text-cream);
  --text-on-brown-muted: var(--text-muted);

  /* Display serif: only where “principal title” styles are applied (see end of stylesheet) */
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.5s var(--ease-out);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(201, 169, 110, 0.07) 0%, transparent 52%),
    var(--brown-deep);
  color: var(--text-cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body > main,
body > .footer,
body > [id$="-mount"]:not(#cart-mount) {
  position: relative;
  z-index: 1;
}

body.rtl { direction: rtl; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-left: max(1rem, 4vw, env(safe-area-inset-left));
  padding-right: max(1rem, 4vw, env(safe-area-inset-right));
}

/* ---- Section Themes — alternating depth + warm glow ---- */
.section-dark,
.section-light {
  overflow: hidden;
  isolation: isolate;
}

.section-dark {
  background: linear-gradient(180deg, var(--surface-base) 0%, var(--surface-raised) 100%);
  color: var(--text-cream);
  position: relative;
}

.section-dark:not(.page-hero-cine):not(.hero-cine)::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(201, 169, 110, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 38% 42% at 92% 88%, rgba(201, 169, 110, 0.07) 0%, transparent 65%);
}

.section-dark:not(.page-hero-cine):not(.hero-cine)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4), transparent);
}

.section-light {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  color: var(--text-on-cream);
  position: relative;
  border-top: 1px solid var(--border-on-cream);
  border-bottom: 1px solid var(--border-on-cream);
}

.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 50% at 15% 40%, rgba(201, 169, 110, 0.1) 0%, transparent 62%),
    radial-gradient(ellipse 55% 45% at 90% 15%, rgba(201, 169, 110, 0.07) 0%, transparent 58%);
}

.section-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.35), transparent);
}

.section-light.alt {
  background: linear-gradient(180deg, var(--cream-200) 0%, var(--cream-100) 100%);
}

.section-dark > *,
.section-light > * {
  position: relative;
  z-index: 1;
}

.section-light .display-title,
.section-light .display-title.light { color: var(--text-on-cream); }
.section-light .eyebrow { color: var(--gold-dark); }
.section-light .eyebrow.gold { color: var(--gold); }
.section-light p { color: var(--text-on-cream-muted); }
.section-light .section-lead { color: var(--text-on-cream-muted); }
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--text-on-cream); }
.section-light .breadcrumb { color: var(--text-on-cream-muted); }
.section-light .breadcrumb a { color: var(--text-on-cream-muted); }
.section-light .breadcrumb a:hover { color: var(--gold-dark); }
.section-light .btn-outline-gold {
  color: var(--gold-dark);
  border-color: var(--border-on-cream-strong);
}
.section-light .btn-outline-gold:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.section-light .btn-glass {
  border-color: var(--border-on-cream-strong);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.45);
}
.section-light .btn-glass:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
}

/* Cards & panels inside light sections */
.section-light .value-card,
.section-light .trust-item,
.section-light .newsletter-inner,
.section-light .product-card,
.section-light .exp-card,
.section-light .about-story-badge,
.section-light .faq-item,
.section-light .process-step,
.section-light .testimonial-card {
  background: var(--cream-card);
  border-color: var(--border-on-cream);
  box-shadow: var(--shadow-on-cream);
}

.section-light .value-card h3,
.section-light .trust-item strong,
.section-light .exp-card h4,
.section-light .product-name,
.section-light .process-step h3,
.section-light .faq-question {
  color: var(--text-on-cream);
}

.section-light .value-card p,
.section-light .trust-item p,
.section-light .exp-card p,
.section-light .product-notes,
.section-light .product-meta-row,
.section-light .process-step p,
.section-light .story-strip-content p,
.section-light .about-story-text p,
.section-light .newsletter-content p,
.section-light .faq-answer p {
  color: var(--text-on-cream-muted);
}

.section-light .step-icon {
  border-color: var(--border-on-cream-strong);
  color: var(--gold-dark);
}

.section-light .value-card:hover,
.section-light .trust-item:hover,
.section-light .product-card:hover,
.section-light .exp-card:hover,
.section-light .process-step:hover,
.section-light .testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-on-cream-lg), 0 0 32px rgba(201, 169, 110, 0.12);
}

.section-light .testimonial-card footer strong {
  color: var(--text-on-cream);
}

.section-light .testimonial-card footer span,
.section-light .testimonial-card p {
  color: var(--text-on-cream-muted);
}

.section-light .step-icon {
  border-color: var(--border-on-cream-strong);
  color: var(--gold-dark);
}

.section-light .process-step:hover .step-icon {
  background: rgba(201, 169, 110, 0.14);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.section-light .product-image-wrap,
.section-light .shop-card-image {
  background: linear-gradient(145deg, var(--cream-200) 0%, var(--cream-50) 100%);
}

.section-light .product-brand { color: var(--gold-dark); }
.section-light .product-price {
  color: var(--brown-deep);
  background: var(--gold-light);
}
.section-light .add-to-cart {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--border-on-cream-strong);
  color: var(--gold-dark);
}


.section-light .shop-card-cta.add-to-cart {
  background: #1a1510;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(26, 21, 16, 0.2);
}

.section-light .shop-card-cta.add-to-cart:hover {
  background: #2c2419;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 21, 16, 0.28);
}

.section-light .collection-bg-glow {
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.14) 0%, rgba(201, 169, 110, 0.04) 45%, transparent 72%);
}

.section-light .gallery-item {
  border-color: var(--border-on-cream);
  box-shadow: var(--shadow-on-cream);
}

.section-light .story-strip-frame {
  border-color: var(--border-on-cream-strong);
}

.section-light .shop-count,
.section-light .shop-sort-label,
.section-light .shop-sort-label select {
  color: var(--text-on-cream-muted);
}

.section-light .shop-sort-label select {
  background: var(--cream-card);
  border-color: var(--border-on-cream);
  color: var(--text-on-cream);
}

.section-light .stat-block span { color: var(--text-on-cream-muted); }

.section-light .about-inline-quote {
  color: var(--text-on-cream);
  border-left-color: var(--gold);
}

.section-light .about-story-badge span { color: var(--text-on-cream); }

.section-light .value-num { color: var(--gold); }

.section-light .display-title {
  text-shadow: none;
}

/* Dark sections */
.section-dark .display-title,
.section-dark .display-title.light { color: var(--text-cream); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow.gold { color: var(--gold); }
.section-dark p { color: var(--text-muted); }
.section-dark .section-lead { color: var(--text-muted); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--text-cream); }
.section-dark .page-hero-sub { color: var(--text-muted); }
.section-dark .breadcrumb { color: var(--text-muted); }
.section-dark .breadcrumb a { color: var(--text-muted); }
.section-dark .breadcrumb a:hover { color: var(--gold); }
.section-dark .stat-block span { color: var(--text-muted); }
.section-dark .timeline-content h3 { color: var(--text-cream); }
.section-dark .timeline-content p { color: var(--text-muted); }
.section-dark .cta-content p { color: var(--text-muted); }
.section-dark .faq-question { color: var(--text-cream); }
.section-dark .faq-answer p { color: var(--text-muted); }
.section-dark .footer-brand > p,
.section-dark .footer-about,
.section-dark .footer-col li,
.section-dark .footer-col a,
.section-dark .footer-links a { color: var(--text-muted); }
.section-dark .footer-bottom p,
.section-dark .footer-rights { color: rgba(245, 237, 213, 0.5); }
.section-dark .filter-pills {
  background: var(--brown-card);
  border-color: var(--border-gold);
}
.section-dark .pill { color: var(--text-muted); }
.section-dark .pill:hover { color: var(--gold); }

/* Product & checkout pages */
.product-page .related-section h2 { color: var(--text-on-cream); }
.product-page .btn-outline-gold {
  color: var(--gold-dark);
  border-color: var(--border-on-cream-strong);
}


/* ---- Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--brown-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-top-color: var(--gold-300);
  border-right-color: rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loader-logo {
  width: auto;
  max-width: 140px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
}

.loader-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.loader-progress {
  width: 120px;
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
  overflow: hidden;
}

.loader-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  animation: loadProgress 1.5s var(--ease-out) forwards;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loadProgress { to { width: 100%; } }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: calc(1.25rem + env(safe-area-inset-top));
  padding-bottom: 1.25rem;
  background: rgba(26, 16, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  padding-top: calc(0.75rem + env(safe-area-inset-top));
  padding-bottom: 0.75rem;
  background: rgba(26, 16, 8, 0.95);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo img {
  width: auto;
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  transition: var(--transition);
}

.nav-logo:hover img {
  filter: brightness(1.08);
  box-shadow: 0 0 24px var(--gold-glow);
}

.nav-brand {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  transition: color var(--transition);
}

.nav-brand span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold-300);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-300), transparent);
  transition: width 0.4s var(--ease-out);
}

body.rtl .nav-links a::before { left: auto; right: 0; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::before { width: 100%; }

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::before { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold-300);
}

.cart-btn {
  position: relative;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--cream);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cart-btn:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--dark-950);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.rtl .cart-count { right: auto; left: -4px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--brown-deep);
}

.btn-gold:hover {
  transform: translateY(-3px);
  background: #D4B87A;
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.42);
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s;
}

.btn-shine:hover::after { left: 150%; }

.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold-300);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-300);
}

.btn-outline-gold:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold-300);
}

.btn-lg { padding: 1.15rem 2.5rem; font-size: 0.75rem; }
.btn-full { width: 100%; }

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow.gold { color: var(--gold-300); }

.display-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text-cream);
  text-shadow: 0 0 48px rgba(201, 169, 110, 0.06);
}

.section-intro { margin-bottom: 3.5rem; }
.section-intro.centered { text-align: center; }
.section-intro.centered::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.15rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.9;
}
.section-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 1rem auto 0;
  font-weight: 400;
  line-height: 1.8;
}

.gold-text { color: var(--gold-300); }

/* ---- Scroll reveal: slide from alternating sides (--reveal-dir: 0 = start/LTR:left) ---- */
.reveal {
  --reveal-shift: clamp(72px, 11vw, 140px);
  opacity: 0;
  transition: opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1);
  will-change: opacity, transform;
}

.reveal:not(.visible) {
  opacity: 0;
}

.reveal.visible {
  opacity: 1;
}

/* Horizontal slide variant (homepage cascade + standalone reveals) */
.reveal.reveal-slide-x:not(.visible) {
  transform: translate3d(calc(var(--reveal-shift) * (var(--reveal-dir, 0) * 2 - 1)), 0, 0);
}

.reveal.reveal-slide-x.visible {
  transform: translate3d(0, 0, 0);
}

body.rtl .reveal.reveal-slide-x:not(.visible) {
  transform: translate3d(calc(var(--reveal-shift) * (1 - var(--reveal-dir, 0) * 2)), 0, 0);
}

body.rtl .reveal.reveal-slide-x.visible {
  transform: translate3d(0, 0, 0);
}

/* --- Reveal vs component transitions: shorter shorthands were overriding `.reveal`
   (no opacity in list ⇒ instant fade; transform ~0.45s ⇒ tiny slide). --- */
.features-card.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    border-color 0.4s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    background-color 0.4s ease;
}
.features-card.reveal.visible:hover {
  transform: translate3d(0, -4px, 0);
}

.process-card.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-card.process-card--featured.reveal.reveal-slide-x.visible {
  transform: translate3d(0, -10px, 0);
}
.process-card.process-card--featured.reveal.reveal-slide-x:not(.visible) {
  transform: translate3d(calc(var(--reveal-shift) * (var(--reveal-dir, 0) * 2 - 1)), -10px, 0);
}
body.rtl .process-card.process-card--featured.reveal.reveal-slide-x:not(.visible) {
  transform: translate3d(calc(var(--reveal-shift) * (1 - var(--reveal-dir, 0) * 2)), -10px, 0);
}
.process-card.reveal.visible:hover {
  transform: translate3d(0, -14px, 0) scale(1.02);
}
.process-card.process-card--featured.reveal.visible:hover {
  transform: translate3d(0, -18px, 0) scale(1.02);
}

.product-card.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.product-card.reveal.visible:hover {
  transform: translate3d(0, -8px, 0);
}

.category-card.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.category-card.reveal.visible:hover {
  transform: translate3d(0, -6px, 0);
}

.gallery-item.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}

.newsletter-action-card.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    border-color 0.5s var(--ease-out),
    background 0.5s var(--ease-out);
}
.newsletter-action-card.reveal.visible:hover {
  transform: translate3d(4px, 0, 0);
}
body.rtl .newsletter-action-card.reveal.visible:hover {
  transform: translate3d(-4px, 0, 0);
}

.value-card.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    border-color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.value-card.reveal.visible:hover {
  transform: translate3d(0, -4px, 0);
}

.page-reveal-scope .btn.reveal {
  transition:
    opacity 1.35s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.65s cubic-bezier(0.22, 0.92, 0.28, 1),
    background 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out),
    color 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    backdrop-filter 0.5s var(--ease-out);
}
.page-reveal-scope .btn-gold.reveal.visible:hover {
  transform: translate3d(0, -3px, 0);
}

/* Larger travel for marquee-style brand rows (heritage strip + essentials grid). */
.story-strip .reveal.reveal-slide-x,
.features-showcase .reveal.reveal-slide-x {
  --reveal-shift: clamp(100px, 14vw, 200px);
}
.reveal-delay-1 { transition-delay: 0.12s !important; }
.reveal-delay-2 { transition-delay: 0.24s !important; }
.reveal-delay-3 { transition-delay: 0.36s !important; }

.hero-cine-line.reveal {
  display: block;
}

.hero-cine-down-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero-cine-down-inner svg {
  animation: cineDownBounce 2.2s ease-in-out infinite;
}

.marquee-band {
  overflow: hidden;
  width: 100%;
}

/* Marquee strip: bolder entrance (often first thing user reads after hero). */
.marquee .marquee-band.reveal.reveal-slide-x:not(.visible) {
  --reveal-shift: clamp(100px, 22vw, 280px);
}
.marquee .marquee-band.reveal {
  transition: opacity 1.5s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 2s cubic-bezier(0.18, 0.88, 0.24, 1);
}

/* ---- HERO CINEMATIC (full-bleed, centered) ---- */
.hero-cine .reveal.reveal-slide-x {
  transition: opacity 1.55s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 2s cubic-bezier(0.18, 0.88, 0.24, 1);
}

.hero-cine {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: max(6rem, calc(4.5rem + env(safe-area-inset-top)));
  padding-bottom: max(4rem, env(safe-area-inset-bottom));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  color: var(--text-on-brown);
}

.hero-cine-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cine-scene {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center center;
  filter: blur(2px) saturate(1.05);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease-out), transform 8s linear;
}

.hero-cine-scene.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-cine-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 15% 75%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58, 36, 14, 0.85) 0%, transparent 60%),
    linear-gradient(to top, rgba(26, 16, 8, 0.95) 0%, rgba(26, 16, 8, 0.55) 50%, rgba(26, 16, 8, 0.75) 100%);
  pointer-events: none;
}

.hero-cine-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-cine-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-cine-watermark.reveal-fade {
  transition: opacity 1.65s cubic-bezier(0.22, 0.92, 0.28, 1);
}

.hero-cine-watermark.reveal-fade:not(.visible) {
  opacity: 0 !important;
}

.hero-cine-rail {
  position: absolute;
  left: max(1.25rem, env(safe-area-inset-left));
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 4;
  pointer-events: none;
}

.hero-cine-rail span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.35);
}

.hero-cine-rail span.reveal-fade {
  transition: opacity 1.45s cubic-bezier(0.22, 0.92, 0.28, 1);
}

.hero-cine-rail span.reveal-fade:not(.visible) {
  opacity: 0 !important;
}

body.rtl .hero-cine-rail {
  left: auto;
  right: max(1.25rem, env(safe-area-inset-right));
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
}

.hero-cine-center {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-cine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  margin-bottom: 2rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(16px);
}

.hero-cine-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-cine-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-cine-headline {
  font-family: var(--font-body);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-cine-line {
  display: block;
}

.hero-cine-line--gold em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #B8924F 0%, var(--gold) 45%, #D4B87A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cine-sub {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(245, 237, 213, 0.94);
  max-width: 520px;
  margin: 0 auto 2.25rem;
}

.hero-cine-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Keep gold CTA hover lift once slide-reveal settles (reveal.visible sets transform). */
.hero-cine-cta .btn-gold.reveal.visible:hover {
  transform: translate3d(0, -3px, 0);
}

.btn-cine-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(250, 246, 239, 0.28);
  color: var(--text-on-brown);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.btn-cine-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-cine-down {
  position: absolute;
  bottom: 2.25rem;
  right: max(1.5rem, env(safe-area-inset-right));
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.45);
  transition: color 0.3s;
}

body.rtl .hero-cine-down {
  right: auto;
  left: max(1.5rem, env(safe-area-inset-left));
}

.hero-cine-down:hover { color: var(--gold-300); }

@keyframes cineDownBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 768px) {
  .hero-cine {
    padding-top: max(5.5rem, calc(4rem + env(safe-area-inset-top)));
    padding-bottom: max(4rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero-cine-rail { display: none; }

  .hero-cine-watermark {
    font-size: clamp(5rem, 30vw, 9rem);
    -webkit-text-stroke-width: 0.85px;
  }

  .hero-cine-down {
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
  }

  body.rtl .hero-cine-down {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero-cine-cta { flex-direction: column; width: 100%; }
  .hero-cine-cta .btn { width: 100%; justify-content: center; }
}

/* ---- MARQUEE (hero transition band) ---- */
.marquee {
  padding: 1.25rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-raised) 0%, var(--surface-band) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.28);
  border-bottom: 1px solid rgba(201, 169, 110, 0.28);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.marquee-content .dot {
  color: var(--gold-400);
  font-size: 0.6rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- FEATURES (editorial card grid) ---- */
.features {
  padding: clamp(5.5rem, 9vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}

.features-atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 45% at 50% 12%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 85%, rgba(139, 105, 20, 0.04) 0%, transparent 42%),
    radial-gradient(ellipse 70% 50% at 100% 85%, rgba(139, 105, 20, 0.04) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.55) 0%, transparent 42%);
}

.features-head {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}

.features-head .section-lead {
  max-width: 38rem;
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.25rem);
  max-width: 62rem;
  margin-inline: auto;
}

.features-card {
  --fc-r1: clamp(14px, 2.2vw, 22px);
  --fc-r2: clamp(5px, 0.85vw, 9px);
  position: relative;
  margin: 0;
  padding-block: clamp(1.45rem, 2.8vw, 2rem);
  padding-inline: clamp(1.45rem, 2.65vw, 1.9rem);
  text-align: start;
  isolation: isolate;
  border-start-start-radius: var(--fc-r1);
  border-start-end-radius: var(--fc-r2);
  border-end-end-radius: var(--fc-r1);
  border-end-start-radius: var(--fc-r2);
  border: 1px solid rgba(139, 105, 20, 0.22);
  background:
    linear-gradient(
      168deg,
      rgba(255, 252, 247, 0.97) 0%,
      rgba(247, 240, 228, 0.92) 42%,
      rgba(237, 224, 204, 0.88) 100%
    );
  background-color: rgba(255, 252, 247, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 64px -32px rgba(42, 26, 14, 0.28),
    0 10px 24px -12px rgba(62, 42, 28, 0.12),
    inset 0 -26px 48px -40px rgba(139, 105, 20, 0.09);
  transition: border-color 0.4s var(--ease-out), box-shadow 0.45s var(--ease-out),
    transform 0.45s var(--ease-out), background-color 0.4s ease;
}

.features-card:nth-child(odd) {
  padding-inline-start: clamp(2rem, 3.5vw, 2.55rem);
}

.features-card:nth-child(even) {
  padding-inline-end: clamp(2rem, 3.5vw, 2.55rem);
  border-start-start-radius: var(--fc-r2);
  border-start-end-radius: var(--fc-r1);
  border-end-end-radius: var(--fc-r2);
  border-end-start-radius: var(--fc-r1);
}

.features-card::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 18%;
  bottom: 18%;
  width: 4px;
  border-start-end-radius: 5px;
  border-end-end-radius: 5px;
  background: linear-gradient(
    180deg,
    rgba(232, 213, 163, 0.15) 0%,
    var(--gold) 22%,
    var(--gold-dark) 52%,
    var(--gold) 78%,
    rgba(232, 213, 163, 0.15) 100%
  );
  filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.4));
  pointer-events: none;
  z-index: 1;
}

.features-card:nth-child(even)::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
  border-start-end-radius: 0;
  border-end-end-radius: 0;
  border-start-start-radius: 5px;
  border-end-start-radius: 5px;
}

.features-card::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-start-start-radius: clamp(10px, 1.8vw, 16px);
  border-start-end-radius: clamp(4px, 0.65vw, 8px);
  border-end-end-radius: clamp(10px, 1.8vw, 16px);
  border-end-start-radius: clamp(4px, 0.65vw, 8px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.features-card:nth-child(even)::after {
  border-start-start-radius: clamp(4px, 0.65vw, 8px);
  border-start-end-radius: clamp(10px, 1.8vw, 16px);
  border-end-end-radius: clamp(4px, 0.65vw, 8px);
  border-end-start-radius: clamp(10px, 1.8vw, 16px);
}

.features-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 0 1px rgba(201, 169, 110, 0.12),
    0 32px 72px -28px rgba(42, 26, 14, 0.38),
    0 14px 32px -8px rgba(139, 105, 20, 0.16),
    0 0 48px rgba(201, 169, 110, 0.1),
    inset 0 -20px 40px -36px rgba(139, 105, 20, 0.12);
}

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

.features-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 2;
}

.features-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
  color: var(--gold-dark);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
    linear-gradient(148deg, rgba(201, 169, 110, 0.28), rgba(34, 21, 8, 0.12));
  border: 1px solid rgba(201, 169, 110, 0.38);
  border-radius: clamp(11px, 1.9vw, 15px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 6px 16px rgba(42, 26, 14, 0.1);
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, color 0.35s ease,
    box-shadow 0.4s ease;
}

.features-card:nth-child(odd) .features-card-icon {
  transform: rotate(-4deg);
}

.features-card:nth-child(even) .features-card-icon {
  transform: rotate(4deg);
}

.features-card:hover .features-card-icon {
  transform: rotate(0deg) scale(1.04);
  border-color: rgba(201, 169, 110, 0.55);
  color: rgba(139, 105, 20, 0.95);
}

.features-card-icon svg {
  display: block;
}

.features-card-index {
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(34, 21, 8, 0.08);
  text-shadow:
    -1px 0 rgba(139, 105, 20, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.7);
}

.features-card-title {
  font-family: var(--font-body);
  font-size: clamp(1.22rem, 2vw, 1.52rem);
  font-weight: 600;
  color: rgba(34, 21, 8, 0.92);
  margin: 0 0 0.7rem;
  letter-spacing: 0.035em;
  line-height: 1.28;
  position: relative;
  z-index: 2;
}

.features-card-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.42vw, 1.02rem);
  line-height: 1.66;
  color: rgba(74, 58, 44, 0.88);
  margin: 0 0 1.15rem;
  position: relative;
  z-index: 2;
}

.features-card-tag {
  margin: 0;
  display: inline-block;
  max-width: 100%;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(139, 105, 20, 0.95);
  padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.18) 0%,
    rgba(201, 169, 110, 0.05) 55%,
    transparent 100%
  );
  border-inline-start: 2px solid var(--gold-dark);
  border-radius: 1px clamp(10px, 1.8vw, 14px) 1px clamp(10px, 1.8vw, 14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  position: relative;
  z-index: 2;
}

body.rtl .features-card-tag {
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
}

.features-card:nth-child(even) .features-card-tag {
  border-inline-start: none;
  border-inline-end: 2px solid var(--gold-dark);
  background: linear-gradient(
    -90deg,
    rgba(201, 169, 110, 0.18) 0%,
    rgba(201, 169, 110, 0.05) 55%,
    transparent 100%
  );
}

body.rtl .features-card:nth-child(even) .features-card-tag {
  border-inline-end: none;
  border-inline-start: 2px solid var(--gold-dark);
}

/* ---- COLLECTION (DARK) ---- */
.collection {
  padding: 8rem 0;
  overflow: hidden;
}

.collection-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 120%);
  height: 480px;
  background:
    radial-gradient(ellipse, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0.06) 42%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.collection-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: var(--brown-card);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
}

.pill {
  background: transparent;
  border: none;
  color: var(--light-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  border-radius: 100px;
  transition: var(--transition);
}

.pill:hover { color: var(--gold-500); }

.pill.active {
  background: var(--gold);
  color: var(--brown-deep);
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-gold-strong);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  opacity: 1;
  transform: translateY(0);
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-medium),
    0 0 56px rgba(201, 169, 110, 0.16),
    inset 0 1px 0 rgba(201, 169, 110, 0.16);
}

.product-card.hidden-filter {
  display: none;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 16, 8, 0.75) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-image-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(26, 16, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}

body.rtl .product-badge { left: auto; right: 1rem; }

.product-quick {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 3;
  opacity: 0;
  transition: var(--transition);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  white-space: nowrap;
}

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

.product-info {
  padding: 1.5rem 1.25rem 1.75rem;
  position: relative;
}

.product-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  line-height: 1.2;
  color: var(--text-cream);
}

.product-notes {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: 0.04em;
  background: var(--gold-light);
  border: 1px solid rgba(139, 105, 20, 0.18);
  padding: 0.4rem 0.75rem;
  line-height: 1;
}

.add-to-cart {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart:hover {
  background: var(--gold);
  color: var(--brown-deep);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ---- EXPERIENCE (LIGHT) ---- */
.experience { padding: 8rem 0; }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-visual { position: relative; }

.experience-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(26, 16, 8, 0.12);
}

.experience-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.experience-frame:hover img { transform: scale(1.04); }

.experience-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(26, 16, 8, 0.7));
}

.experience-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.experience-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 20px 50px rgba(26, 16, 8, 0.1);
  animation: floatBadge 4s ease-in-out infinite;
}

body.rtl .experience-float { right: auto; left: -1.5rem; }

.experience-float img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.experience-float strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--light-text);
}

.experience-float span {
  font-size: 0.68rem;
  color: var(--light-muted);
  letter-spacing: 0.08em;
}

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

.experience-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.exp-card {
  padding: 1.25rem;
  background: var(--surface-panel);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.exp-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-3px);
}

.exp-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-400);
  letter-spacing: 0.1em;
}

.exp-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin: 0.5rem 0 0.25rem;
  color: var(--light-text);
}

.exp-card p {
  font-size: 0.75rem !important;
  margin: 0 !important;
}

/* ---- ABOUT (DARK) ---- */
.about { padding: 8rem 0; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-media { position: relative; }

.about-img-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(92, 64, 51, 0.2);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  z-index: 3;
  border: 3px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

body.rtl .about-img-accent { right: auto; left: -2rem; }

.about-img-accent img { aspect-ratio: 1; object-fit: cover; }

.about-quote {
  position: absolute;
  top: 2rem;
  left: -2rem;
  z-index: 4;
  background: var(--brown-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  padding: 1.25rem 1.5rem;
  max-width: 220px;
}

body.rtl .about-quote { left: auto; right: -2rem; }

.about-quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-on-brown-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-features { margin: 2rem 0 2.5rem; }

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  font-size: 0.88rem;
}

.about-features .check {
  color: var(--gold-300);
  font-size: 0.65rem;
}

/* ---- TESTIMONIALS (LIGHT) ---- */
.testimonials { padding: 7rem 0; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow:
    var(--shadow-panel),
    0 0 44px rgba(201, 169, 110, 0.14);
}

.testimonial-card.featured {
  background: var(--surface-band);
  border-color: var(--gold);
  color: var(--text-cream);
  transform: scale(1.03);
  box-shadow: var(--shadow-panel);
}

.testimonial-card.featured p { color: var(--text-muted); }
.testimonial-card.featured footer span { color: var(--text-muted); }
.testimonial-card.featured footer strong { color: var(--text-cream); }

.testimonial-stars {
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.testimonial-card footer strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  color: var(--text-cream);
}

.testimonial-card footer span {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ---- CTA (DARK) ---- */
.cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-dark .cta {
  background: linear-gradient(180deg, var(--surface-base) 0%, var(--surface-raised) 100%);
}

.section-light.cta {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.section-light .cta-content p {
  color: var(--text-on-cream-muted);
}

.section-light .cta .display-title,
.section-light .cta .display-title.light {
  color: var(--text-on-cream);
}

.section-light .cta .eyebrow {
  color: var(--gold-dark);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background:
    radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, rgba(201, 169, 110, 0.07) 38%, transparent 65%);
  filter: blur(32px);
  animation: glowPulse 6s ease-in-out infinite;
}

.cta-content { position: relative; z-index: 2; }

.cta-title { margin: 0.5rem 0 1.25rem; }

.cta-content p {
  color: var(--text-on-brown-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  padding: 0;
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-deep) 100%);
  border-top: 1px solid var(--border-gold-strong);
  position: relative;
  overflow: hidden;
  color: var(--text-cream);
}

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 280px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.footer-top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(0, 1.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 3rem;
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer-brand-col {
  max-width: 360px;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.35rem;
  transition: opacity 0.3s;
}

.footer-brand-link:hover { opacity: 0.88; }

.footer-logo {
  width: auto;
  max-width: 120px;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
  border: none;
  flex-shrink: 0;
  box-shadow: none;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand-name {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-cream);
  line-height: 1.15;
}

.footer-brand-name span {
  color: var(--gold);
  margin-left: 0.35em;
}

body.rtl .footer-brand-name span { margin-left: 0; margin-right: 0.35em; }

.footer-brand-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.footer-wa-btn {
  width: 100%;
  max-width: 280px;
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold-strong);
  color: var(--gold);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-contact-list a,
.footer-contact-static {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact-static {
  color: var(--text-muted);
}

.footer-svg-icon {
  flex-shrink: 0;
  color: var(--gold);
}

.footer-trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  background: rgba(0, 0, 0, 0.18);
}

.footer-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-cream);
  text-align: center;
}

.footer-trust-icon {
  color: var(--gold);
  font-size: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 2rem 0 2.25rem;
  background: rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-bottom-logo {
  display: block;
  margin-bottom: 0.15rem;
}

.footer-bottom-logo img {
  width: auto;
  max-width: 100px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  border: none;
  box-shadow: none;
  transition: var(--transition);
}

.footer-bottom-logo:hover img {
  filter: brightness(1.08);
  transform: scale(1.04);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.footer-copy strong {
  color: var(--text-cream);
  font-weight: 600;
}

.footer-rights {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(158, 139, 110, 0.85);
}

/* ---- Cart & Modal ---- */
.cart-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active,
.modal-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--brown-dark);
  border-left: 1px solid var(--border-gold);
  color: var(--text-cream);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.45), -8px 0 80px rgba(201, 169, 110, 0.06);
}

body.rtl .cart-sidebar {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid rgba(201, 169, 110, 0.12);
  transform: translateX(-100%);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.75rem;
  border-bottom: 1px solid var(--light-border);
}

.cart-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
  margin-bottom: 0.25rem;
}

.cart-header h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--light-text);
}

.cart-close,
.modal-close {
  background: none;
  border: none;
  color: var(--light-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.cart-close:hover,
.modal-close:hover { color: var(--gold-300); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--light-muted);
  font-family: var(--font-body);
  font-size: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-border);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 110, 0.12);
}

.cart-item-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  color: var(--gold-300);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid var(--light-border);
  color: var(--light-text);
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-qty button:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--light-muted);
  font-size: 1.2rem;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.3s;
}

.cart-item-remove:hover { color: #e55; }

.cart-footer {
  padding: 1.5rem 1.75rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--light-border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.cart-total span:last-child { color: var(--gold-300); }

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(960px, 94vw);
  max-height: 90vh;
  background: var(--brown-dark);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
}

body.rtl .modal-close { right: auto; left: 1.25rem; }

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image { position: relative; overflow: hidden; }

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.modal-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-brand {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.modal-details h2 {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.modal-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold-300);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.modal-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--light-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.modal-notes h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.modal-notes p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--light-muted);
  margin-bottom: 2rem;
}

.modal-price {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: max(2rem, calc(1rem + env(safe-area-inset-bottom)));
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--brown-card);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  padding: 1rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  z-index: 3000;
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .experience-grid,
  .about-layout,
  .modal-content { grid-template-columns: 1fr; }

  .features-showcase {
    gap: 1rem;
  }

  .products-showcase,
  .testimonials-track { grid-template-columns: 1fr 1fr; }

  .testimonial-card.featured { transform: none; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand-col {
    max-width: none;
    text-align: center;
  }

  .footer-brand-link,
  .footer-social,
  .footer-wa-btn {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .experience-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-brand { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    border-left: 1px solid var(--border-gold);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links a { color: var(--text-muted); }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold); }

  body.rtl .nav-links {
    right: auto;
    left: 0;
    transform: translateX(-100%);
    border-left: none;
    border-right: 1px solid rgba(201, 169, 110, 0.1);
  }

  .nav-links.open { transform: translateX(0); }
  .menu-toggle { display: flex; }

  .features-showcase {
    grid-template-columns: 1fr;
  }

  /* Keep featured / related products at 2 columns on phones; carousel stays single */
  .products-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem min(4vw, 1.35rem);
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .about-img-accent,
  .about-quote { display: none; }

  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.5rem;
    align-items: start;
    /* DOM order row1: Explore(1)|Collections(2) row2: Contact(3)|Hours(4) —
       first column reads tight against viewport; nudge inward (RTL-safe via logical props) */
    --footer-links-col-a-inset: clamp(0.75rem, 5.5vw, 1.5rem);
  }

  .footer-links-grid > .footer-col:nth-child(1),
  .footer-links-grid > .footer-col:nth-child(3) {
    padding-inline-start: var(--footer-links-col-a-inset);
  }

  /* Row 1: Explore | Collections — Row 2: Contact | Hours (DOM order) */
  .footer-col-plain h4 {
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }

  /* Footer trust badges (four ✦ rows) — removed on small screens for a cleaner footer */
  .footer-trust {
    display: none;
  }

  .footer-col ul {
    display: block;
    text-align: start;
  }

  .modal-content { grid-template-columns: 1fr; }
  .modal-image img { min-height: 260px; }
}

@media (max-width: 640px) {
  .features {
    overflow: visible;
  }

  .features .container {
    padding-inline: 1.25rem;
  }

  .features-card {
    padding-block: 1.2rem;
    padding-inline: 1.15rem;
  }

  .features-card:nth-child(odd) {
    padding-inline-start: 1.65rem;
  }

  .features-card:nth-child(even) {
    padding-inline-end: 1.65rem;
  }

  .features-card:hover {
    transform: none;
  }
}

@media (max-width: 400px) {
  .features-card {
    padding-block: 1.05rem;
    padding-inline: 1rem;
  }

  .features-card:nth-child(odd) {
    padding-inline-start: 1.45rem;
  }

  .features-card:nth-child(even) {
    padding-inline-end: 1.45rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ================================================
   MULTI-PAGE & ENHANCED SECTIONS
   ================================================ */

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.section-cta { text-align: center; margin-top: 3rem; }

/* Categories */
.categories { padding: 7rem 0; position: relative; overflow: hidden; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.32);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(201, 169, 110, 0.14);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.category-card:hover img { transform: scale(1.08); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(26, 16, 8, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--text-on-brown);
}

.category-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.category-overlay h3 {
  font-family: var(--font-body);
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.category-overlay p {
  font-size: 0.82rem;
  color: var(--text-on-brown-muted);
  margin-bottom: 0.75rem;
}

.category-arrow {
  font-size: 1.2rem;
  color: var(--gold-300);
  transition: transform 0.3s;
}

.category-card:hover .category-arrow { transform: translateX(6px); }
body.rtl .category-card:hover .category-arrow { transform: translateX(-6px); }

/* Featured */
.featured { padding: 7rem 0; }

.featured-grid .product-card-featured {
  grid-column: span 1;
}

.product-card-link {
  display: block;
  color: inherit;
}

.product-card-link:hover { color: inherit; }

.product-meta-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--light-muted);
}

.product-volume {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-rating { color: var(--gold-400); }

/* Process — modern luxury timeline */
.process {
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.process-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(201, 169, 110, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.35rem, 2.8vw, 2.25rem);
  margin-top: 3.5rem;
  align-items: stretch;
}

.process-rail {
  position: absolute;
  top: -1.75rem;
  left: 10%;
  right: 10%;
  display: flex;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}

.process-rail-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.55), rgba(201, 169, 110, 0.15));
  position: relative;
  overflow: hidden;
}

.process-rail-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 200, 0.9), transparent);
  animation: processShimmer 3.5s ease-in-out infinite;
}

.process-rail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2), 0 0 20px rgba(201, 169, 110, 0.45);
  flex-shrink: 0;
}

@keyframes processShimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.process-card {
  --process-radius: 1.35rem;
  position: relative;
  z-index: 1;
  border-radius: var(--process-radius);
  padding: 1px;
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.75), rgba(201, 169, 110, 0.15) 40%, rgba(201, 169, 110, 0.55));
  box-shadow:
    0 24px 48px rgba(26, 16, 8, 0.12),
    0 8px 24px rgba(26, 16, 8, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  isolation: isolate;
}

.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 45%, rgba(201, 169, 110, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.process-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(201, 169, 110, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.process-card-media {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--process-radius) - 1px);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: 115% 110%;
  opacity: 0.22;
  filter: blur(0.5px) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.process-card-body {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 2rem 1.65rem 1.65rem;
  border-radius: calc(var(--process-radius) - 1px);
  background:
    linear-gradient(165deg, rgba(34, 21, 8, 0.94) 0%, rgba(18, 10, 4, 0.97) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.process-card-index {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.55) 0%, rgba(201, 169, 110, 0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.28), rgba(201, 169, 110, 0.06));
  border: 1px solid rgba(201, 169, 110, 0.45);
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.process-card h3 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.process-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(158, 139, 110, 0.95);
  flex: 1;
  margin-bottom: 1.35rem;
}

.process-card-foot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.28);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.process-card-foot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.process-card--featured {
  transform: translateY(-10px);
  box-shadow:
    0 32px 64px rgba(26, 16, 8, 0.2),
    0 0 0 1px rgba(201, 169, 110, 0.25),
    0 0 60px rgba(201, 169, 110, 0.12);
}

.process-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 36px 72px rgba(26, 16, 8, 0.24),
    0 0 80px rgba(201, 169, 110, 0.16);
}

.process-card--featured:hover {
  transform: translateY(-18px) scale(1.02);
}

.process-card:hover .process-card-glow { opacity: 1; }

.process-card:hover .process-card-media {
  opacity: 0.32;
  transform: scale(1.08) translate(-4%, -4%);
}

.process-card:hover .process-card-icon {
  transform: translateY(-3px) rotate(-3deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(201, 169, 110, 0.22);
}

.process-card:hover .process-card-foot {
  background: rgba(201, 169, 110, 0.18);
  border-color: rgba(201, 169, 110, 0.5);
}

.process-steps { display: none; }

/* Story strip */
.story-strip { padding: 7rem 0; }

.story-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-strip-content p {
  color: var(--light-muted);
  line-height: 1.85;
  margin: 1.25rem 0 2rem;
  font-size: 0.95rem;
}

.story-strip-visual {
  position: relative;
}

.story-strip-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.story-strip-frame {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  z-index: 1;
}

body.rtl .story-strip-frame { right: auto; left: -1.5rem; }

/* Gallery */
.gallery-section { padding: 5rem 0 7rem; }

.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 5vw 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-item {
  flex: 0 0 min(320px, 70vw);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.28);
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(201, 169, 110, 0.12);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.05); }

/* Testimonials carousel */
.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonials-carousel .testimonial-card {
  opacity: 0.6;
  transform: scale(0.97);
  transition: var(--transition);
}

.testimonials-carousel .testimonial-card.carousel-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 24px 60px rgba(26, 16, 8, 0.1);
}

/* Home cascade: testimonials use .reveal + reveal-slide-x (match horizontal entry, keep carousel scale) */
.testimonials-carousel .testimonial-card.reveal:not(.visible) {
  opacity: 0 !important;
  transform: translate3d(calc(var(--reveal-shift) * (var(--reveal-dir, 0) * 2 - 1)), 0, 0) scale(0.94) !important;
  filter: none;
}
body.rtl .testimonials-carousel .testimonial-card.reveal:not(.visible) {
  transform: translate3d(calc(var(--reveal-shift) * (1 - var(--reveal-dir, 0) * 2)), 0, 0) scale(0.94) !important;
}
.testimonials-carousel .testimonial-card.reveal.visible:not(.carousel-active) {
  opacity: 0.58 !important;
  transform: scale(0.97) !important;
  filter: none;
}
.testimonials-carousel .testimonial-card.reveal.visible.carousel-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  filter: none;
}

/* Newsletter */
.newsletter { padding: 5rem 0; }

section.newsletter.section-light {
  border-top: 1px solid var(--border-on-cream);
}

section.newsletter.section-dark {
  border-top: 1px solid var(--border-gold);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  box-shadow: var(--shadow-panel);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.75;
}

.newsletter-content p {
  color: var(--light-muted);
  margin-top: 0.75rem;
  max-width: 420px;
  line-height: 1.7;
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-muted);
  transition: color 0.3s;
}

.cart-continue:hover { color: var(--gold-500); }

/* ---- Inner Page Hero (cinematic) ---- */
.page-hero-cine {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  padding-top: max(7.5rem, calc(5.75rem + env(safe-area-inset-top)));
  padding-bottom: max(4rem, env(safe-area-inset-bottom));
  overflow: hidden;
  color: var(--text-cream);
}

.page-hero-cine--compact {
  min-height: clamp(280px, 42vh, 400px);
  padding-bottom: max(3rem, env(safe-area-inset-bottom));
}

.page-hero-cine-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.06);
  animation: pageHeroKen 18s ease-out forwards;
}

@keyframes pageHeroKen {
  to { transform: scale(1); }
}

@keyframes pageHeroGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.page-hero-cine-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(72px);
}

.page-hero-cine-glow--gold {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: 5%;
  right: 8%;
  background: rgba(201, 169, 110, 0.28);
  animation: pageHeroGlowPulse 6s ease-in-out infinite;
}

.page-hero-cine-glow--beige {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  bottom: 0;
  left: 5%;
  background: rgba(201, 169, 110, 0.14);
  animation: pageHeroGlowPulse 8s ease-in-out infinite reverse;
}

body.rtl .page-hero-cine-glow--gold {
  right: auto;
  left: 8%;
}

body.rtl .page-hero-cine-glow--beige {
  left: auto;
  right: 5%;
}

.page-hero-cine-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 75% at 82% 35%, rgba(201, 169, 110, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 50% 65% at 12% 85%, rgba(201, 169, 110, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58, 36, 14, 0.88) 0%, transparent 60%),
    linear-gradient(105deg, rgba(26, 16, 8, 0.88) 0%, rgba(26, 16, 8, 0.62) 42%, rgba(26, 16, 8, 0.9) 100%);
  pointer-events: none;
}

.page-hero-cine-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-cine-ornament {
  position: absolute;
  right: max(2rem, 8vw);
  top: 50%;
  transform: translateY(-50%);
  width: min(280px, 32vw);
  height: min(280px, 32vw);
  z-index: 3;
  pointer-events: none;
}

body.rtl .page-hero-cine-ornament {
  right: auto;
  left: max(2rem, 8vw);
}

.page-hero-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 50%;
}

.page-hero-ring--outer {
  animation: pageHeroSpin 28s linear infinite;
}

.page-hero-ring--inner {
  inset: 18%;
  border-color: rgba(201, 169, 110, 0.08);
  animation: pageHeroSpin 20s linear infinite reverse;
}

@keyframes pageHeroSpin {
  to { transform: rotate(360deg); }
}

.page-hero-cine-watermark {
  position: absolute;
  right: max(1rem, 6vw);
  bottom: 0.5rem;
  z-index: 3;
  font-family: var(--font-body);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.18);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

body.rtl .page-hero-cine-watermark {
  right: auto;
  left: max(1rem, 6vw);
}

.page-hero-cine-rail {
  position: absolute;
  left: max(1.25rem, env(safe-area-inset-left));
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  z-index: 4;
  pointer-events: none;
}

body.rtl .page-hero-cine-rail {
  left: auto;
  right: max(1.25rem, env(safe-area-inset-right));
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
}

.page-hero-cine-rail span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245, 237, 213, 0.35);
}

.page-hero-cine-inner {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.page-hero-cine-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: 5;
  background:
    linear-gradient(to top, var(--surface-base) 0%, rgba(26, 16, 8, 0.88) 40%, transparent 100%),
    radial-gradient(ellipse 90% 120% at 50% 100%, rgba(201, 169, 110, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero-cine-title {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--text-cream);
  margin-bottom: 0.85rem;
}

.page-hero-cine-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(245, 237, 213, 0.94);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-hero-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 169, 110, 0.55);
  color: var(--text-cream);
  background: rgba(26, 16, 8, 0.68);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.1);
}

.page-hero-cine .breadcrumb {
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: rgba(245, 237, 213, 0.88);
}

.page-hero-cine .breadcrumb a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .page-hero-cine {
    min-height: clamp(300px, 48vh, 420px);
    padding-top: max(6.5rem, calc(5rem + env(safe-area-inset-top)));
    align-items: flex-end;
  }

  .page-hero-cine-ornament,
  .page-hero-cine-rail {
    display: none;
  }

  .page-hero-cine-watermark {
    font-size: clamp(3rem, 18vw, 5rem);
    opacity: 0.7;
  }
}

/* Legacy page hero (fallback) */
.page-hero {
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-light {
  background: var(--brown-deep);
  color: var(--text-cream);
}
.page-hero-light .page-hero-sub { color: var(--text-muted); }
.page-hero-light .breadcrumb { color: var(--text-muted); }
.page-hero-light .breadcrumb a { color: var(--text-muted); }

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58, 36, 14, 0.8) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-brown-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { transition: color 0.3s; color: inherit; }
.breadcrumb a:hover { color: var(--gold-300); }

.page-hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--text-on-brown);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 237, 213, 0.92);
  font-weight: 500;
  max-width: 520px;
}

/* Light gold page shell — shop, product & checkout */
.shop-page,
.product-page,
.checkout-page.section-light {
  position: relative;
  background: linear-gradient(180deg, #FAF4E8 0%, #F3E8D0 55%, #EDE0C4 100%);
  border-top: 1px solid var(--border-on-cream);
  border-bottom: 1px solid var(--border-on-cream);
}

.shop-page {
  padding: 4rem 0 6rem;
}

.product-page {
  padding: 3rem 0 4rem;
  min-height: 60vh;
}

.shop-page::before,
.product-page::before,
.checkout-page.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201, 169, 110, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 95% 90%, rgba(201, 169, 110, 0.08) 0%, transparent 65%);
}

.shop-page > *,
.product-page > *,
.checkout-page.section-light > * {
  position: relative;
  z-index: 1;
}

.shop-page .shop-sidebar {
  background: var(--cream-card);
  border-color: var(--border-on-cream-strong);
  box-shadow: var(--shadow-on-cream-lg);
}

.shop-page .shop-sidebar-head {
  border-bottom-color: var(--border-on-cream);
}

.shop-page .shop-sidebar-head h3 {
  color: var(--text-on-cream);
}

.shop-page .sidebar-group h4 {
  color: var(--gold-dark);
}

.shop-page .sidebar-filter {
  color: var(--text-on-cream);
  font-weight: 500;
}

.shop-page .sidebar-filter:hover {
  color: var(--brown-deep);
}

.shop-page .sidebar-filter.active {
  color: var(--brown-deep);
  background: rgba(201, 169, 110, 0.22);
  border-left-color: var(--gold);
}

.shop-page .shop-toolbar {
  border-bottom-color: var(--border-on-cream);
}

.shop-page .shop-count,
.shop-page .shop-sort-label {
  color: var(--text-on-cream-muted);
}

.shop-page .shop-sort-label select {
  background: var(--cream-card);
  border-color: var(--border-on-cream);
  color: var(--text-on-cream);
}

.shop-page .shop-search-wrap {
  border-color: rgba(139, 105, 20, 0.32);
}

.shop-page .shop-search-wrap:focus-within {
  border-color: rgba(201, 169, 110, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 0 0 2px rgba(201, 169, 110, 0.18),
    0 6px 20px rgba(201, 169, 110, 0.1);
}

.shop-page .shop-search-input {
  color: var(--text-on-cream);
}

.shop-page .shop-filter-btn {
  color: var(--brown-deep);
}

.shop-page .shop-card {
  background:
    linear-gradient(
      165deg,
      rgba(255, 252, 247, 0.98) 0%,
      rgba(237, 224, 196, 0.35) 45%,
      rgba(248, 242, 230, 0.98) 100%
    ),
    var(--cream-card);
  border: 1px solid var(--border-on-cream-strong);
  box-shadow:
    var(--shadow-on-cream),
    0 0 24px rgba(201, 169, 110, 0.1);
}

.shop-page .shop-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow:
    var(--shadow-on-cream-lg),
    0 0 36px rgba(201, 169, 110, 0.22);
}

.shop-page .shop-card-image {
  background: linear-gradient(160deg, #fffefb 0%, #faf6ee 100%);
  border-color: rgba(139, 105, 20, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.shop-page .shop-card:hover .shop-card-image {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 4px 14px rgba(201, 169, 110, 0.14);
}

.shop-page .shop-card-name {
  color: var(--text-on-cream);
}

.shop-page .shop-card-name:hover {
  color: var(--brown-deep);
}

.shop-page .shop-card-tagline {
  color: var(--text-on-cream-muted);
}

.shop-page .shop-card-star {
  color: rgba(44, 36, 24, 0.18);
}

.shop-page .shop-card-star.is-on {
  color: var(--text-on-cream);
}

.shop-page .shop-card-review-count {
  color: var(--text-on-cream-muted);
}

.shop-page .shop-card-price-line {
  color: var(--text-on-cream);
}

.shop-page .shop-card-price-value {
  color: var(--brown-deep);
}

.shop-page .shop-card-wishlist {
  background: rgba(255, 252, 247, 0.95);
  color: var(--brown-deep);
  box-shadow: 0 1px 4px rgba(44, 36, 24, 0.12);
}

.shop-page .shop-card-wishlist:hover {
  background: #fff;
}

.shop-page .shop-card-wishlist.is-active {
  color: #b33a3a;
}

.shop-page .shop-empty p {
  color: var(--text-on-cream-muted);
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.shop-main { min-width: 0; }

.shop-filter-backdrop {
  display: none;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  padding: 1.75rem;
  box-shadow:
    var(--shadow-panel),
    0 0 72px rgba(201, 169, 110, 0.1);
  overflow: hidden;
}

.shop-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.shop-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-border);
}

.shop-sidebar-head h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.shop-sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--gold-300);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.shop-sidebar-close:hover {
  background: rgba(201, 169, 110, 0.14);
  color: var(--gold-light);
}

.shop-page .shop-sidebar-close {
  color: var(--brown-deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-on-cream-strong);
  box-shadow: var(--shadow-on-cream);
}

.shop-page .shop-sidebar-close:hover {
  background: #fff;
  color: var(--brown-deep);
  border-color: var(--gold);
}

.sidebar-group { margin-bottom: 1.75rem; }

.sidebar-group h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.sidebar-filters { display: flex; flex-direction: column; gap: 0.35rem; }

.sidebar-filter {
  background: transparent;
  border: none;
  text-align: left;
  font-size: 0.85rem;
  color: var(--light-muted);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

body.rtl .sidebar-filter { text-align: right; border-left: none; border-right: 2px solid transparent; }

.sidebar-filter:hover { color: var(--light-text); }

.sidebar-filter.active {
  color: var(--text-cream);
  background: rgba(201, 169, 110, 0.12);
  border-left-color: var(--gold);
}

body.rtl .sidebar-filter.active { border-right-color: var(--gold-400); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-count {
  flex: 0 0 auto;
  font-size: 0.82rem;
  color: var(--light-muted);
  letter-spacing: 0.06em;
}

.shop-toolbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: flex-end;
  flex: 1 1 min(340px, 100%);
  min-width: 0;
}

body.rtl .shop-toolbar-actions {
  justify-content: flex-start;
}

.shop-toolbar-cluster {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 100%;
}

.shop-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;
}

.shop-search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold-strong);
  background:
    linear-gradient(185deg, rgba(255, 252, 247, 0.98) 0%, rgba(245, 236, 216, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 2px 14px rgba(26, 16, 8, 0.07);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-search-wrap:focus-within {
  border-color: rgba(201, 169, 110, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 0 0 2px rgba(201, 169, 110, 0.15),
    0 8px 24px rgba(201, 169, 110, 0.12);
}

.shop-search-icon {
  flex-shrink: 0;
  color: var(--gold-dark);
  opacity: 0.9;
}

.shop-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-on-cream);
}

.shop-search-input::placeholder {
  color: var(--text-on-cream-muted);
  opacity: 0.82;
}

/* Gold filter control — shimmer + pulse; shown with drawer (≤1024px) */
.shop-filter-btn {
  position: relative;
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.52rem 0.92rem;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-deep);
  background: linear-gradient(145deg, #eed9a8 0%, var(--gold) 48%, var(--gold-dark) 100%);
  box-shadow:
    0 1px 0 rgba(255, 250, 240, 0.45) inset,
    0 4px 16px rgba(201, 169, 110, 0.35),
    0 0 0 1px rgba(201, 169, 110, 0.45);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    filter 0.25s ease;
  animation: shop-filter-pulseGlow 3.2s ease-in-out infinite;
  overflow: hidden;
}

.shop-filter-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.02);
  animation: none;
  box-shadow:
    0 1px 0 rgba(255, 250, 240, 0.55) inset,
    0 10px 32px rgba(201, 169, 110, 0.48),
    0 0 0 1px rgba(232, 213, 163, 0.58);
}

.shop-filter-btn:active {
  transform: translateY(0) scale(0.98);
}

.shop-filter-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    118deg,
    transparent 37%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 62%
  );
  background-size: 220% 100%;
  animation: shop-filter-shimmer 2.35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: inherit;
}

.shop-filter-btn.is-open {
  filter: saturate(1.08) brightness(1.04);
  animation: shop-filter-glowHeld 2.4s ease-in-out infinite alternate;
}

.shop-filter-btn-label {
  position: relative;
  z-index: 1;
}

.shop-filter-icon-svg {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@keyframes shop-filter-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

@keyframes shop-filter-pulseGlow {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255, 250, 240, 0.45) inset,
      0 4px 16px rgba(201, 169, 110, 0.32),
      0 0 0 1px rgba(201, 169, 110, 0.42);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 250, 240, 0.5) inset,
      0 8px 24px rgba(201, 169, 110, 0.5),
      0 0 0 1px rgba(232, 213, 163, 0.55),
      0 0 36px rgba(201, 169, 110, 0.22);
  }
}

@keyframes shop-filter-glowHeld {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255, 250, 240, 0.5) inset,
      0 6px 22px rgba(201, 169, 110, 0.45),
      0 0 0 2px rgba(26, 16, 8, 0.14);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 250, 240, 0.55) inset,
      0 10px 30px rgba(201, 169, 110, 0.55),
      0 0 0 2px rgba(201, 169, 110, 0.35),
      0 0 40px rgba(201, 169, 110, 0.18);
  }
}

.shop-sort-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--light-muted);
}

.shop-sort-label select {
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-cream);
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.85rem);
}

@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shop catalog — rounded gold-framed cards */
.shop-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background:
    linear-gradient(165deg, rgba(255, 253, 248, 0.98) 0%, rgba(250, 240, 220, 0.55) 48%, rgba(255, 252, 245, 0.95) 100%);
  border: 1px solid rgba(183, 140, 50, 0.42);
  border-radius: clamp(14px, 2.5vw, 18px);
  padding: clamp(0.62rem, 2.2vw, 0.85rem);
  box-shadow:
    0 2px 0 rgba(201, 169, 110, 0.12),
    0 8px 28px rgba(44, 36, 24, 0.06),
    0 0 0 1px rgba(201, 169, 110, 0.08);
  overflow: hidden;
  transition:
    transform 0.38s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.38s var(--ease-out);
}

.shop-card:hover {
  border-color: rgba(201, 169, 110, 0.75);
  box-shadow:
    0 2px 0 rgba(201, 169, 110, 0.2),
    0 14px 36px rgba(44, 36, 24, 0.1),
    0 0 40px rgba(201, 169, 110, 0.18);
}

/* Shop catalog — scroll/slide reveals: preserve opacity + transform (avoid .shop-card transition wipe) */
.shop-page .shop-card.reveal {
  --reveal-shift: clamp(52px, 9vw, 110px);
  transition:
    opacity 1s cubic-bezier(0.22, 0.92, 0.28, 1),
    transform 1.12s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s var(--ease-out),
    box-shadow 0.38s var(--ease-out);
}

.shop-page .shop-grid .shop-card.reveal.visible:hover {
  transform: translate3d(0, -4px, 0);
}

.shop-card-top {
  position: relative;
  margin-bottom: 0.65rem;
}

.shop-card-media {
  display: block;
  text-decoration: none;
  color: inherit;
}

.shop-card-image {
  aspect-ratio: 1 / 1;
  background: #fffefb;
  border-radius: clamp(9px, 2vw, 12px);
  border: 1px solid rgba(201, 169, 110, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.shop-card:hover .shop-card-image {
  transform: scale(1.015);
  border-color: rgba(201, 169, 110, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 16px rgba(201, 169, 110, 0.12);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
}

.shop-card-wishlist {
  position: absolute;
  top: 0.35rem;
  inset-inline-end: 0.35rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #1a1a1a;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.shop-card-wishlist:hover {
  transform: scale(1.06);
  background: #fff;
}

.shop-card-wishlist.is-active {
  color: #b33a3a;
}

.shop-card-wishlist.is-active svg {
  fill: currentColor;
}

.shop-card-wishlist:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.shop-card-body {
  padding: 0 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  text-align: center;
  flex: 1;
  min-height: 0;
  border: none;
}

.shop-card-name {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2.2vw, 0.98rem);
  font-weight: 700;
  line-height: 1.32;
  color: #141414;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.25s;
  max-width: 100%;
}

.shop-card-name:hover {
  color: #3d3d3d;
}

.shop-card-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  color: #6b6b6b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 22ch;
}

.shop-card-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-top: 0.25rem;
}

.shop-card-stars {
  display: inline-flex;
  gap: 0.06rem;
  line-height: 1;
}

.shop-card-star {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.2);
}

.shop-card-star.is-on {
  color: #141414;
}

.shop-card-review-count {
  font-size: 0.68rem;
  font-weight: 400;
  color: #757575;
  white-space: nowrap;
}

.shop-card-footer {
  margin-top: 0.5rem;
  padding-top: 0;
  border: none;
  width: 100%;
}

.shop-card-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.85rem;
}

.shop-card-price-line {
  margin: 0;
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
}

.shop-card-price-value {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 3.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0a0a0a;
}

.shop-card-cta {
  flex-shrink: 0;
  appearance: none;
  margin: 0;
  padding: 0.55rem 1rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
  background: #111;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.shop-card-cta:hover {
  transform: translateY(-1px);
  background: #252525;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.shop-card-cta:active {
  transform: translateY(0);
}

.shop-card-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .shop-grid {
    gap: 1rem;
  }

  .shop-card {
    border-radius: 13px;
    padding: 0.52rem 0.55rem;
  }

  .shop-card-top {
    margin-bottom: 0.55rem;
  }

  .shop-card-body {
    padding: 0 0.08rem;
    gap: 0.28rem;
  }

  .shop-card-name {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .shop-card-tagline {
    font-size: 0.66rem;
    max-width: 100%;
  }

  .shop-card-star {
    font-size: 0.62rem;
  }

  .shop-card-review-count {
    font-size: 0.62rem;
  }

  .shop-card-price-value {
    font-size: clamp(1rem, 4.2vw, 1.2rem);
  }

  .shop-card-cta {
    padding: 0.48rem 0.75rem;
    min-height: 2.35rem;
    font-size: 0.52rem;
    letter-spacing: 0.09em;
    border-radius: 5px;
  }

  .shop-card-wishlist {
    width: 32px;
    height: 32px;
  }
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.shop-empty p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--light-muted);
}

.shop-trust { padding: 4rem 0; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border-gold-strong);
  border-left: 3px solid var(--gold);
  background: var(--surface-panel);
  box-shadow: var(--shadow-card);
}

body.rtl .trust-item {
  border-left: 1px solid var(--border-gold-strong);
  border-right: 3px solid var(--gold);
}

.trust-item p {
  font-size: 0.75rem;
  color: var(--light-muted);
}

.trust-item > span {
  color: var(--gold-400);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  color: var(--light-text);
}

/* Product detail */
.product-layout { padding-bottom: 4rem; }

.product-page .product-gallery-main {
  border-color: var(--border-on-cream-strong);
  background: var(--cream-card);
  box-shadow: var(--shadow-on-cream-lg);
}

.product-page .product-gallery-main img {
  object-fit: contain;
  background: linear-gradient(145deg, var(--cream-200) 0%, var(--cream-50) 100%);
}

.product-page .product-detail-name,
.product-page .product-about-title,
.product-page .product-highlights strong {
  color: var(--text-on-cream);
}

.product-page .product-detail-brand {
  color: var(--gold-dark);
}

.product-page .product-detail-tagline {
  color: var(--text-on-cream-muted);
}

.product-page .product-detail-rating,
.product-page .product-detail-desc,
.product-page .product-highlights span,
.product-page .product-option-label,
.product-page .product-option-meta {
  color: var(--text-on-cream-muted);
}

.product-page .product-info-tabs {
  margin-bottom: 4rem;
}

.product-page .product-tab-copy,
.product-page .notes-detail {
  color: var(--text-on-cream-muted);
}

.product-page .related-section {
  border-top-color: var(--border-on-cream);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 2rem 0 4rem;
  align-items: start;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold-strong);
  background: var(--surface-panel);
  box-shadow: var(--shadow-panel);
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-badge-lg {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(26, 16, 8, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.product-detail-brand {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.product-detail-edition {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--gold-light);
  color: var(--brown-deep);
  border: 1px solid rgba(139, 105, 20, 0.15);
}

.product-detail-name {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0.45rem;
  color: var(--text-on-cream);
}

.product-detail-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-on-cream-muted);
  margin-bottom: 1.1rem;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-on-cream-muted);
  margin-bottom: 1rem;
}

.product-detail-rating .stars { color: var(--gold); }

.product-detail-price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: 0.03em;
  background: var(--gold-light);
  border: 1px solid rgba(139, 105, 20, 0.18);
  padding: 0.5rem 1rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.product-option-group {
  margin-bottom: 1.25rem;
}

.product-option-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
  margin-bottom: 0.55rem;
}

.product-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.product-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brown-deep);
  background: var(--cream-card);
  border: 1px solid var(--border-on-cream);
  cursor: default;
}

.product-size.active {
  background: var(--brown-deep);
  color: var(--text-cream);
  border-color: var(--brown-deep);
  box-shadow: 0 4px 16px rgba(26, 16, 8, 0.15);
}

.product-option-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
}

.product-highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border: 1px solid var(--border-on-cream);
  background: rgba(255, 252, 247, 0.7);
}

.product-highlights li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border-on-cream);
}

.product-highlights li:last-child {
  border-bottom: none;
}

.product-highlights span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
}

.product-highlights strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-cream);
  text-align: right;
  line-height: 1.4;
}

body.rtl .product-highlights strong {
  text-align: left;
}

.product-about {
  margin-bottom: 1.75rem;
}

.product-about-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-cream);
  margin-bottom: 0.65rem;
}

.product-detail-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-on-cream-muted);
  line-height: 1.8;
  margin: 0;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-info-tabs {
  max-width: 820px;
  margin: 0 auto 4rem;
}

.product-tab-nav {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--border-on-cream);
  margin-bottom: 0;
}

.product-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.product-tab:hover {
  color: var(--gold-dark);
}

.product-tab.active {
  color: var(--brown-deep);
  border-bottom-color: var(--gold);
}

.product-tab-panels {
  padding-top: 1.75rem;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.active {
  display: block;
}

.scent-composition {
  display: flex;
  flex-direction: column;
}

.scent-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) 1fr;
  gap: 1.25rem 2rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-on-cream);
}

.scent-row:first-child {
  padding-top: 0;
}

.scent-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scent-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.scent-values {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 400;
  color: var(--text-on-cream);
  line-height: 1.6;
  margin: 0;
}

.product-tab-copy {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-on-cream-muted);
  max-width: 680px;
  margin: 0;
}

.notes-detail {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-on-cream-muted);
  margin: 0;
}

.related-section {
  padding-top: 3rem;
  border-top: 1px solid var(--light-border);
}

.related-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* About page */
.about-story { padding: 6rem 0; }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-media {
  position: relative;
}

.about-story-media > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-story-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 20px 50px rgba(26, 16, 8, 0.1);
}

.about-story-badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.about-story-badge span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--light-text);
}

.about-story-text p {
  color: var(--light-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-inline-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-500);
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold-400);
}

body.rtl .about-inline-quote {
  padding-left: 0;
  padding-right: 1.25rem;
  border-left: none;
  border-right: 2px solid var(--gold-400);
}

.about-stats { padding: 5rem 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-block strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(201, 169, 110, 0.2);
}

.stat-block span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-brown-muted);
}

.about-values { padding: 6rem 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2rem 1.5rem;
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-panel);
}

.value-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.value-card p { font-size: 0.85rem; line-height: 1.7; color: var(--light-muted); }

.about-timeline { padding: 6rem 0; }

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-year {
  text-align: right;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gold-400);
  letter-spacing: 0.08em;
}

body.rtl .timeline-year { text-align: left; }

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold-glow);
  flex-shrink: 0;
}

.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--text-on-brown);
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-on-brown-muted);
  line-height: 1.6;
}

.about-gallery { padding: 4rem 0 6rem; }

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-gallery-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.about-gallery-grid img:hover { transform: scale(1.03); }

/* Contact page */
.contact-page { padding: 5rem 0 6rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  padding: 2.5rem;
  box-shadow:
    var(--shadow-panel),
    0 0 80px rgba(201, 169, 110, 0.07);
}

.contact-form h2 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-cream);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 110, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-card);
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--gold-500);
}

.info-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.info-icon { font-size: 1rem; }

.info-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  color: var(--gold);
  flex-shrink: 0;
}

.info-icon-svg svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Contact — dark panels on cream page; light typography throughout */
.contact-page.section-light .contact-form {
  /* Kill dark inheritance from `.section-light` (#1A1008); children / inputs stay legible */
  color: var(--text-cream);
  background: linear-gradient(180deg, var(--brown-mid) 0%, var(--brown-surface) 100%);
  border: 1px solid var(--border-gold-strong);
  box-shadow:
    var(--shadow-panel),
    0 0 64px rgba(201, 169, 110, 0.12);
}

.contact-page.section-light .contact-form h2 {
  color: var(--gold-light);
}

.contact-page.section-light .contact-form .form-group label {
  color: rgba(245, 237, 213, 0.88);
}

.contact-page.section-light .contact-form .form-group input,
.contact-page.section-light .contact-form .form-group textarea {
  background: var(--brown-card);
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
}

.contact-page.section-light .contact-form .form-group input::placeholder,
.contact-page.section-light .contact-form .form-group textarea::placeholder {
  color: rgba(245, 237, 213, 0.45);
  opacity: 1;
}

.contact-page.section-light .contact-form .form-group input:focus,
.contact-page.section-light .contact-form .form-group textarea:focus {
  border-color: rgba(201, 169, 110, 0.7);
  outline: none;
}

.contact-page.section-light .contact-form input:-webkit-autofill,
.contact-page.section-light .contact-form input:-webkit-autofill:focus,
.contact-page.section-light .contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--text-cream);
  caret-color: var(--text-cream);
  box-shadow: 0 0 0 1000px var(--brown-card) inset !important;
  transition: background-color 99999s ease-out;
}

.contact-page.section-light .info-card {
  color: var(--text-cream);
  background: linear-gradient(180deg, var(--brown-mid) 0%, var(--brown-surface) 100%);
  border: 1px solid var(--border-gold-strong);
  box-shadow: var(--shadow-card);
}

.contact-page.section-light .info-card h3 {
  color: var(--gold-light);
}

.contact-page.section-light .info-card .info-item {
  color: var(--text-cream);
}

.contact-page.section-light .info-card .info-item a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-page.section-light .info-card .info-item a:hover {
  color: #fffef5;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.contact-page.section-light .info-card .info-item strong {
  color: var(--text-cream);
}

.contact-page.section-light .info-card p {
  color: rgba(245, 237, 213, 0.94);
  line-height: 1.65;
}

.contact-page.section-light .info-card .info-icon-svg {
  color: var(--gold-light);
}

.contact-map {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.contact-map-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  border: none;
  border-radius: var(--radius-md, 12px);
  box-shadow:
    var(--shadow-on-cream-lg),
    0 0 0 1px rgba(139, 105, 20, 0.12);
}

.contact-page.section-light .contact-map-frame {
  box-shadow:
    var(--shadow-on-cream-lg),
    0 0 0 1px var(--border-on-cream-strong);
}

.contact-map-external {
  align-self: flex-start;
  padding: 0.55rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

body.rtl .contact-map-external {
  align-self: flex-end;
}

.faq-section { padding: 5rem 0 6rem; }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-on-brown);
  cursor: pointer;
  transition: color 0.3s;
}

body.rtl .faq-question { text-align: right; }

.faq-question:hover { color: var(--gold-300); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-400);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  font-family: var(--font-body);
  padding-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-on-brown-muted);
  line-height: 1.75;
}

/* Multi-page responsive */
@media (max-width: 1024px) {
  /*
   * Shop filter drawer/backdrop stack under the cinematic hero unless the shop
   * section wins a higher stacking layer (both are siblings under main).
   */
  main.page-reveal-scope > section.page-hero-cine {
    position: relative;
    z-index: 1;
  }

  main.page-reveal-scope > section.shop-page {
    position: relative;
    z-index: 10;
  }

  :root {
    --shop-drawer-top: calc(5.5rem + env(safe-area-inset-top));
  }

  .shop-layout {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    isolation: isolate;
    /* Drawer + backdrop share the products grid cell so z-index stacks correctly */
  }

  .shop-sidebar,
  .shop-main,
  .shop-filter-backdrop {
    grid-column: 1;
    grid-row: 1;
  }

  .shop-main {
    position: relative;
    z-index: 1;
    /* row height follows product area */
    align-self: start;
  }

  .shop-toolbar-actions .shop-sort-label {
    display: none;
  }

  .shop-filter-backdrop {
    display: block;
    position: fixed;
    /* Match sidebar top so overlay doesn’t sit under unreadable blackout under nav */
    top: var(--shop-drawer-top);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: visible;
    align-self: start;
    justify-self: start;
    background: rgba(26, 16, 8, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s var(--ease-out),
      visibility 0.3s,
      background 0.3s ease;
  }

  .shop-filter-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .categories-grid,
  .values-grid,
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .shop-sidebar {
    position: fixed;
    top: var(--shop-drawer-top);
    left: 0;
    width: min(304px, 88vw);
    height: calc(100vh - var(--shop-drawer-top));
    height: calc(100dvh - var(--shop-drawer-top));
    z-index: 3;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0.5rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
  body.rtl .shop-sidebar {
    left: auto;
    right: 0;
    transform: translateX(100%);
    padding-right: max(0.75rem, env(safe-area-inset-right));
    padding-left: 0.75rem;
  }
  .shop-sidebar.open {
    transform: translateX(0);
  }

  body.rtl .shop-sidebar.open {
    transform: translateX(0);
  }

  .shop-sidebar-head {
    position: sticky;
    top: 0;
    z-index: 4;
    background: var(--cream-card);
    border-bottom: 1px solid var(--border-on-cream);
    box-shadow: 0 8px 20px rgba(26, 16, 8, 0.08);
  }

  .shop-sidebar-close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  /*
   * Drawer is portaled under body.open on mobile — these rules MUST come after generic
   * .shop-sidebar transform rules and list .open / RTL .open last so transforms win.
   */
  body > #shopFilterBackdrop.shop-filter-backdrop {
    z-index: 1040;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  body > aside#shopSidebar.shop-sidebar {
    z-index: 1050;
    transition: transform 0.4s var(--ease-out);
  }

  body > aside#shopSidebar.shop-sidebar:not(.open) {
    -webkit-transform: translateZ(0) translateX(-100%);
    transform: translateZ(0) translateX(-100%);
  }

  body > aside#shopSidebar.shop-sidebar.open {
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
  }

  body.rtl > aside#shopSidebar.shop-sidebar:not(.open) {
    transform: translateZ(0) translateX(100%);
  }

  body.rtl > aside#shopSidebar.shop-sidebar.open {
    transform: translateZ(0) translateX(0);
  }

  /* Portaled drawer: no .shop-page ancestor — remove cream strip; match dark panel */
  body > aside#shopSidebar.shop-sidebar .shop-sidebar-head {
    background: transparent;
    border-bottom-color: rgba(201, 169, 110, 0.32);
    box-shadow: none;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
  }

  body > aside#shopSidebar.shop-sidebar .shop-sidebar-head h3 {
    color: var(--gold-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.92rem;
  }

  body > aside#shopSidebar.shop-sidebar .shop-sidebar-close {
    background: rgba(26, 16, 8, 0.35);
    border: 1px solid rgba(201, 169, 110, 0.45);
    color: var(--gold-light);
    box-shadow: none;
  }

  body > aside#shopSidebar.shop-sidebar .shop-sidebar-close:hover {
    background: rgba(201, 169, 110, 0.16);
    color: #fff;
    border-color: var(--gold);
  }

  .shop-filter-btn { display: inline-flex; align-items: center; }
  .story-strip-grid,
  .about-story-grid,
  .product-detail-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 1px; height: 40px; margin: 0; }
  .process-flow { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-carousel { grid-template-columns: 1fr; }
  .testimonials-carousel .testimonial-card { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .scent-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1rem 0;
  }

  .product-tab-nav {
    gap: 0.75rem;
  }

  .product-tab {
    font-size: 0.6rem;
    padding-bottom: 0.85rem;
  }

  .categories-grid,
  .values-grid,
  .trust-bar,
  .stats-grid,
  .about-gallery-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 12px; }
  body.rtl .timeline::before {
    left: auto;
    right: 12px;
    transform: none;
  }

  .timeline-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .timeline-year { grid-column: 2; text-align: left; }
  body.rtl .timeline-year { text-align: right; }
  .timeline-dot { grid-row: 1 / 3; }
  .timeline-content { grid-column: 2; }
}

/* CHECKOUT & ORDER CONFIRMATION */
.checkout-hero { padding-bottom: 3rem; }
.checkout-page { padding: 3rem 0 6rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 3rem; }
.step-indicator .step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.4; transition: var(--transition); }
.step-indicator .step.done, .step-indicator .step.active { opacity: 1; }
.step-indicator .step.done { cursor: pointer; }
.step-indicator .step span { width: 36px; height: 36px; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 0.85rem; }
.step-indicator .step.active span, .step-indicator .step.done span { background: linear-gradient(135deg, var(--gold-400), var(--gold-300)); color: var(--dark-950); border-color: var(--gold-400); }
.step-indicator .step p { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-muted); }
.step-line { width: 48px; height: 1px; background: rgba(212,175,55,0.2); margin: 0 0.5rem 1.5rem; }
.checkout-form {
  background: var(--surface-panel);
  border: 1px solid var(--border-gold-strong);
  padding: 2.5rem;
  box-shadow:
    var(--shadow-panel),
    0 0 80px rgba(201, 169, 110, 0.07);
}
.checkout-step { display: none; }
.checkout-step.active { display: block; animation: fadeStep 0.4s var(--ease-out); }
@keyframes fadeStep { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.checkout-step h2 { font-family: var(--font-body); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--light-text); }
.step-desc { font-size: 0.88rem; color: var(--light-muted); margin-bottom: 2rem; }
.checkout-form select { width: 100%; background: var(--light-bg); border: 1px solid var(--light-border); padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.9rem; }
.field-error input, .field-error select, .field-error textarea { border-color: #c44 !important; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: var(--light-muted); margin: 1.25rem 0; cursor: pointer; }
.checkbox-label input { accent-color: var(--gold-400); }
.step-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--light-border); flex-wrap: wrap; }
.payment-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.payment-option { display: flex; gap: 1rem; padding: 1.25rem; border: 1px solid var(--light-border); cursor: pointer; transition: var(--transition); }
.payment-option:has(input:checked) { border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.04); }
.payment-option-content strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--light-text); }
.payment-option-content span { font-size: 0.78rem; color: var(--light-muted); }
.card-fields { padding: 1.5rem; background: var(--surface-card); border: 1px solid var(--border-gold); margin-bottom: 1rem; }
.card-fields.hidden { display: none; }
.secure-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--light-muted); margin-top: 1rem; }
.review-block { padding: 1.25rem; background: var(--surface-card); border: 1px solid var(--border-gold); margin-bottom: 0.75rem; }
.review-block h4 { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 0.6rem; }
.checkout-summary-card { background: var(--surface-panel); border: 1px solid var(--border-gold-strong); padding: 1.75rem; position: sticky; top: 100px; box-shadow: var(--shadow-panel); }
.checkout-summary-card h3 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--light-border); }
.summary-item { display: flex; gap: 0.85rem; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--light-border); }
.summary-item img { width: 52px; height: 52px; object-fit: cover; }
.summary-item-info { flex: 1; }
.summary-item-name { font-family: var(--font-body); font-size: 0.95rem; }
.summary-item-meta { font-size: 0.72rem; color: var(--light-muted); }
.summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--light-muted); padding: 0.4rem 0; }
.summary-line.summary-total { font-family: var(--font-body); font-size: 1.15rem; color: var(--light-text); border-top: 1px solid var(--light-border); padding-top: 1rem; margin-top: 0.5rem; }
.summary-line.summary-total span:last-child { color: var(--gold-500); }
.summary-note { font-size: 0.72rem; color: var(--gold-500); margin-top: 0.75rem; font-style: italic; }
.checkout-trust { margin-top: 1.25rem; padding: 1.25rem; border: 1px solid var(--border-gold); background: var(--surface-card); }
.checkout-trust p { font-size: 0.75rem; color: var(--light-muted); margin-bottom: 0.5rem; }

/* Checkout on cream shell (matches shop / product) */
.checkout-page.section-light .step-indicator .step span {
  border-color: var(--border-on-cream-strong);
  color: var(--text-on-cream-muted);
}

.checkout-page.section-light .step-indicator .step.active span,
.checkout-page.section-light .step-indicator .step.done span {
  color: var(--dark-950);
}

.checkout-page.section-light .step-indicator .step p { color: var(--text-on-cream-muted); }
.checkout-page.section-light .step-line { background: rgba(139, 105, 20, 0.22); }

.checkout-layout,
.checkout-main,
.checkout-sidebar {
  min-width: 0;
}

.checkout-page.section-light .checkout-form {
  background: var(--cream-card);
  border: 1px solid var(--border-on-cream-strong);
  box-shadow: var(--shadow-on-cream-lg);
}

.checkout-page.section-light .checkout-step h2 { color: var(--text-on-cream); }
.checkout-page.section-light .step-desc { color: var(--text-on-cream-muted); }

.checkout-page.section-light .form-group label {
  color: var(--text-on-cream-muted);
}

.checkout-page.section-light .checkout-form .form-group input,
.checkout-page.section-light .checkout-form .form-group textarea {
  background: var(--cream-50);
  border-color: var(--border-on-cream);
  color: var(--text-on-cream);
}

.checkout-page.section-light .checkout-form select {
  background: var(--cream-50);
  border-color: var(--border-on-cream);
  color: var(--text-on-cream);
}

.checkout-page.section-light .checkbox-label { color: var(--text-on-cream-muted); }
.checkout-page.section-light .step-actions { border-top-color: var(--border-on-cream); }

.checkout-page.section-light .payment-option {
  border-color: var(--border-on-cream);
  background: rgba(255, 252, 247, 0.72);
}

.checkout-page.section-light .payment-option:has(input:checked) {
  border-color: rgba(139, 105, 20, 0.5);
  background: rgba(201, 169, 110, 0.14);
}

.checkout-page.section-light .payment-option-content strong { color: var(--text-on-cream); }
.checkout-page.section-light .payment-option-content span { color: var(--text-on-cream-muted); }

.checkout-page.section-light .card-fields {
  background: var(--cream-100);
  border-color: var(--border-on-cream-strong);
}

.checkout-page.section-light .secure-note { color: var(--text-on-cream-muted); }

.checkout-page.section-light .review-block {
  background: var(--cream-card);
  border-color: var(--border-on-cream);
}

.checkout-page.section-light .checkout-summary-card {
  background: var(--cream-card);
  border-color: var(--border-on-cream-strong);
  box-shadow: var(--shadow-on-cream-lg);
}

.checkout-page.section-light .checkout-summary-card h3 {
  border-bottom-color: var(--border-on-cream);
  color: var(--text-on-cream);
}

.checkout-page.section-light .summary-item { border-bottom-color: var(--border-on-cream); }
.checkout-page.section-light .summary-item-name { color: var(--text-on-cream); }
.checkout-page.section-light .summary-item-meta { color: var(--text-on-cream-muted); }
.checkout-page.section-light .summary-line { color: var(--text-on-cream-muted); }

.checkout-page.section-light .summary-line.summary-total {
  color: var(--text-on-cream);
  border-top-color: var(--border-on-cream);
}

.checkout-page.section-light .checkout-trust {
  background: rgba(255, 252, 247, 0.9);
  border-color: var(--border-on-cream-strong);
}

.checkout-page.section-light .checkout-trust p { color: var(--text-on-cream-muted); }

.confirmation-page { padding: 2rem 0 6rem; }
.thank-you-page { padding: 2rem 0 6rem; }
.thank-you-inner { max-width: 440px; margin: 0 auto; text-align: center; }
.thank-you-intro { margin-bottom: 2rem; }
.thank-you-ref { color: var(--light-muted); font-size: 0.95rem; margin-top: 0.5rem; }
.thank-you-ref strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--gold-500);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}
.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.thank-you-footnote { font-size: 0.85rem; color: var(--light-muted); line-height: 1.6; max-width: 360px; margin: 0 auto; }
.thank-you-empty { padding: 4rem 1rem; text-align: center; }
.thank-you-empty h2 { margin-bottom: 1.5rem; }
.confirm-success { text-align: center; margin-bottom: 3rem; }
.confirm-icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--gold-400), var(--gold-300)); color: var(--dark-950); font-size: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.confirm-success h1 { font-family: var(--font-body); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.75rem; color: var(--light-text); }
.confirm-sub { color: var(--light-muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.confirm-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; }
.confirm-card { background: var(--surface-panel); border: 1px solid var(--border-gold-strong); padding: 1.75rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-card); }
.confirm-card h3 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 1rem; }
.confirm-order-id strong { font-family: var(--font-body); font-size: 1.5rem; color: var(--gold-500); }
.confirm-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.confirm-item { display: flex; gap: 1rem; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--light-border); }
.confirm-item img { width: 56px; height: 56px; object-fit: cover; }
.confirm-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.confirm-email-note { font-size: 0.78rem; color: var(--light-muted); text-align: center; margin-top: 1rem; }
.status-badge { color: #2a8a4a !important; }
@media (max-width: 1024px) {
  .checkout-layout,
  .confirm-grid { grid-template-columns: 1fr; }

  /* Order summary + trust strip first when layout stacks */
  .checkout-sidebar { order: -1; }

  .checkout-summary-card { position: static; }
}

@media (max-width: 720px) {
  .checkout-page { padding: 1.75rem 0 4rem; }

  .checkout-layout { gap: 1.5rem; }

  .checkout-form { padding: 1.35rem 1.1rem; }

  .checkout-step h2 { font-size: clamp(1.25rem, 5vw, 1.45rem); }
}

@media (max-width: 540px) {
  .checkout-form { padding: 1.15rem 0.95rem; }

  .step-indicator {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
    margin-left: calc(-1 * max(1rem, env(safe-area-inset-left)));
    margin-right: calc(-1 * max(1rem, env(safe-area-inset-right)));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    gap: 0;
  }

  .step-indicator .step {
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .step-indicator .step span {
    width: 31px;
    height: 31px;
    font-size: 0.74rem;
  }

  .step-indicator .step p {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    max-width: 4.75rem;
    text-align: center;
    line-height: 1.25;
    hyphens: auto;
    word-break: break-word;
  }

  .step-line {
    width: 18px;
    margin: 0 0.2rem 1.15rem;
    flex-shrink: 0;
  }

  .payment-option { flex-wrap: wrap; padding: 1rem; gap: 0.75rem; }

  .step-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .step-actions .btn { width: 100%; justify-content: center; text-align: center; }
}

/* === HOME SECTION ENHANCEMENTS === */
.home-section-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-section-glow--cream {
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 55%);
}

.section-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1rem;
}

.section-rule--center { margin-left: auto; margin-right: auto; }
.section-rule--gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 64px; }

.section-intro .section-lead {
  max-width: 52ch;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.section-intro.centered .section-lead { margin-left: auto; margin-right: auto; }

.home-section-link { align-self: flex-start; margin-top: 2rem; }

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.35rem 1.5rem;
  background: var(--cream-card);
  border: 1px solid var(--border-on-cream-strong);
  box-shadow: var(--shadow-on-cream);
}

.home-stat {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid rgba(201, 169, 110, 0.18);
}

.home-stat:last-child { border-right: none; }

body.rtl .home-stat {
  border-right: none;
  border-left: 1px solid rgba(201, 169, 110, 0.18);
}

body.rtl .home-stat:last-child { border-left: none; }

.home-stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.home-stat span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
}

.marquee { position: relative; }

.marquee-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-edge--left {
  left: 0;
  background: linear-gradient(90deg, var(--surface-band), transparent);
}

.marquee-edge--right {
  right: 0;
  background: linear-gradient(270deg, var(--surface-band), transparent);
}

.category-pill {
  display: inline-block;
  width: fit-content;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.18);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 0.28rem 0.55rem;
  margin-bottom: 0.65rem;
}

.categories .category-overlay {
  background: linear-gradient(transparent 25%, rgba(26, 16, 8, 0.92) 100%);
}

/* Category cards live in `.section-light` but sit on dark photos — section-wide h/p colors are dark-brown-on-cream and must not apply here */
.section-light .category-overlay {
  color: rgba(252, 248, 240, 0.96);
}

.section-light .category-overlay h3 {
  color: #fffcf7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.section-light .category-overlay p {
  color: rgba(248, 240, 220, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.section-light .category-overlay .category-arrow {
  color: var(--gold-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.section-light .category-overlay .category-num {
  color: var(--gold-light);
}

.section-light .category-overlay .category-pill {
  color: var(--gold-light);
  border-color: rgba(232, 213, 163, 0.45);
  background: rgba(26, 16, 8, 0.35);
}

.featured { position: relative; }

.featured-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}

.featured-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.featured-count {
  font-family: var(--font-body);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.featured-filters {
  display: flex;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
}

.featured-filters .pill { color: var(--text-muted); }
.featured-filters .pill.active { color: var(--brown-deep); }

.home-featured-grid .product-card-featured .product-image-wrap img {
  object-fit: contain;
  padding: 1rem;
}

.process { position: relative; }

.process-flow { position: relative; z-index: 1; }

.story-strip { position: relative; overflow: hidden; }

.story-strip-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.story-mini-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.story-mini-stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.story-mini-stat span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-visual-main img,
.story-strip-visual > img {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.story-visual-main img { position: relative; z-index: 2; }

.story-visual-accent {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  width: 42%;
  z-index: 3;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(26, 16, 8, 0.85);
  padding: 0.65rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

body.rtl .story-visual-accent { left: auto; right: -1.5rem; }

.story-visual-accent img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1;
}

.story-visual-badge {
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: rgba(26, 16, 8, 0.88);
  border: 1px solid rgba(201, 169, 110, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

body.rtl .story-visual-badge { right: auto; left: 0; }

.story-visual-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}


.gallery-strip-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gallery-strip--animated {
  width: max-content;
  animation: galleryScroll 45s linear infinite;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-item {
  position: relative;
  flex: 0 0 min(280px, 65vw);
}

.gallery-item-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(26, 16, 8, 0.88));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gallery-item-num {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.gallery-item-cap span:last-child {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-cream);
}

.testimonials-shell { margin-top: 0.5rem; }

.testimonial-quote {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-body);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(201, 169, 110, 0.22);
  pointer-events: none;
}

body.rtl .testimonial-quote { right: auto; left: 1.25rem; }

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.35);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold-dark);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.55rem;
}

.testimonial-dots button {
  width: 32px;
  height: 4px;
  padding: 0;
  border: none;
  background: rgba(201, 169, 110, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots button.active,
.testimonial-dots button:hover {
  background: var(--gold);
  width: 44px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(201, 169, 110, 0.32);
  position: relative;
  overflow: hidden;
}

.newsletter-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}

.newsletter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.newsletter-action-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.28);
  color: var(--text-cream);
  transition: var(--transition);
}

.newsletter-action-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.14);
  transform: translateX(4px);
}

body.rtl .newsletter-action-card:hover { transform: translateX(-4px); }

.newsletter-action-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--gold);
  flex-shrink: 0;
}

.newsletter-action-label {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-action-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s;
}

.newsletter-action-card:hover .newsletter-action-arrow { transform: translateX(4px); }
body.rtl .newsletter-action-card:hover .newsletter-action-arrow { transform: translateX(-4px); }

.cta-product-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-product-thumb {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border-on-cream-strong);
  background: var(--cream-card);
  padding: 0.45rem;
  transition: var(--transition);
  box-shadow: var(--shadow-on-cream);
}

.cta-product-thumb:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.cta-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
}

.cta-trust .dot { color: var(--gold); font-size: 0.5rem; }

.section-light .cta-title { color: var(--text-on-cream); }

@media (max-width: 1024px) {
  .home-stats { grid-template-columns: repeat(2, 1fr); }
  .home-stat:nth-child(2) { border-right: none; }
  body.rtl .home-stat:nth-child(2) { border-left: none; }
  .newsletter-panel { grid-template-columns: 1fr; }
  .process-flow {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    margin-top: 2.5rem;
  }

  .process-rail { display: none; }

  .process-card--featured {
    transform: none;
  }

  .process-card:hover,
  .process-card--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .home-stats {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }
  .home-stat { border-right: none !important; border-left: none !important; }
  .featured-toolbar { flex-direction: column; align-items: stretch; }
  .featured-filters { justify-content: center; flex-wrap: wrap; border-radius: 0; }
  .story-visual-accent { width: 50%; left: 0; bottom: -0.5rem; }
  body.rtl .story-visual-accent { right: 0; }
  .testimonials-carousel { grid-template-columns: 1fr; }
  .testimonials-carousel .testimonial-card:not(.carousel-active) {
    display: none;
  }
  .testimonials-carousel .testimonial-card.carousel-active {
    opacity: 1;
    transform: none;
  }
}

/* ---- Phones (≤480px): single-column layouts, stacked controls, safe areas ---- */
@media (max-width: 480px) {
  .shop-page {
    padding: 2.5rem 0 4rem;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .shop-sort-label {
    flex: 1 1 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .shop-sort-label select {
    min-width: 0;
    max-width: 100%;
    flex: 1;
  }

  .shop-toolbar-cluster {
    flex-basis: 100%;
    min-width: 0;
    width: 100%;
  }

  .shop-filter-btn {
    letter-spacing: 0.09em;
    padding-inline: 0.82rem;
  }

  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1rem;
    gap: 0.85rem 1rem;
  }

  .product-detail-grid {
    gap: 1.75rem;
    margin: 1.25rem 0 2.5rem;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .product-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-detail-price {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .product-highlights li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .product-highlights strong {
    text-align: left !important;
  }

  body.rtl .product-highlights strong {
    text-align: right !important;
  }

  .product-tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
  }

  .product-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .product-tab {
    flex: none;
    white-space: nowrap;
  }

  .page-hero-chip {
    font-size: 0.55rem;
    padding: 0.4rem 0.65rem;
    letter-spacing: 0.1em;
  }

  .confirm-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .cta {
    padding: clamp(3.5rem, 11vw, 5.5rem) 0;
  }

  .cta-glow {
    width: min(520px, 92vw);
    height: min(520px, 92vw);
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-page {
    padding: 2rem 0 3rem;
  }

  .checkout-page {
    padding: 1.25rem 0 3rem;
  }

  .faq-question {
    font-size: 0.95rem;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .faq-item.open .faq-answer {
    max-height: 360px;
  }

  .product-modal {
    width: min(960px, calc(100vw - 12px));
    max-height: min(90vh, 92dvh);
  }

  .modal-details {
    padding: 1.35rem 1.1rem;
  }

  .modal-details h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .nav-links {
    padding-top: max(5rem, calc(4rem + env(safe-area-inset-top)));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/*
 * Contact — enforced contrast inside dark panels (.section-light still sets dark “on-cream” ink).
 * Placed near end so nothing later can paint headings/body/fields back to #1A1008 or WebKit quirks.
 */
main.page-reveal-scope .contact-page.section-light .contact-form h2 {
  color: #e8d5a3 !important;
}

main.page-reveal-scope .contact-page.section-light .contact-form .form-group label {
  color: rgba(248, 244, 232, 0.95) !important;
}

main.page-reveal-scope .contact-page.section-light .contact-form .form-group input,
main.page-reveal-scope .contact-page.section-light .contact-form .form-group textarea {
  color: #f8f5ec !important;
  caret-color: #f8f5ec !important;
}

main.page-reveal-scope .contact-page.section-light .contact-form .form-group input::placeholder,
main.page-reveal-scope .contact-page.section-light .contact-form .form-group textarea::placeholder {
  color: rgba(255, 249, 237, 0.58) !important;
  opacity: 1 !important;
}

main.page-reveal-scope .contact-page.section-light .contact-form input:-webkit-autofill,
main.page-reveal-scope .contact-page.section-light .contact-form input:-webkit-autofill:focus,
main.page-reveal-scope .contact-page.section-light .contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #f8f5ec !important;
  caret-color: #f8f5ec !important;
}

main.page-reveal-scope .contact-page.section-light .info-card h3 {
  color: #e8d5a3 !important;
}

main.page-reveal-scope .contact-page.section-light .info-card p,
main.page-reveal-scope .contact-page.section-light .info-card .info-item {
  color: rgba(248, 244, 232, 0.96) !important;
}

main.page-reveal-scope .contact-page.section-light .info-card .info-item a {
  color: #ebd9a8 !important;
}

main.page-reveal-scope .contact-page.section-light .info-card .info-item a:hover {
  color: #fffef8 !important;
}

main.page-reveal-scope .contact-page.section-light .info-card .info-item strong {
  color: #f8f5ec !important;
}

main.page-reveal-scope .contact-page.section-light .info-card .info-icon-svg {
  color: #e8d5a3 !important;
}

/* Cinzel (--font-display): section / hero headlines, brand wordmark, primary page headings only */
.display-title,
.loader-text,
.nav-brand,
.footer-brand-name,
.hero-cine-headline,
.hero-cine-watermark,
.page-hero-eyebrow,
.page-hero-cine-title,
.page-hero-title,
.page-hero-cine-watermark,
.footer-col h4,
.cart-header h3,
.checkout-step h2,
.checkout-summary-card h3,
.confirm-success h1,
.confirm-card h3,
.confirm-order-id strong,
.contact-form h2,
.info-card h3,
.hero-cine-headline .hero-cine-line--gold em {
  font-family: var(--font-display);
}
