/* ==========================================================================
   شغف وان (Shaghaf One) — juice & coffee shop menu site
   Palette sampled from the storefront sign + menu design: warm cream ground,
   burnt-terracotta primary (the logo's script color), deep teal secondary.
   ========================================================================== */

:root {
  --cream: #F7F2E6;
  --cream-deep: #EEE4CE;
  --paper: #FFFDF8;
  --espresso: #241710;
  --espresso-soft: #38271C;
  --gold: #C1502E;
  --gold-deep: #9C3D22;
  --gold-tint: #F6DFD1;
  --rose: #1E6F63;
  --rose-deep: #154F46;
  --rose-tint: #DBEEEA;
  --ink: #241710;
  --ink-soft: #7C6B5B;
  --border: rgba(36, 23, 16, 0.13);
  --shadow-color: 36, 23, 16;

  --font-display-ar: 'El Messiri', sans-serif;
  --font-display-en: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.5s;
  --dur-slow: 0.9s;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  color-scheme: only light;
}

:root[data-theme="light"] {
  --cream: #F7F2E6;
  --cream-deep: #EEE4CE;
  --paper: #FFFDF8;
  --espresso: #241710;
  --espresso-soft: #38271C;
  --gold: #C1502E;
  --gold-deep: #9C3D22;
  --gold-tint: #F6DFD1;
  --rose: #1E6F63;
  --rose-deep: #154F46;
  --rose-tint: #DBEEEA;
  --ink: #241710;
  --ink-soft: #7C6B5B;
  --border: rgba(36, 23, 16, 0.13);
  --shadow-color: 36, 23, 16;
  color-scheme: only light;
}

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

html { scroll-behavior: smooth; }

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

body {
  min-height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

html[dir="rtl"] body { font-family: 'IBM Plex Sans Arabic', var(--font-body); }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

h1, h2, h3 { text-wrap: balance; font-weight: 700; color: var(--ink); }

[lang-display="ar"], html[data-lang="ar"] .display { font-family: var(--font-display-ar); }
html[data-lang="en"] .display { font-family: var(--font-display-en); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
html[data-lang="ar"] .eyebrow { letter-spacing: 0.02em; text-transform: none; font-size: 14px; }

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--rose);
}

.section { padding: 88px 0; position: relative; }
@media (max-width: 640px) { .section { padding: 64px 0; } }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }
.prod-head-row { flex-direction: row; align-items: center; justify-content: space-between; max-width: none; flex-wrap: wrap; gap: 14px; }

.view-toggle {
  display: inline-flex;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: var(--paper);
}
.view-toggle button {
  width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.view-toggle button svg { width: 18px; height: 18px; }
.view-toggle button[aria-pressed="true"] { background: var(--espresso); color: var(--cream); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.section-sub { color: var(--ink-soft); font-size: 16.5px; max-width: 52ch; }

.on-dark { --cream: var(--espresso); }
.band-dark {
  background: var(--espresso);
  color: #F3E9DD;
}
.band-dark .section-sub { color: #C7B8A8; }
.band-dark h2, .band-dark h3 { color: #F9F2E7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: #FBF6EF;
  box-shadow: 0 10px 24px -12px rgba(168, 123, 46, 0.55);
}
.btn-primary:hover { background: var(--gold-deep); box-shadow: 0 14px 30px -12px rgba(168, 123, 46, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--ink); }
.band-dark .btn-ghost { color: #F3E9DD; border-color: rgba(243,233,221,0.28); }
.band-dark .btn-ghost:hover { border-color: #F3E9DD; }

.btn-sm { padding: 10px 18px; font-size: 13.5px; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), backdrop-filter var(--dur-fast) var(--ease-out);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(var(--shadow-color), 0.04);
  background-color: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 44px; width: 44px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.brand-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;
}
.brand-name {
  font-family: var(--font-display-ar);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
html[data-lang="en"] .brand-name { font-family: var(--font-display-en); font-size: 22px; letter-spacing: 0.02em; }
.brand-sub { display: block; font-size: 10.5px; letter-spacing: 0.1em; color: var(--ink-soft); text-transform: uppercase; margin-top: 3px; }
.footer-brand .brand-name { font-size: 28px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.main-nav a:hover { color: var(--ink); background: rgba(var(--shadow-color), 0.05); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.lang-toggle button[aria-pressed="true"] { background: var(--espresso); color: var(--cream); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.mobile-nav.open a { opacity: 1; transform: translateY(0); }
.mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav .btn { margin-top: 20px; align-self: flex-start; opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease-out) 0.3s, transform 0.4s var(--ease-out) 0.3s; }
.mobile-nav.open .btn { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  overflow: hidden;
  background: var(--espresso);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 720px) {
  .hero-media {
    top: 84px;
  }
  .hero-media img {
    object-fit: cover;
    object-position: center 15%;
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.72) 0%, rgba(20, 14, 10, 0.58) 45%, rgba(20, 14, 10, 0.8) 100%);
}

/* .hero always sits on the dark --espresso background (with or without a
   photo), so its text needs the light palette in both cases. */
.hero .hero-copy .eyebrow { color: var(--rose); }
.hero .hero-copy .eyebrow::before { background: var(--gold); }
.hero .hero-title { color: #FBF6EF; }
.hero .hero-title .accent { color: var(--rose); }
.hero .hero-sub { color: rgba(251, 246, 239, 0.86); }
.hero .hero-stat b { color: #FBF6EF; }
.hero .hero-stat span { color: rgba(251, 246, 239, 0.72); }
.hero .btn-ghost { color: #F3E9DD; border-color: rgba(243, 233, 221, 0.4); }
.hero .btn-ghost:hover { border-color: #F3E9DD; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy { max-width: 640px; }

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.15;
  margin-block: 20px 18px;
}
html[data-lang="ar"] .hero-title { line-height: 1.35; }

.hero-title .accent { color: var(--rose); }

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat b { font-size: 26px; font-family: var(--font-display-en); color: var(--ink); }
html[data-lang="ar"] .hero-stat b { font-family: var(--font-display-ar); }
.hero-stat span { font-size: 12.5px; color: var(--ink-soft); }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

.hero-copy .eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-stats {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease-out) forwards;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.42s; }
.hero-stats { animation-delay: 0.54s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-stats, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Marquee strip ---------- */
.strip {
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream-deep);
}
.strip-track {
  display: flex;
  width: max-content;
  gap: 56px;
  padding: 16px 0;
  animation: marquee 32s linear infinite;
}
.strip-track span {
  font-family: var(--font-display-ar);
  font-size: 18px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
html[data-lang="en"] .strip-track span { font-family: var(--font-display-en); font-style: italic; }
.strip-track span::after { content: "•"; color: var(--rose); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] .strip-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}
@media (min-width: 560px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.cat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px -20px rgba(var(--shadow-color), 0.35);
  border-color: transparent;
}
.cat-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-deep);
  transition: transform var(--dur-base) var(--ease-out);
}
.cat-card:nth-child(even) .cat-icon { background: var(--rose-tint); color: var(--rose-deep); }
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-4deg); }
.cat-icon svg { width: 34px; height: 34px; }
.cat-icon.has-photo { background: none; }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cat-card span { font-size: 15.5px; font-weight: 700; }

/* ---------- Products ---------- */
.cat-section { scroll-margin-top: 110px; }
.cat-section + .cat-section { margin-top: 56px; }
.cat-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cat-section-head .eyebrow { margin: 0; }
.cat-section-head .cat-count { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

.coming-soon {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--paper);
}
.coming-soon p { font-size: 14.5px; color: var(--ink-soft); }

.prod-disclaimer {
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

/* Grid (default) — responsive multi-column. One-item-at-a-time is a
   .view-list override on #productSections, toggled via .view-toggle. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
#productSections.view-list .product-grid {
  grid-template-columns: 1fr;
  gap: 52px;
  max-width: 460px;
  margin-inline: auto;
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -22px rgba(var(--shadow-color), 0.4); }

.product-art {
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#productSections.view-list .product-art { aspect-ratio: 1 / 1; }
.product-art svg { width: 68%; height: 68%; transition: transform var(--dur-base) var(--ease-out); }
.product-card:hover .product-art svg { transform: scale(1.06); }
.product-art img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-base) var(--ease-out); }
.product-card:hover .product-art img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: rgba(var(--shadow-color), 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-name { font-size: 15.5px; font-weight: 700; }
.product-cat { font-size: 12px; color: var(--ink-soft); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: var(--font-display-en); font-size: 19px; font-weight: 700; color: var(--gold-deep); }
html[data-lang="ar"] .product-price { font-family: var(--font-display-ar); }

.product-cal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 5px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.product-cal svg { width: 13px; height: 13px; color: var(--rose); flex-shrink: 0; }

/* ---------- Size / price table (juices, mixtures, milkshakes...) ---------- */
.size-table { display: flex; flex-direction: column; gap: 2px; margin-top: 2px; }
.size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13.5px;
}
.size-row:last-child { border-bottom: none; }
.size-label { color: var(--ink-soft); }
.size-price {
  font-family: var(--font-display-en);
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
}
html[data-lang="ar"] .size-price { font-family: var(--font-display-ar); }
.product-note { font-size: 12px; color: var(--ink-soft); font-style: italic; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: rgba(243, 233, 221, 0.04);
  border: 1px solid rgba(243, 233, 221, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-num {
  font-family: var(--font-display-en);
  font-size: 14px;
  color: var(--rose);
  font-weight: 700;
}
.why-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(85, 176, 141, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 19px; }
.why-card p { color: #C7B8A8; font-size: 14.5px; }

/* ---------- About / split ---------- */
.split {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-art { position: relative; aspect-ratio: 1/1; max-width: 460px; margin-inline: auto; }
.about-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 50px -24px rgba(var(--shadow-color), 0.45);
}
.about-badge {
  position: absolute;
  bottom: 6%;
  inset-inline-start: -6%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -22px rgba(var(--shadow-color), 0.35);
}
.about-badge strong { font-size: 22px; font-family: var(--font-display-en); color: var(--rose); display: block; }
.about-badge span { font-size: 11.5px; color: var(--ink-soft); }

.about-copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 18px; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.about-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- Occasions band ---------- */
.occ-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.occ-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.occ-nav:hover { background: var(--gold); color: #fff; border-color: transparent; }
.occ-nav:active { transform: scale(0.94); }
.occ-nav svg { width: 20px; height: 20px; }
.occ-prev svg { transform: scaleX(-1); }
html[dir="rtl"] .occ-prev svg { transform: scaleX(1); }
html[dir="rtl"] .occ-next svg { transform: scaleX(-1); }
@media (max-width: 560px) { .occ-nav { width: 38px; height: 38px; } .occ-nav svg { width: 17px; height: 17px; } }

.occ-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-width: 0;
}
.occ-scroller::-webkit-scrollbar { display: none; }
.occ-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 240px;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  background: var(--paper);
  border: 1px solid var(--border);
}
.occ-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.occ-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }

.testi-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 15px; height: 15px; }
.testi-quote { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-wrap {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .icon-wrap svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 14px; margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 14.5px; color: var(--ink-soft); }
.contact-row a:hover { color: var(--gold-deep); }

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: saturate(0.85); }
.map-open-link {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 8px 20px -8px rgba(var(--shadow-color), 0.35);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.map-open-link svg { width: 16px; height: 16px; color: var(--rose); flex-shrink: 0; }
.map-open-link:hover { transform: translateY(-2px); background: var(--gold-tint); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: #E8DCCB; padding: 64px 0 28px; }
.footer-top {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 220, 203, 0.14);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .brand-name { color: #F9F2E7; }
.footer-brand p { color: #B8A996; font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.footer-col h5 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #B8A996; margin-bottom: 16px; }
html[data-lang="ar"] .footer-col h5 { text-transform: none; letter-spacing: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: #E8DCCB; }
.footer-col a:hover { color: var(--rose); }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(232, 220, 203, 0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.social-row a:hover { background: var(--rose); border-color: var(--rose); }
.social-row svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 24px; font-size: 12.5px; color: #9A8B78;
}

/* ---------- Arch divider ---------- */
.arch-divider { display: block; width: 100%; height: auto; color: var(--cream); }

/* ---------- Product ID badge ---------- */
.product-art[data-lightbox] { cursor: zoom-in; }
.product-id {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  background: rgba(var(--shadow-color), 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  font-family: var(--font-display-en);
}

/* ---------- Floating social ---------- */
.floating-social {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #FBF6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(var(--shadow-color), 0.55);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.floating-social a:hover, .fs-btn:hover { transform: translateY(-3px); background: var(--gold-deep); }
.fs-group { position: relative; }
.fs-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: #FBF6EF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(var(--shadow-color), 0.55);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.fs-menu {
  position: absolute; left: calc(100% + 10px); bottom: 0;
  display: none; flex-direction: column; gap: 6px;
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 8px;
  box-shadow: 0 16px 32px -14px rgba(var(--shadow-color), 0.5);
  white-space: nowrap;
}
.fs-group.open .fs-menu { display: flex; }
.floating-social .fs-menu a {
  width: auto; height: auto; border-radius: var(--radius-sm);
  background: none; color: var(--ink); box-shadow: none;
  justify-content: flex-start; padding: 8px 12px; font-size: 13.5px; font-weight: 600;
}
.floating-social .fs-menu a:hover { transform: none; background: var(--gold-tint); }
.fs-btn svg { width: 21px; height: 21px; }
.row-phone { display: block; margin-top: 2px; }
.floating-social svg { width: 21px; height: 21px; }
@media (max-width: 640px) {
  .floating-social { left: 14px; bottom: 14px; gap: 8px; }
  .floating-social a, .fs-btn { width: 40px; height: 40px; }
}

.map-stack { display: grid; gap: 16px; }
.map-stack .map-frame { min-height: 240px; height: 240px; }
.map-stack .map-frame iframe { min-height: 240px; }

/* ---------- Product detail modal ---------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.product-modal.open { opacity: 1; pointer-events: auto; }
.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--shadow-color), 0.72);
}
.product-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  transition: transform var(--dur-base) var(--ease-out);
}
.product-modal.open .product-modal-panel { transform: scale(1); }
.product-modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.product-modal-close:hover { background: rgba(0, 0, 0, 0.55); }
.product-modal-close svg { width: 18px; height: 18px; }
.product-modal-media { aspect-ratio: 4 / 3; background: var(--gold-tint); }
.product-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-illus { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-modal-illus svg { width: 46%; height: 46%; }
.product-modal-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.product-modal-cat { font-size: 12px; color: var(--ink-soft); }
.product-modal-name { font-size: 21px; font-weight: 700; }
.product-modal-foot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.product-modal-notes {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
  white-space: pre-line;
}
.product-modal-notes:empty { display: none; }
@media (prefers-reduced-motion: reduce) {
  .product-modal, .product-modal-panel { transition: none; }
}

/* ---------- Photos ---------- */
.cat-icon.has-photo { width: 116px; height: 116px; background: none; padding: 0; overflow: hidden; border: 3px solid var(--paper); box-shadow: 0 10px 22px -12px rgba(var(--shadow-color), 0.55); }
.cat-icon.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.product-modal-media { aspect-ratio: auto; min-height: 0; }
.product-modal-media .pm-main { width: 100%; height: auto; max-height: 60vh; object-fit: contain; display: block; background: var(--gold-tint); }
.pm-thumbs { display: flex; gap: 8px; padding: 10px 14px 0; }
.pm-thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; opacity: .65; }
.pm-thumb.active { border-color: var(--gold); opacity: 1; }
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero photo + branch locations ---------- */
.hero-media img { object-position: 50% 62%; }
.hero-scrim { background: linear-gradient(180deg, rgba(20,14,10,0.78) 0%, rgba(20,14,10,0.66) 45%, rgba(20,14,10,0.86) 100%); }
.hero-branches { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-branch {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 18px;
  border-radius: 16px;
  background: rgba(251, 246, 239, 0.14);
  border: 1.5px solid rgba(251, 246, 239, 0.4);
  backdrop-filter: blur(6px);
  color: #FBF6EF;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.hero-branch:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.hero-branch svg { width: 26px; height: 26px; flex-shrink: 0; color: #FBF6EF; }
.hb-text { display: flex; flex-direction: column; line-height: 1.35; }
.hb-name { font-size: 18px; font-weight: 700; }
.hb-addr { font-size: 14.5px; font-weight: 500; opacity: 0.92; }
html[data-lang="ar"] .hb-name { font-family: var(--font-display-ar); font-size: 20px; }
@media (max-width: 560px) { .hero-branch { width: 100%; } }

/* ---------- Mobile-first hero + logo (overrides earlier hero rules) ---------- */
.brand-logo { height: 50px; width: auto; border-radius: 12px; background: #FBF9F2; box-shadow: 0 6px 16px -8px rgba(0,0,0,0.5); }
.site-header.scrolled .brand-logo { height: 42px; }
.footer-brand .brand-logo { height: 64px; }
.hero-frame { display: none; }

@media (max-width: 899px) {
  .hero { padding: 300px 0 56px; }
  .hero-media { top: 72px; }
  .hero-media img { object-fit: cover; object-position: 50% 0%; }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(20,14,10,0.9) 0%, rgba(20,14,10,0.08) 14%, rgba(20,14,10,0.2) 30%, rgba(20,14,10,0.86) 50%, rgba(20,14,10,0.96) 100%);
  }
}

@media (min-width: 900px) {
  .hero { padding: 150px 0 90px; }
  .hero-media, .hero-scrim { display: none; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
  .hero-frame { display: block; justify-self: center; width: 100%; max-width: 400px; }
  .hero-frame img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%; border-radius: 28px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.7); border: 1px solid rgba(251,246,239,0.18); }
}

/* Header controls stay readable over the dark hero photo until the header turns solid */
.site-header:not(.scrolled) .menu-toggle { color: #FBF6EF; border-color: rgba(251, 246, 239, 0.45); }
.site-header:not(.scrolled) .lang-toggle { border-color: rgba(251, 246, 239, 0.4); }
.site-header:not(.scrolled) .lang-toggle button { color: rgba(251, 246, 239, 0.8); }
.site-header:not(.scrolled) .lang-toggle button[aria-pressed="true"] { background: #FBF6EF; color: var(--espresso); }
.site-header:not(.scrolled) .main-nav a { color: rgba(251, 246, 239, 0.85); }
.site-header:not(.scrolled) .main-nav a:hover { color: #fff; background: rgba(251, 246, 239, 0.12); }

.hb-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 14px; font-weight: 700; color: #FFC9AE; }
.hb-cta svg { width: 15px; height: 15px; }
html[dir="rtl"] .hb-cta svg { transform: scaleX(-1); }
.hero-branch:hover .hb-cta { color: #fff; }

/* ---------- Promo banner ---------- */
.promo-banner {
  position: relative;
  overflow: hidden;
  padding: 44px 24px;
  text-align: center;
  background: repeating-linear-gradient(135deg, var(--gold) 0, var(--gold) 34px, var(--gold-deep) 34px, var(--gold-deep) 68px);
}
.promo-banner-media, .promo-banner-scrim { position: absolute; inset: 0; }
.promo-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-banner-scrim { background: transparent; }
.promo-banner.has-image .promo-banner-scrim { background: linear-gradient(180deg, rgba(20,14,10,0.55), rgba(20,14,10,0.7)); }
.promo-banner-inner, .promo-tag { position: relative; z-index: 1; }
.promo-banner-inner { display: flex; align-items: center; justify-content: center; gap: 18px; }
.promo-word { font-size: clamp(38px, 9vw, 64px); font-weight: 700; color: #FBF6EF; text-shadow: 0 3px 18px rgba(0,0,0,0.35); line-height: 1.2; }
.promo-spark { font-size: clamp(18px, 4vw, 28px); color: #FFE2D3; }
.promo-tag { margin-top: 8px; font-size: 17px; color: #FFE2D3; letter-spacing: 0.02em; }
html[data-lang="en"] .promo-tag { font-family: var(--font-display-en); font-style: italic; }

/* ---------- Promo photo showcase ---------- */
.section.promo { padding: 40px 0 20px; }
.promo-scroller-wrap { overflow: hidden; }
.promo-scroller { display: flex; width: max-content; gap: 16px; animation: promo-scroll 40s linear infinite; }
html[dir="rtl"] .promo-scroller { animation-name: promo-scroll-rtl; }
.promo-scroller:hover { animation-play-state: paused; }
@keyframes promo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes promo-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.promo-card { width: 220px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 14px 28px -16px rgba(var(--shadow-color), 0.45); }
.promo-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 560px) { .promo-card { width: 170px; } }
.promo-caption { margin-top: 18px; text-align: center; font-size: 14px; color: var(--ink-soft); }

/* ---------- Discount display (used only when a price has a lower `sale`) ---------- */
.price-sale-wrap { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.price-was { font-size: 12.5px; color: var(--ink-soft); text-decoration: line-through; font-family: var(--font-display-en); }
html[data-lang="ar"] .price-was { font-family: var(--font-display-ar); }
.discount-tag { background: var(--rose); color: #FFF7EC; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }

.menu-loading { text-align: center; padding: 60px 0; color: var(--ink-soft); font-size: 15px; }

.about-solo { grid-template-columns: 1fr; max-width: 760px; }
@media (min-width: 880px) { .about-solo { grid-template-columns: 1fr; } }
