/* =========================================================================
   soā — Stylesheet v2
   Official brand palette
   ------------------------------------------------------------------------
   Logo:      Pantone P81-1C  #D28BB0   Pantone P76-11C  #E3B8CD
   Primary:   Blush #ECD0C4 · Rose #C49C9A · Warm Grey #E3DEDA · Charcoal #2F3032
   Secondary: Sun #F5E6AF · Tan #E2BEA4 · Orchid #DEBECD · Lavender #D5C8D2 ·
              Sky #CAD8E3 · Sage #BBC8B6
   ========================================================================= */
:root {
  --cream: #FBF8F5;
  --cream-deep: #F3ECE6;
  --ink: #2F3032;
  --ink-soft: #514C48;
  --stone: #79706A;
  --stone-light: #A79E97;

  --rose: #C49C9A;
  --blush: #ECD0C4;
  --line: #E7DFD8;

  --brand: #D28BB0;
  --brand-light: #E3B8CD;
  --brand-deep: #A9628A;

  --sun: #F5E6AF;
  --tan: #E2BEA4;
  --orchid: #DEBECD;
  --lavender: #D5C8D2;
  --sky: #CAD8E3;
  --sage: #BBC8B6;

  --white: #FFFFFF;
  --danger: #B0473E;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-soft: 0 10px 34px rgba(47, 48, 50, 0.07);
  --shadow-lift: 0 22px 50px rgba(47, 48, 50, 0.16);
  --shadow-brand: 0 14px 34px rgba(210, 139, 176, 0.28);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-display-ar: "Reem Kufi", "Almarai", sans-serif;
  --font-body: "Jost", "Avenir", "Helvetica Neue", sans-serif;
  --font-body-ar: "Almarai", "Segoe UI", sans-serif;

  --nav-h: 68px;
  --bottom-nav-h: 62px;
  --ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: var(--font-body-ar); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: 0.008em;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
  font-family: var(--font-display-ar);
  letter-spacing: 0;
}
p { margin: 0 0 1em; }

:focus-visible { outline: 2px solid var(--brand-deep); outline-offset: 2px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 700;
}
html[dir="rtl"] .eyebrow { font-family: var(--font-body-ar); letter-spacing: 0.06em; font-weight: 700; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.hidden { display: none !important; }

/* ---------- Entrance animation (pure CSS — runs automatically on mount,
   never depends on JS/scroll detection, so content can never get stuck
   invisible regardless of scroll position or timing) ---------- */
@keyframes fadeUpIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: fadeUpIn .8s var(--ease) both; animation-delay: .05s; }
.reveal-stagger > * { opacity: 0; animation: fadeUpIn .7s var(--ease) forwards; }
.reveal-stagger > *:nth-child(1) { animation-delay: .05s; }
.reveal-stagger > *:nth-child(2) { animation-delay: .15s; }
.reveal-stagger > *:nth-child(3) { animation-delay: .25s; }
.reveal-stagger > *:nth-child(4) { animation-delay: .35s; }
.reveal-stagger > *:nth-child(5) { animation-delay: .45s; }
.reveal-stagger > *:nth-child(6) { animation-delay: .55s; }
.reveal-stagger > *:nth-child(n+7) { animation-delay: .6s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
html[dir="rtl"] .btn { font-family: var(--font-body-ar); }
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: var(--shadow-brand); transform: translateY(-2px); }
.btn-gold, .btn-brand { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: var(--white); }
.btn-gold:hover, .btn-brand:hover { box-shadow: var(--shadow-brand); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--stone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* =========================================================================
   Country / Language Gate
   ========================================================================= */
#gate {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(155deg, #FBEEF3 0%, #F6DCE6 30%, var(--brand-light) 68%, var(--brand) 100%);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 20px;
}
#gate::before, #gate::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: floaty 11s ease-in-out infinite; background: #fff;
}
#gate::before { width: 300px; height: 300px; top: -70px; left: -70px; }
#gate::after { width: 260px; height: 260px; bottom: -80px; right: -50px; animation-delay: -5s; background: var(--sun); }
.gate-petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.gate-petals span {
  position: absolute; border-radius: 50% 0 50% 50%; background: rgba(255,255,255,0.55);
  animation: petalFall linear infinite;
}
@keyframes petalFall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10% { opacity: .8; }
  90% { opacity: .7; }
  100% { transform: translateY(110vh) rotate(280deg); opacity: 0; }
}
@keyframes floaty { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-20px); } }

.gate-inner { width: 100%; max-width: 640px; text-align: center; position: relative; z-index: 1; }
.gate-inner img.gate-logo { width: 160px; margin: 0 auto 10px; animation: gateLogoIn 1s var(--ease) both; }
@keyframes gateLogoIn { from { opacity: 0; transform: translateY(-10px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
.gate-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--brand-deep); text-transform: uppercase; margin-bottom: 30px; opacity: 0; animation: fadeIn .8s ease .3s forwards; }
.gate-inner h1 { color: var(--ink); font-size: clamp(1.5rem, 5vw, 2.1rem); margin-bottom: 10px; opacity: 0; animation: fadeIn .8s ease .45s forwards; }
.gate-sub { color: var(--ink-soft); margin-bottom: 20px; font-size: 0.95rem; opacity: 0; animation: fadeIn .8s ease .55s forwards; }
@keyframes fadeIn { to { opacity: 1; } }

.lang-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 34px; opacity: 0; animation: fadeIn .8s ease .6s forwards; }
.lang-pill {
  padding: 7px 16px; border-radius: 999px; border: 1px solid rgba(169,98,138,0.3);
  background: rgba(255,255,255,0.55); color: var(--brand-deep); font-size: 0.78rem; letter-spacing: .04em; font-weight: 600;
}
.lang-pill.active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.lang-pill[disabled] { opacity: .5; cursor: not-allowed; }

.gate-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; opacity: 0; animation: fadeIn .8s ease .7s forwards; }
@media (max-width: 480px) { .gate-options { grid-template-columns: 1fr; } }
.gate-card {
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg); padding: 30px 18px; transition: all .3s var(--ease);
  backdrop-filter: blur(6px);
}
.gate-card:hover { border-color: var(--brand); background: rgba(255,255,255,0.85); transform: translateY(-4px); box-shadow: var(--shadow-brand); }
.gate-flag { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.gate-card strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 4px; }
.gate-card span { font-size: 0.8rem; color: var(--ink-soft); }
.gate-footnote { margin-top: 32px; font-size: 0.76rem; color: var(--brand-deep); opacity: 0; animation: fadeIn .8s ease .8s forwards; }

/* =========================================================================
   Top Nav
   ========================================================================= */
/* ---------- Announcement bar ---------- */
.announce-bar {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand));
  color: var(--white); text-align: center; padding: 9px 16px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.announce-bar svg { width: 15px; height: 15px; flex: none; }

/* ---------- Top nav (hamburger + centered logo + icons) ---------- */
header.topnav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
header.topnav.scrolled { box-shadow: 0 6px 24px rgba(47,38,44,0.06); }
.topnav-inner { height: var(--nav-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; }
.hamburger-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid transparent; background: transparent;
  display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all .2s ease;
  justify-self: start;
}
.hamburger-btn:hover { background: var(--cream-deep); }
.hamburger-btn svg { width: 22px; height: 22px; }
.brand { display: flex; flex-direction: column; align-items: center; gap: 4px; justify-self: center; }
.brand img { height: 26px; }
.brand-region {
  font-size: 0.6rem; letter-spacing: 0.1em; color: var(--stone-light);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px 3px 7px;
  text-transform: uppercase; background: var(--white); display: flex; align-items: center; gap: 4px;
  transition: border-color .2s ease, color .2s ease;
}
.brand-region:hover { border-color: var(--brand); color: var(--brand-deep); }

.lang-switch { display: flex; gap: 2px; background: var(--cream-deep); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: transparent; font-size: 0.7rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 999px; color: var(--stone); transition: all .2s ease;
}
.lang-switch button.active { background: var(--ink); color: var(--cream); }
.lang-switch button[disabled] { opacity: .4; }

.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; justify-self: end; }
.icon-btn {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid transparent; color: var(--ink); transition: all .2s ease;
}
.icon-btn:hover { background: var(--cream-deep); }
.icon-btn-cart { display: flex; }
.cart-badge {
  position: absolute; top: -2px; right: -2px; background: var(--brand-deep); color: var(--white);
  font-size: 0.62rem; font-weight: 700; min-width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.cart-badge.pop { animation: badgePop .4s cubic-bezier(.4,1.8,.6,1); }
@keyframes badgePop { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }

/* ---------- Hamburger drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 210; background: rgba(47,38,44,0.5);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; display: flex; justify-content: flex-start;
}
html[dir="rtl"] .drawer-overlay { justify-content: flex-end; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  width: 100%; max-width: 340px; height: 100%; background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform .32s var(--ease);
}
html[dir="rtl"] .drawer-panel { transform: translateX(100%); }
.drawer-overlay.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head img { height: 24px; }
.drawer-links { display: flex; flex-direction: column; padding: 10px 10px; flex: 1; }
.drawer-links a {
  padding: 15px 12px; font-size: 1rem; font-family: var(--font-display); font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--line); transition: color .2s ease, padding-inline-start .2s ease;
}
html[dir="rtl"] .drawer-links a { font-family: var(--font-display-ar); }
.drawer-links a:hover, .drawer-links a.active { color: var(--brand-deep); padding-inline-start: 18px; }
.drawer-foot { padding: 18px 22px 24px; border-top: 1px solid var(--line); }
.drawer-foot-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 0.84rem; color: var(--stone); }
.drawer-foot .social-icons { display: flex; gap: 10px; }
.drawer-foot .social-icon { width: 38px; height: 38px; }
.drawer-foot .social-icon svg { width: 16px; height: 16px; }

/* =========================================================================
   Bottom mobile nav (deprecated — nav now goes through the hamburger
   drawer on every screen size, matching the reference)
   ========================================================================= */


   Views
   ========================================================================= */
.view { display: none; }
.view.active { display: block; animation: viewIn .5s var(--ease); }
@keyframes viewIn { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Hero (real lifestyle photography, region-swapped, text overlay) ---------- */
.hero-photo { position: relative; width: 100%; height: clamp(420px, 62vw, 640px); overflow: hidden; }
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; animation: kenBurns 16s ease-in-out infinite alternate; }@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(251,248,245,0.94) 0%, rgba(251,248,245,0.75) 32%, rgba(251,248,245,0.15) 58%, transparent 75%);
}
html[dir="rtl"] .hero-photo-overlay { background: linear-gradient(270deg, rgba(251,248,245,0.94) 0%, rgba(251,248,245,0.75) 32%, rgba(251,248,245,0.15) 58%, transparent 75%); }
.hero-photo-text {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 6vw; max-width: 640px;
}
html[dir="rtl"] .hero-photo-text { right: 0; left: auto; align-items: flex-end; text-align: right; }
.hero-photo-text .hero-eyebrow { margin-bottom: 16px; }
.hero-photo-text h1 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.08; margin: 0 0 16px; max-width: 12ch; }
.hero-photo-text h1 span { display: inline-block; opacity: 0; animation: wordUp .7s var(--ease) forwards; }
.hero-photo-text h1 span:nth-child(1) { animation-delay: .05s; }
.hero-photo-text h1 span:nth-child(2) { animation-delay: .18s; }
.hero-photo-text h1 span:nth-child(3) { animation-delay: .30s; }
@keyframes wordUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-photo-text .accent-word { color: var(--brand-deep); font-style: italic; }
.hero-photo-lede { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 26px; max-width: 34ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-text .hero-actions { justify-content: flex-start; }
html[dir="rtl"] .hero-photo-text .hero-actions { justify-content: flex-end; }
@media (max-width: 700px) {
  .hero-photo-text { max-width: 100%; padding: 0 22px; }
  .hero-photo-overlay { background: linear-gradient(180deg, rgba(251,248,245,0.55) 0%, rgba(251,248,245,0.92) 62%, var(--cream) 100%); }
  html[dir="rtl"] .hero-photo-overlay { background: linear-gradient(180deg, rgba(251,248,245,0.55) 0%, rgba(251,248,245,0.92) 62%, var(--cream) 100%); }
  .hero-photo-text { justify-content: flex-end; padding-bottom: 34px; align-items: flex-start !important; text-align: left !important; }
  html[dir="rtl"] .hero-photo-text { align-items: flex-end !important; text-align: right !important; }
}

.hero-strip {
  margin: 0 auto; display: flex; height: 10px; border-radius: 999px; overflow: hidden;
  box-shadow: var(--shadow-soft); max-width: 640px; width: 100%;
}
.hero-strip span { flex: 1; transition: transform .3s ease; }
.hero-strip span:hover { transform: scaleY(1.6); }

/* ---------- Trust icons row ---------- */
/* ---------- Flat hero (product flatlay + text overlay, matches reference) ---------- */
.hero-flat { position: relative; width: 100%; min-height: clamp(360px, 52vw, 560px); overflow: hidden; display: flex; align-items: center; }
.hero-flat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-flat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(251,248,245,0.94) 0%, rgba(251,248,245,0.78) 34%, rgba(251,248,245,0.15) 62%, transparent 80%);
}
html[dir="rtl"] .hero-flat-overlay { background: linear-gradient(270deg, rgba(251,248,245,0.94) 0%, rgba(251,248,245,0.78) 34%, rgba(251,248,245,0.15) 62%, transparent 80%); }
.hero-flat-text { position: relative; z-index: 2; max-width: 460px; padding: 0 8vw; }
html[dir="rtl"] .hero-flat-text { margin-inline-start: auto; text-align: right; }
.hero-flat-text h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); line-height: 1.08; margin: 0 0 16px; }
.hero-flat-text h1 span { display: block; }
.hero-flat-text .accent-word { color: var(--brand-deep); }
.hero-flat-lede { color: var(--ink-soft); font-size: 1.02rem; margin: 0 0 26px; max-width: 34ch; }
@media (max-width: 760px) {
  .hero-flat { min-height: 420px; }
  .hero-flat-overlay { background: linear-gradient(180deg, rgba(251,248,245,0.5) 0%, rgba(251,248,245,0.94) 58%, var(--cream) 100%); }
  .hero-flat-text { max-width: 100%; padding: 0 22px; }
}

.trust-icons-wrap { background: var(--cream-deep); padding: 34px 0; margin-top: 34px; }
.trust-icons-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
@media (min-width: 760px) { .trust-icons-row { grid-template-columns: repeat(4, 1fr); } }
.trust-icon-item { display: flex; align-items: center; gap: 10px; justify-content: center; text-align: left; padding: 0 8px; }
html[dir="rtl"] .trust-icon-item { text-align: right; }
@media (min-width: 760px) { .trust-icon-item:not(:first-child) { border-inline-start: 1px solid var(--line); } }
.trust-icon-item svg { width: 26px; height: 26px; flex: none; color: var(--brand-deep); }
.trust-icon-item span { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); line-height: 1.25; text-transform: uppercase; letter-spacing: .02em; }

/* ---------- Category tiles ---------- */
.category-tiles { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .category-tiles { grid-template-columns: repeat(3, 1fr); } }
.cat-tile {
  background: var(--blush); border-radius: var(--radius-md); padding: 22px 22px 20px;
  display: flex; flex-direction: column; overflow: hidden;
}
.cat-tile-body p { margin: 0 0 16px; }
.cat-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 16px; }
.cat-tile .cat-tile-btn {
  align-self: flex-start; background: var(--white); color: var(--ink); border: none;
  padding: 10px 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.cat-tile:hover .cat-tile-btn { background: var(--ink); color: var(--cream); }
.cat-tile-eyebrow { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
html[dir="rtl"] .cat-tile-eyebrow { font-family: var(--font-display-ar); }

/* ---------- About teaser ---------- */
.about-teaser { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 800px) { .about-teaser { grid-template-columns: 1fr 1fr; gap: 50px; } }
.about-teaser-text p { color: var(--stone); margin: 14px 0 24px; max-width: 42ch; }
.about-teaser-img { border-radius: var(--radius-xl); overflow: hidden; }
.about-teaser-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---------- Newsletter band ---------- */
.newsletter-band {
  background: linear-gradient(120deg, var(--blush), var(--brand-light));
  border-radius: var(--radius-xl); padding: 40px 32px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 24px;
}
.newsletter-text { max-width: 420px; }
.newsletter-text p { margin: 8px 0 0; color: var(--ink-soft); font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 13px 16px; border-radius: 999px; border: none; font-family: var(--font-body); font-size: 0.9rem; }
html[dir="rtl"] .newsletter-form input { font-family: var(--font-body-ar); }
.newsletter-form button {
  padding: 13px 24px; border-radius: 999px; border: none; background: var(--ink); color: var(--cream);
  font-weight: 700; font-size: 0.86rem; white-space: nowrap; transition: background .2s ease;
}
.newsletter-form button:hover { background: var(--brand-deep); }
@media (max-width: 600px) { .newsletter-band { flex-direction: column; align-items: stretch; text-align: center; } .newsletter-form { flex-direction: column; } }

/* ---------- Trust stats strip (still used on About page) ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 0; }

@media (min-width: 700px) { .trust-strip { grid-template-columns: repeat(4,1fr); } }
.trust-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px 14px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.trust-item .n { font-family: var(--font-display); font-size: 1.9rem; color: var(--brand-deep); font-weight: 700; }
.trust-item .l { font-size: 0.72rem; letter-spacing: .05em; color: var(--stone); text-transform: uppercase; margin-top: 3px; }

.section { padding: 60px 0; border-top: 1px solid var(--line); position: relative; }
.section-tint {
  background: linear-gradient(120deg, var(--sun) 0%, var(--tan) 35%, var(--orchid) 70%, var(--lavender) 100%);
  background-size: 220% 220%;
  animation: heroWash 24s ease-in-out infinite;
}
.section-tint .section-head .eyebrow { color: var(--ink); }
.section-tint .section-head p { color: var(--ink-soft); }
.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.section-head p { color: var(--stone); max-width: 58ch; }

/* ---------- Product marquee (auto-scrolling showcase) ---------- */
.marquee-wrap {
  padding: 46px 0 54px; border-top: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-head { text-align: center; margin-bottom: 30px; }
.marquee-track { display: flex; width: max-content; gap: 20px; animation: marqueeScroll 46s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
html[dir="rtl"] .marquee-track { animation-name: marqueeScrollRtl; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeScrollRtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.marquee-card {
  flex: none; width: 190px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  border-top: 3px solid var(--accent, var(--brand)); overflow: hidden; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.marquee-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.marquee-card .imgbox { aspect-ratio: 1/1; background: color-mix(in srgb, var(--accent, var(--brand)) 14%, #fff); display: flex; align-items: center; justify-content: center; padding: 14px; }
.marquee-card img { max-height: 100%; object-fit: contain; }
.marquee-card .info { padding: 12px 14px 16px; }
.marquee-card .nm { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
html[dir="rtl"] .marquee-card .nm { font-family: var(--font-display-ar); }
.marquee-card .cat { font-size: 0.62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent, var(--brand-deep)); font-weight: 700; }

/* ---------- Summary / Learn More cards ---------- */
.summary-cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .summary-cards { grid-template-columns: repeat(3, 1fr); } }
.summary-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.summary-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.summary-card .thumb { aspect-ratio: 16/11; overflow: hidden; }
.summary-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.summary-card:hover .thumb img { transform: scale(1.07); }
.summary-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.summary-card .num { font-family: var(--font-display); color: var(--brand); font-weight: 700; font-size: 1.1rem; }
.summary-card h3 { font-size: 1.15rem; margin: 2px 0 2px; }
.summary-card p { color: var(--stone); font-size: 0.9rem; margin: 0 0 10px; flex: 1; }
.learn-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.84rem; font-weight: 600; color: var(--brand-deep); }
.learn-more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.summary-card:hover .learn-more svg { transform: translateX(4px); }
html[dir="rtl"] .summary-card:hover .learn-more svg { transform: translateX(-4px) rotate(180deg); }
html[dir="rtl"] .learn-more svg { transform: rotate(180deg); }

/* ---------- Pillars ---------- */
.pillars { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--brand-light); }
.pillar-card .num { font-family: var(--font-display); color: var(--brand); font-weight: 700; font-size: 1.4rem; }
.pillar-card h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.pillar-card p { color: var(--stone); font-size: 0.93rem; margin: 0; }

/* ---------- Signature strip banner ---------- */
.signature-banner {
  background: linear-gradient(120deg, var(--ink) 0%, #423138 55%, var(--ink) 100%);
  color: var(--cream); border-radius: var(--radius-xl); padding: 54px 34px; text-align: center;
  position: relative; overflow: hidden; margin: 0;
}
.signature-banner .eyebrow { color: var(--brand-light); }
.signature-banner h2 { color: var(--cream); font-size: clamp(1.6rem, 4.4vw, 2.5rem); max-width: 22ch; margin: 10px auto 14px; }
.signature-banner p { color: #CFC5C9; max-width: 50ch; margin: 0 auto 26px; }
.signature-banner::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: var(--brand); filter: blur(100px); opacity: .35; top: -60px; left: -60px;
}

/* ---------- About page ---------- */
.about-hero {
  padding: 50px 24px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--sky) 0%, var(--lavender) 45%, var(--orchid) 100%);
  background-size: 200% 200%;
  animation: heroWash 22s ease-in-out infinite;
  margin: 20px auto 0;
  max-width: 1200px;
}
.about-hero .eyebrow, .about-hero h2 { color: var(--ink); }
.about-quote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--ink); border-inline-start: 3px solid var(--brand); padding-inline-start: 22px; margin: 32px 0;
}
html[dir="rtl"] .about-quote { font-family: var(--font-display-ar); font-style: normal; }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px; text-align: center; transition: transform .25s ease;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card .n { font-family: var(--font-display); font-size: 1.8rem; color: var(--brand-deep); font-weight: 700; }
.stat-card .l { font-size: 0.74rem; letter-spacing: .05em; color: var(--stone); text-transform: uppercase; margin-top: 4px; }

/* ---------- Social links ---------- */
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.social-icon svg { width: 19px; height: 19px; }
.social-icon:not(.soon):hover { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); border-color: transparent; color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-brand); }
.social-icon.soon { opacity: .4; cursor: default; }

.social-rows { display: flex; flex-direction: column; gap: 12px; }
.social-row-item {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: var(--white); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  transition: all .2s ease;
}
.social-row-item svg { width: 20px; height: 20px; flex: none; }
.social-row-item:not(.soon):hover { border-color: var(--brand); color: var(--brand-deep); transform: translateX(3px); }
html[dir="rtl"] .social-row-item:not(.soon):hover { transform: translateX(-3px); }
.social-row-item.soon { opacity: .55; }
.social-row-item.soon span::after { content: " — coming soon"; font-size: 0.78rem; font-style: italic; }
html[dir="rtl"] .social-row-item.soon span::after { content: " — قريباً"; }

/* ---------- About hero collage ---------- */
.about-collage {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 30px 0 40px; border-radius: var(--radius-lg); overflow: hidden;
}
.about-collage img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .5s var(--ease); }
.about-collage a:hover img { transform: scale(1.08); }
.about-collage a:nth-child(1) { grid-row: span 2; grid-column: span 2; }
@media (max-width: 620px) {
  .about-collage { grid-template-columns: repeat(3, 1fr); }
  .about-collage a:nth-child(1) { grid-column: span 3; grid-row: span 1; }
}
.about-contact-grid { display: grid; gap: 34px; grid-template-columns: 1fr; max-width: 760px; }
@media (min-width: 640px) { .about-contact-grid { grid-template-columns: 1.2fr 1fr; } }

/* ---------- Category filter ---------- */
.filter-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 26px; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap; transition: all .2s ease;
}
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.chip:hover:not(.active) { border-color: var(--brand); color: var(--brand-deep); }

.search-row { display: flex; gap: 10px; margin-bottom: 22px; }
.search-row input {
  flex: 1; padding: 13px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
html[dir="rtl"] .search-row input { font-family: var(--font-body-ar); }
.search-row input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(210,139,176,0.12); }

/* ---------- Product Grid ---------- */
.grid-products { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .grid-products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .grid-products { grid-template-columns: repeat(4, 1fr); } }

.pcard {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--brand)); transition: box-shadow .35s var(--ease), transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.pcard:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.pcard-imgwrap {
  aspect-ratio: 6 / 5; background: color-mix(in srgb, var(--accent, var(--brand)) 14%, #fff);
  display: flex; align-items: center; justify-content: center; padding: 16px; cursor: pointer; overflow: hidden;
}
.pcard-imgwrap img { max-height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.pcard:hover .pcard-imgwrap img { transform: scale(1.06); }
.pcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-cat { font-size: 0.65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, var(--brand-deep)); font-weight: 700; }
.pcard-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; cursor: pointer; }
html[dir="rtl"] .pcard-name { font-family: var(--font-display-ar); }
.pcard-tagline { font-size: 0.82rem; color: var(--stone); margin-bottom: 4px; }
.pcard-rating { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--stone); }
.pcard-rating .stars { color: var(--brand); letter-spacing: 1px; }
.pcard-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; }
.pcard-price { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.pcard-price.tbd { font-family: var(--font-body); font-weight: 500; font-size: 0.76rem; color: var(--stone-light); font-style: italic; }

/* ---------- Star rating widget ---------- */
.star-input { display: inline-flex; gap: 2px; }
.star-input button { background: none; border: none; padding: 2px; font-size: 1.2rem; line-height: 1; color: var(--line); transition: transform .15s ease, color .15s ease; }
.star-input button.filled, .star-input button:hover, .star-input:hover button { color: var(--brand); }
.star-input button:hover { transform: scale(1.2); }

/* =========================================================================
   Product Modal
   ========================================================================= */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(47,38,44,0.55); z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s ease; backdrop-filter: blur(2px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
@media (min-width: 700px) { .modal-overlay { align-items: center; padding: 20px; } }
.modal-sheet {
  background: var(--cream); width: 100%; max-width: 800px; max-height: 92vh; overflow-y: auto;
  border-radius: 26px 26px 0 0; transform: translateY(30px) scale(.98); transition: transform .3s var(--ease);
}
.modal-overlay.open .modal-sheet { transform: translateY(0) scale(1); }
@media (min-width: 700px) { .modal-sheet { border-radius: var(--radius-xl); } }
.modal-drag { display: flex; justify-content: center; padding: 10px 0 0; }
.modal-drag span { width: 36px; height: 4px; background: var(--line); border-radius: 999px; }
.modal-close {
  position: sticky; top: 12px; float: right; margin-inline-end: 12px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--white); border: 1px solid var(--line); display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem; z-index: 5; transition: transform .2s ease;
}
html[dir="rtl"] .modal-close { float: left; }
.modal-close:hover { transform: rotate(90deg); }
.modal-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 700px) { .modal-grid { grid-template-columns: 1fr 1.1fr; } }
.modal-imgwrap { background: var(--modal-accent, var(--brand-light)); display: flex; align-items: center; justify-content: center; padding: 34px; }
.modal-imgwrap img { max-height: 270px; }
.modal-content { padding: 28px 26px 36px; }
.modal-cat { font-size: 0.7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--modal-accent-deep, var(--brand-deep)); font-weight: 700; }
.modal-content h2 { font-size: 1.75rem; margin: 9px 0 4px; }
.modal-tagline { font-style: italic; color: var(--stone); margin-bottom: 15px; }
html[dir="rtl"] .modal-tagline { font-style: normal; }
.modal-desc { color: var(--ink-soft); margin-bottom: 18px; line-height: 1.7; }
.modal-benefits { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 9px; }
.modal-benefits li { display: flex; gap: 9px; font-size: 0.92rem; }
.modal-benefits li::before { content: "✓"; color: var(--modal-accent-deep, var(--brand-deep)); font-weight: 700; }
.modal-meta { display: flex; gap: 20px; margin-bottom: 22px; font-size: 0.82rem; color: var(--stone); flex-wrap: wrap; }
.modal-meta b { color: var(--ink); }
.rate-block { border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 22px; }
.rate-block .label { font-size: 0.78rem; color: var(--stone); margin-bottom: 8px; }
.rate-summary { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.85rem; }
.review-box { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; animation: fadeIn .3s ease; }
.review-box textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.88rem; background: var(--cream); resize: vertical; min-height: 60px;
}
html[dir="rtl"] .review-box textarea { font-family: var(--font-body-ar); }
.review-box textarea:focus { border-color: var(--brand); background: var(--white); }
.review-box .btn { align-self: flex-start; }
.modal-buy { display: flex; align-items: center; gap: 12px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 38px; height: 42px; background: var(--white); border: none; font-size: 1.05rem; transition: background .2s ease; }
.qty-stepper button:hover { background: var(--cream-deep); }
.qty-stepper span { width: 34px; text-align: center; font-weight: 600; }

/* =========================================================================
   Cart Drawer
   ========================================================================= */
.cart-overlay {
  position: fixed; inset: 0; z-index: 210; background: rgba(47,38,44,0.5);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; display: flex; justify-content: flex-end;
}
html[dir="rtl"] .cart-overlay { justify-content: flex-start; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  width: 100%; max-width: 430px; height: 100%; background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .32s var(--ease);
}
html[dir="rtl"] .cart-panel { transform: translateX(-100%); }
.cart-overlay.open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { margin: 0; font-size: 1.25rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 22px; }
.cart-empty { text-align: center; padding: 70px 20px; color: var(--stone); }
.cart-empty svg { width: 46px; height: 46px; margin-bottom: 16px; color: var(--line); }
.cart-row { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 64px; height: 64px; object-fit: contain; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--line); padding: 6px; }
.cart-row-info { flex: 1; min-width: 0; }
.cart-row-info .nm { font-weight: 600; font-size: 0.9rem; }
.cart-row-info .pr { font-size: 0.8rem; color: var(--stone); margin: 2px 0 8px; }
.cart-row-actions { display: flex; align-items: center; justify-content: space-between; }
.remove-link { font-size: 0.76rem; color: var(--danger); cursor: pointer; }
.cart-summary { border-top: 1px solid var(--line); padding: 18px 22px 24px; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 6px; color: var(--stone); }
.summary-line.total { font-size: 1.08rem; color: var(--ink); font-weight: 700; margin-top: 8px; font-family: var(--font-display); }
html[dir="rtl"] .summary-line.total { font-family: var(--font-body-ar); }
.cart-note { font-size: 0.72rem; color: var(--stone-light); margin-top: 12px; }

/* =========================================================================
   Forms
   ========================================================================= */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; max-width: 660px; box-shadow: var(--shadow-soft); }
.contact-layout { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .contact-layout { grid-template-columns: 1.3fr 1fr; } }
.contact-layout .form-card { max-width: none; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; }
.form-grid { display: grid; gap: 17px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.78rem; letter-spacing: .03em; color: var(--stone); margin-bottom: 6px; text-transform: uppercase; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.94rem; background: var(--cream); color: var(--ink); transition: all .2s ease;
}
html[dir="rtl"] .field input, html[dir="rtl"] .field textarea { font-family: var(--font-body-ar); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 4px rgba(210,139,176,0.1); }
.field textarea { resize: vertical; min-height: 92px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 600px) { .checkbox-grid { grid-template-columns: 1fr 1fr; } }
.checkbox-item { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 13px; background: var(--cream); transition: border-color .2s ease; }
.checkbox-item:hover { border-color: var(--brand-light); }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--brand-deep); }

/* ---------- Delivery method options ---------- */
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 500px) { .delivery-options { grid-template-columns: 1fr; } }
.delivery-option {
  display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; background: var(--cream); cursor: pointer; transition: all .2s ease;
}
.delivery-option:has(input:checked) { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 2px rgba(210,139,176,0.15); }
.delivery-option input { accent-color: var(--brand-deep); width: 16px; height: 16px; flex: none; }
.delivery-option-body { display: flex; flex-direction: column; }
.delivery-option-title { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.delivery-option-sub { font-size: 0.76rem; color: var(--stone); }
.zm-delivery-note { background: var(--cream-deep); border-radius: var(--radius-sm); padding: 13px 15px; margin-top: 16px; }
.zm-delivery-note p { margin: 0; font-size: 0.84rem; color: var(--ink-soft); }
.payment-note {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 12px 15px;
  background: var(--cream-deep); border-radius: var(--radius-sm); font-size: 0.86rem; font-weight: 600; color: var(--ink-soft);
}
.payment-note svg { width: 20px; height: 20px; color: var(--brand-deep); flex: none; }
.order-summary-mini { background: var(--cream-deep); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 22px; font-size: 0.86rem; }
.order-summary-mini .row { display: flex; justify-content: space-between; padding: 4px 0; }
.form-status { margin-top: 15px; font-size: 0.85rem; padding: 13px 15px; border-radius: var(--radius-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #E7F0E4; color: #3C6B36; }
.form-status.err { background: #F6E4E1; color: var(--danger); }

.catering-hero {
  background: linear-gradient(120deg, var(--ink), #443339); color: var(--cream);
  border-radius: var(--radius-xl); padding: 46px 30px; margin-bottom: 36px; position: relative; overflow: hidden;
}
.catering-hero::before { content:""; position:absolute; width:220px; height:220px; border-radius:50%; background: var(--brand); filter: blur(90px); opacity: .3; top:-50px; right:-50px; }
.catering-hero .eyebrow { color: var(--brand-light); }
.catering-hero h2 { color: var(--cream); font-size: clamp(1.5rem,4vw,2.2rem); position: relative; }
.catering-hero p { color: #CFC5C9; max-width: 56ch; position: relative; }

.success-wrap { text-align: center; padding: 76px 20px 96px; max-width: 540px; margin: 0 auto; }
.success-icon {
  width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-light), var(--brand));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2rem; color: var(--white);
  animation: successPop .5s var(--ease);
}
@keyframes successPop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

footer.site-footer { background: var(--cream-deep); border-top: 1px solid var(--line); margin-top: 34px; }
.footer-simple { padding: 34px 22px 26px; text-align: center; }
.footer-simple-top { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 20px; }
.footer-simple-top img { height: 26px; }
.footer-simple-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 0; margin-bottom: 20px; }
.footer-simple-links a {
  font-size: 0.82rem; color: var(--ink-soft); padding: 0 14px; border-inline-end: 1px solid var(--line);
  transition: color .2s ease;
}
.footer-simple-links a:last-child { border-inline-end: none; }
.footer-simple-links a:hover { color: var(--brand-deep); }
.footer-simple-bottom { font-size: 0.76rem; color: var(--stone-light); }

#toast {
  position: fixed; bottom: calc(var(--bottom-nav-h) + 16px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--ink); color: var(--cream); padding: 13px 22px; border-radius: 999px; font-size: 0.85rem;
  z-index: 300; opacity: 0; pointer-events: none; transition: all .3s var(--ease); white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 860px) { #toast { bottom: 24px; } }

.page-title-block { padding: 46px 0 10px; }
.page-hero-soft {
  background: linear-gradient(135deg, var(--blush) 0%, var(--brand-light) 55%, var(--orchid) 100%);
  border-radius: var(--radius-xl);
  padding: 46px 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}
.page-hero-soft::before, .page-hero-soft::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; background: #fff;
  animation: floaty 13s ease-in-out infinite;
}
.page-hero-soft::before { width: 220px; height: 220px; top: -70px; right: -50px; }
.page-hero-soft::after { width: 180px; height: 180px; bottom: -70px; left: -30px; animation-delay: -6s; background: var(--sun); }
.page-hero-soft > * { position: relative; z-index: 1; }
.page-hero-soft .eyebrow { color: var(--brand-deep); }
.page-hero-soft h2 { margin-bottom: 6px; }
.page-hero-soft p { color: var(--ink-soft); margin: 0; max-width: 60ch; }
@media (max-width: 560px) { .page-hero-soft { padding: 34px 22px; border-radius: var(--radius-lg); } }
.small-note { font-size: 0.78rem; color: var(--stone-light); }
.spacer-40 { height: 40px; }
::selection { background: var(--brand-light); color: var(--ink); }
