@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400;1,9..144,500&family=DM+Sans:wght@300;400;500;600&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --bg:        #FDF6EB;
  --primary:   #3B1F10;
  --secondary: #5C2E0E;
  --accent:    #7A3B1E;
  --eyebrow:   #C07A3A;
  --gold:      #D4A843;
  --gold-text: #8B5E00;
  --cream:     #F5E8D0;
  --r:         12px;
  --r-sm:      8px;
  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'DM Sans', sans-serif;
  --font-a: 'IBM Plex Sans Arabic', sans-serif;
}

/* ── SKIP LINK ───────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); padding: 10px 20px; background: var(--primary); color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: .04em; border-radius: 0 0 8px 8px; z-index: 10000; transition: top .15s; white-space: nowrap; }
.skip-link:focus { top: 0; }

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--bg); color: var(--primary); line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── FOCUS ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible { border-radius: 40px; }
.filter-pill:focus-visible,
.lang-btn:focus-visible    { border-radius: 20px; }
.nav-link:focus-visible,
.mega-btn:focus-visible    { border-radius: var(--r-sm); }

/* ── RTL / ARABIC ────────────────────────────────── */
[lang="ar"] body,
[lang="ar"] p,
[lang="ar"] span,
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] a,
[lang="ar"] button,
[lang="ar"] li,
[lang="ar"] .nav-link,
[lang="ar"] .btn-primary,
[lang="ar"] .btn-outline {
  font-family: var(--font-a);
}
[lang="ar"] * { letter-spacing: 0 !important; }
[lang="ar"] .eyebrow { font-size: 13px; }
[lang="ar"] .section-title,
[lang="ar"] .hero-title,
[lang="ar"] .font-d { font-family: var(--font-a); font-weight: 500; font-style: normal !important; }
[lang="ar"] em { font-style: normal; }

/* ── CONTENT PROTECTION ──────────────────────────── */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea { -webkit-user-select: text; user-select: text; }
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
/* allow pointer events on links/buttons that contain images */
a img, button img { pointer-events: none; }
a, button { pointer-events: auto; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
.font-d { font-family: var(--font-d); }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title em { color: var(--accent); font-style: italic; }

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--primary); }

/* ── NOTICE BAR ──────────────────────────────────── */
#notice-bar {
  background: var(--gold);
  color: var(--primary);
  text-align: center;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 600;
}

/* ── NAV ─────────────────────────────────────────── */
#shell-nav { display: contents; }
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,246,235,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,31,16,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(59,31,16,.1); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--primary); opacity: .78;
  padding: 7px 12px; border-radius: var(--r-sm);
  transition: background .2s, opacity .2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-link:hover { background: rgba(59,31,16,.07); opacity: 1; }

/* Mega menu */
.has-mega { position: relative; }
.mega-btn { background: none; font-size: 14px; font-weight: 500; color: var(--primary); opacity: .78; padding: 7px 12px; border-radius: var(--r-sm); transition: background .2s, opacity .2s; display: inline-flex; align-items: center; gap: 5px; }
.mega-btn:hover { background: rgba(59,31,16,.07); opacity: 1; }
.mega-btn svg { transition: transform .25s; }
.mega-btn.open svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid rgba(59,31,16,.1);
  border-radius: var(--r);
  box-shadow: 0 16px 48px rgba(59,31,16,.14);
  padding: 24px 28px;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  min-width: 580px;
}
.mega-menu.open { display: grid; }
[dir="rtl"] .mega-menu { left: auto; right: 50%; transform: translateX(50%); }

.mega-col h4 {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(59,31,16,.1);
}
[lang="ar"] .mega-col h4 { letter-spacing: 0; font-size: 12px; }
.mega-col a { display: block; font-size: 13px; color: var(--primary); padding: 4px 0; opacity: .7; transition: opacity .18s, color .18s; }
.mega-col a:hover { opacity: 1; color: var(--gold-text); }

/* Lang switcher */
.lang-sw { display: flex; gap: 2px; background: rgba(59,31,16,.07); border-radius: 20px; padding: 3px; align-self: flex-start; }
.lang-btn { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 16px; color: var(--primary); opacity: .5; transition: all .2s; font-family: var(--font-b) !important; letter-spacing: 0 !important; min-width: 34px; text-align: center; }
.lang-btn.active { background: var(--primary); color: var(--bg); opacity: 1; }
.lang-btn[data-lang="ar"] { font-family: var(--font-a) !important; font-size: 14px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column; gap: 4px;
  position: fixed;
  inset: 0; z-index: 99;
  background: var(--bg);
  padding: 110px 32px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s, visibility 0s .3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s, visibility 0s;
}
[dir="rtl"] .mobile-menu           { transform: translateX(-100%); }
[dir="rtl"] .mobile-menu.open      { transform: translateX(0); }
.mobile-nav-link {
  font-family: var(--font-d); font-size: 22px; font-weight: 300;
  color: var(--primary); padding: 12px 0;
  border-bottom: 1px solid rgba(59,31,16,.08);
  display: block;
}
[lang="ar"] .mobile-nav-link { font-family: var(--font-a); }
.mobile-sub {
  padding-left: 16px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
[dir="rtl"] .mobile-sub { padding-left: 0; padding-right: 16px; }
.mobile-sub.open { max-height: 200px; }
.mobile-sub a { display: block; font-size: 15px; color: var(--secondary); padding: 6px 0; opacity: .85; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--primary);
  padding: 13px 26px; border-radius: 40px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, transform .25s;
}
.btn-primary:hover { background: #c49535; transform: translateY(-1px); }
.btn-primary--dark { background: var(--primary); color: var(--bg); }
.btn-primary--dark:hover { background: var(--secondary); }

.btn-outline {
  border: 1.5px solid rgba(253,246,235,.35); color: #FDF6EB;
  padding: 13px 26px; border-radius: 40px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: rgba(253,246,235,.7); background: rgba(253,246,235,.07); }

/* ── BADGE ───────────────────────────────────────── */
.badge {
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.3);
  color: var(--gold);
  padding: 7px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 500;
  display: inline-block;
}

/* ── ARABESQUE PATTERN ───────────────────────────── */
.arabesque-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("../images/brand/pattern.jpg");
  background-size: 588px 588px;
  background-repeat: repeat;
  opacity: .05;
}

/* Divider */
.arabesque-divider { overflow: hidden; line-height: 0; padding: 4px 0; }
.arabesque-divider svg { width: 100%; display: block; height: 36px; }

/* ── HERO ─────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0802 0%, #3B1F10 60%, #5C2E0E 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px; align-items: center;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; line-height: 1.05;
  color: #FDF6EB; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: rgba(253,246,235,.72);
  line-height: 1.75; max-width: 420px;
  margin-bottom: 36px;
}
.hero-eyebrow { color: var(--gold); opacity: .88; margin-bottom: 20px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero product grid */
.hero-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card { border-radius: var(--r); overflow: hidden; position: relative; }
.hero-card--wide { grid-column: 1 / -1; }
.hero-card-img {
  width: 100%; display: block; overflow: hidden;
  background: linear-gradient(135deg, #5C2E0E, #7A3B1E);
}
.hero-card--wide .hero-card-img { aspect-ratio: 16/7; }
.hero-card:not(.hero-card--wide) .hero-card-img { aspect-ratio: 3/4; }
.hero-card-label {
  position: absolute; bottom: 0; inset-inline: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(15,5,2,.88), transparent);
}
.hero-card-tag { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #FDF6EB; display: block; margin-bottom: 3px; }
.hero-card-name { color: #FDF6EB; font-size: 13.5px; font-weight: 500; }

/* placeholder image fills */
.img-ph { display: flex; align-items: center; justify-content: center; }
.img-ph i { font-size: 64px; opacity: .22; color: #fff; pointer-events: none; }

/* real images inside any image container */
.hero-card-img img,
.about-img img,
.cat-img img,
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── ABOUT ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img { border-radius: var(--r); aspect-ratio: 3/4; background: linear-gradient(135deg,#F5E8D0,#e8d5b0); overflow: hidden; }
.about-img:nth-child(2) { margin-top: 32px; background: linear-gradient(135deg,#e8d5b0,#d4c090); }

/* ── CATEGORY CARDS ──────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.cat-card {
  border-radius: var(--r); overflow: hidden; background: var(--cream);
  display: flex; flex-direction: column; color: inherit;
  transition: transform .3s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(59,31,16,.12); }
.cat-img { width: 100%; aspect-ratio: 4/3; display: block; overflow: hidden; flex-shrink: 0; }
.cat-body { padding: 24px; background: #FDF6EB; display: flex; flex-direction: column; flex: 1; }
.cat-desc { font-size: 14px; color: var(--secondary); line-height: 1.65; flex: 1; }
.cat-tag { font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--eyebrow); margin-bottom: 8px; display: block; }
.cat-name { font-family: var(--font-d); font-size: 22px; font-weight: 400; color: var(--primary); margin-bottom: 8px; letter-spacing: -.01em; }
[lang="ar"] .cat-name { font-family: var(--font-a); }
.cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold-text); }
.cat-link i { font-size: 16px; }
[dir="rtl"] .cat-link i { transform: scaleX(-1); }
.mobile-sub-chevron { font-size: 16px; margin-left: 6px; transition: transform .3s; vertical-align: middle; }
[dir="rtl"] .mobile-sub-chevron { margin-left: 0; margin-right: 6px; }
.mobile-sub-toggle[aria-expanded="true"] .mobile-sub-chevron { transform: rotate(180deg); }

/* ── DAILY STRIP ─────────────────────────────────── */
.daily-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.daily-title { font-family: var(--font-d); font-size: clamp(28px,3.5vw,48px); font-weight: 300; line-height: 1.1; color: var(--bg); margin-bottom: 20px; }
.daily-title em { color: var(--gold); font-style: italic; }
[lang="ar"] .daily-title { font-family: var(--font-a); font-weight: 500; }
.daily-text { font-size: 16px; color: rgba(253,246,235,.75); line-height: 1.75; margin-bottom: 28px; }
.daily-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.daily-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.daily-ph { border-radius: var(--r-sm); aspect-ratio: 1; overflow: hidden; }
.daily-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── ORDER STEPS ─────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.step { text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--primary); font-family: var(--font-d); font-size: 20px; font-weight: 500; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-title { font-family: var(--font-d); font-size: 20px; font-weight: 400; color: var(--primary); margin-bottom: 10px; }
[lang="ar"] .step-title { font-family: var(--font-a); }
.step-text { font-size: 14px; color: var(--secondary); line-height: 1.7; }

/* ── GALLERY GRID ────────────────────────────────── */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-pill { padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid rgba(212,168,67,.3); background: rgba(212,168,67,.1); color: var(--gold-text); transition: all .2s; }
.filter-pill.active, .filter-pill:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }

.gallery-grid { columns: 3; column-gap: 14px; }
#galerie-preview .gallery-grid { columns: 4; column-gap: 10px; }
.gallery-item { border-radius: var(--r-sm); overflow: hidden; break-inside: avoid; margin-bottom: 14px; }
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-ph { background: linear-gradient(135deg, var(--cream), #d4c090); display: flex; align-items: center; justify-content: center; font-size: 40px; opacity: .4; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid rgba(59,31,16,.1); }
.faq-q {
  width: 100%; text-align: start; padding: 20px 0;
  font-size: 16px; font-weight: 500; color: var(--primary);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s; font-family: var(--font-b);
}
[lang="ar"] .faq-q { font-family: var(--font-a); }
.faq-q:hover { color: var(--gold-text); }
.faq-icon { color: var(--gold-text); font-size: 22px; flex-shrink: 0; line-height: 1; transition: transform .3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--secondary); line-height: 1.75; padding-bottom: 20px; display: none; }
.faq-a.open { display: block; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.contact-card { background: var(--cream); border-radius: var(--r); padding: 32px; margin-bottom: 20px; }
.contact-card h3 { font-family: var(--font-d); font-size: 20px; font-weight: 400; margin-bottom: 24px; }
[lang="ar"] .contact-card h3 { font-family: var(--font-a); }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; font-size: 20px; line-height: 1; display: flex; }
.contact-label { font-weight: 500; margin-bottom: 3px; font-size: 14px; }
.contact-val { font-size: 14px; color: var(--secondary); }
.contact-val a { color: var(--gold-text); font-weight: 500; }
.contact-gmaps { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--gold-text); text-decoration: none; }
.contact-gmaps span { text-decoration: underline; }
.contact-note { background: var(--primary); border-radius: var(--r); padding: 22px 26px; }
.contact-note-label { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; display: block; }
[lang="ar"] .contact-note-label { letter-spacing: 0; font-size: 12px; }
.contact-note p { font-size: 14px; color: rgba(253,246,235,.8); line-height: 1.75; }
.map-wrap { border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.map-frame { position: relative; flex-shrink: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 14px));
  background: var(--primary);
  color: var(--gold);
  padding: 6px 11px 6px 9px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
  pointer-events: none;
}
.map-label::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--primary);
  border-bottom-width: 0;
}
.map-osm-link { display: block; text-align: right; font-size: 11px; padding: 5px 10px; background: var(--cream); color: var(--gold-text); text-decoration: underline; }

/* ── OFFERINGS PAGE ──────────────────────────────── */
.page-hero { padding-top: 80px; padding-bottom: 64px; background: var(--primary); position: relative; overflow: hidden; }
.page-hero-title { font-family: var(--font-d); font-size: clamp(32px,6vw,72px); font-weight: 300; color: var(--bg); line-height: 1.05; margin-top: 12px; overflow-wrap: break-word; word-break: break-word; }
[lang="ar"] .page-hero-title { font-family: var(--font-a); font-weight: 500; }
.page-hero-sub { font-size: 17px; color: rgba(253,246,235,.7); max-width: 560px; line-height: 1.75; margin-top: 16px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; margin-top: 16px; }
.product-card { border-radius: var(--r-sm); overflow: hidden; background: var(--cream); transition: transform .3s, box-shadow .25s, opacity .2s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,31,16,.1); }
.product-card.is-hiding { opacity: 0; transform: scale(0.96); pointer-events: none; }
@keyframes cardEnter { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.product-card.is-entering { animation: cardEnter .35s ease forwards; }
.product-img { width: 100%; aspect-ratio: 4/3; display: block; overflow: hidden; position: relative; }
.savory-badge { position: absolute; top: 10px; right: 10px; background: rgba(59,31,16,.75); color: #FDF6EB; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; backdrop-filter: blur(4px); }
[lang="ar"] .savory-badge { font-family: var(--font-a); letter-spacing: 0; right: auto; left: 10px; }
.page-torten .product-img { aspect-ratio: 3/4; }
.product-body { padding: 20px; background: #fff; flex: 1; }
.product-tag { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--eyebrow); margin-bottom: 6px; display: block; }
.product-name { font-family: var(--font-d); font-size: 20px; font-weight: 400; color: var(--primary); margin-bottom: 8px; }
[lang="ar"] .product-name { font-family: var(--font-a); }
.product-desc { font-size: 14px; color: var(--secondary); line-height: 1.65; }
.product-sizes { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.size-pill { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 12px; border: 1.5px solid rgba(192,122,58,.3); color: var(--secondary); background: rgba(212,168,67,.08); letter-spacing: .04em; }
.togo-meta { font-size: 16px; color: rgba(253,246,235,.75); margin-top: 10px; }
.togo-pricing-strip { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; background: var(--cream); border: 1.5px solid rgba(212,168,67,.25); border-radius: var(--r-sm); padding: 18px 24px; margin-bottom: 36px; }
.togo-pricing-label { font-size: 13px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.togo-pricing-sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.togo-size-item { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1px solid rgba(212,168,67,.2); border-radius: 8px; padding: 10px 18px; min-width: 70px; }
.togo-size-cm { font-size: 11px; color: var(--secondary); font-weight: 500; }
.togo-size-price { font-size: 20px; font-weight: 700; color: var(--primary); margin-top: 3px; }
.togo-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--gold); text-decoration: none; }
.togo-link i, .gallery-more-link i { transition: transform .25s ease; }
.togo-link:hover i, .gallery-more-link:hover i { transform: translateX(4px); }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--primary); color: rgba(253,246,235,.72); }
.footer-inner { padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social a { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gold); font-weight: 500; }
.footer-col-head { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
[lang="ar"] .footer-col-head { letter-spacing: 0; font-size: 12px; }
.footer-link { display: block; font-size: 13.5px; color: rgba(253,246,235,.6); margin-bottom: 7px; transition: color .2s; }
.footer-link:hover { color: var(--bg); }
.footer-bottom { border-top: 1px solid rgba(253,246,235,.1); padding-top: 24px; padding-bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-copy { font-size: 12px; color: rgba(253,246,235,.35); }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal-sep { color: rgba(253,246,235,.2); font-size: 12px; }
.footer-legal-link { font-size: 12px; color: rgba(253,246,235,.35); text-decoration: none; }
.footer-legal-link:hover { color: rgba(253,246,235,.7); }
.footer-credit { font-size: 11px; color: rgba(253,246,235,.25); }
.footer-credit a { color: rgba(253,246,235,.35); text-decoration: none; transition: color .2s; }
.footer-credit a:hover { color: rgba(253,246,235,.7); }
.footer-credit-heart { color: #c07a7a; }
.legal-body h2 { font-family: var(--font-d); font-size: 1.2rem; color: var(--primary); margin: 32px 0 10px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 12px; }
.legal-body a { color: var(--gold-text); }

/* ── COOKIE HINT ─────────────────────────────────── */
.sm-hint {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  background: var(--bg);
  border: 1px solid rgba(59,31,16,.12);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(59,31,16,.18);
  padding: 20px 22px 16px;
  max-width: 360px;
  width: calc(100vw - 48px);
  transition: opacity .3s, transform .3s;
}
.sm-hint--out { opacity: 0; transform: translateY(12px); pointer-events: none; }
.sm-hint__title { font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--primary); margin: 0 0 8px; }
.sm-hint__body { font-size: 13.5px; line-height: 1.6; color: rgba(59,31,16,.8); margin: 0 0 16px; }
.sm-hint__link { color: var(--gold-text); text-decoration: underline; }
.sm-hint__btn {
  display: block;
  margin-left: auto;
  background: var(--gold);
  color: var(--primary);
  border-radius: 40px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.sm-hint__btn:hover { background: #c49a35; transform: translateY(-1px); }
[lang="ar"] .sm-hint { right: auto; left: 24px; text-align: right; }
[lang="ar"] .sm-hint__btn { margin-left: 0; margin-right: auto; }
@media (max-width: 480px) {
  .sm-hint { right: 12px; bottom: 12px; width: calc(100vw - 24px); max-width: none; }
  [lang="ar"] .sm-hint { left: 12px; right: auto; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-inner .lang-sw, .footer .lang-sw { display: none !important; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .hero-products { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { max-width: 480px; }
  .cat-grid { grid-template-columns: 1fr; }
  .daily-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-products { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .mega-menu { min-width: 90vw; grid-template-columns: 1fr; }
}
