/* ═══════════════════════════════════════════════════════
   فرن الاحلام | Oven of Dreams — Main Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white:      #ffffff;
  --bg-section: #F9F4EE;
  --dark-brown: #2C1A0E;
  --med-brown:  #5C3A1E;
  --gold:       #C9933A;
  --gold-light: #E8B96A;
  --charcoal:   #1A1208;
  --muted:      #7A5C3A;
  --border:     rgba(44, 26, 14, .1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: #fff;
  color: var(--dark-brown);
  overflow-x: hidden;
  width: 100%;
}

a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; height: auto; }
button { font-family: 'Tajawal', sans-serif; cursor: pointer; }

/* ── NAVIGATION ────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 2rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .2s;
}
.nav-logo img:hover { opacity: .8; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  direction: ltr;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: .88rem;
  color: var(--med-brown);
  transition: color .2s;
  font-weight: 400;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active-link { color: var(--gold); }

.nav-cart-btn {
  position: relative;
  background: var(--dark-brown);
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  border-radius: 3px;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cart-btn:hover { background: var(--gold); }

.cart-badge {
  background: var(--gold);
  color: var(--dark-brown);
  font-weight: 700;
  font-size: .65rem;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  left: -5px;
  transition: transform .2s;
}
.cart-badge.pop { transform: scale(1.5); }

/* ── HAMBURGER MENU (mobile) ────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--dark-brown);
  font-size: 1.5rem;
  padding: .3rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 400;
  flex-direction: column;
  padding: 1.2rem 1.5rem;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(44,26,14,.15);
}
.mobile-menu.open { display: flex; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.mobile-menu a {
  display: block;
  padding: .75rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-brown);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover,
.mobile-menu a.active-link { color: var(--gold); }

.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
}

.mobile-cart-row { margin-top: 1rem; }
.mobile-cart-row button {
  width: 100%;
  background: var(--dark-brown);
  color: #fff;
  padding: .85rem;
  border: none;
  border-radius: 3px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.mobile-cart-row button:hover { background: var(--gold); }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  background: var(--dark-brown);
  color: #fff;
  padding: .8rem 2rem;
  border: none;
  font-size: .9rem;
  transition: background .2s;
  border-radius: 3px;
  display: inline-block;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  text-align: center;
}
.btn-primary:hover { background: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--dark-brown);
  padding: .8rem 1.8rem;
  border: 1.5px solid var(--dark-brown);
  font-size: .9rem;
  transition: all .2s;
  border-radius: 3px;
  display: inline-block;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
}
.btn-outline:hover { background: var(--dark-brown); color: #fff; }

.btn-gold {
  background: var(--gold);
  color: var(--dark-brown);
  padding: .8rem 2rem;
  border: none;
  font-size: .9rem;
  font-weight: 700;
  transition: background .2s;
  border-radius: 3px;
  display: inline-block;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); }

/* ── MARQUEE ────────────────────────────────────── */
.marquee-strip {
  background: var(--dark-brown);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  color: var(--gold-light);
  letter-spacing: .15em;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 4rem;
  background: #fff;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-weight: 300;
}
.hero-title {
  font-family: 'Tajawal', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-brown);
  margin-bottom: .35rem;
}
.hero-title-en {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.8rem;
  display: block;
}
.hero-desc {
  font-size: .95rem;
  line-height: 2;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: .8rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-image-side {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(.92);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.1) 0%, transparent 30%);
}
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--dark-brown);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 3px;
}
.hero-badge .bnum {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-badge .blbl {
  font-size: .68rem;
  letter-spacing: .1em;
  opacity: .7;
  font-weight: 300;
  margin-top: .25rem;
  display: block;
}

/* ── GALLERY ────────────────────────────────────── */
.gallery-section {
  padding: 4rem 2rem;
  background: #fff;
  width: 100%;
}
.section-header  { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.section-title {
  font-family: 'Tajawal', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-brown);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  width: 100%;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  display: block;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  filter: sepia(8%) brightness(.93);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,12,8,.72));
  color: #fff;
  padding: 1.5rem .8rem .8rem;
  font-size: .82rem;
  text-align: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── ABOUT STRIP ────────────────────────────────── */
.about-strip {
  padding: 5rem 2rem;
  background: var(--dark-brown);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.about-text .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: .8rem;
}
.about-text h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.about-text p {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 2;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 1.8rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.stat-item { border-top: 1px solid rgba(201,147,58,.3); padding-top: 1rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 300; }

/* ── ORDER CTA ──────────────────────────────────── */
.order-cta {
  padding: 5rem 2rem;
  background: var(--bg-section);
  text-align: center;
  width: 100%;
}
.order-cta em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.order-cta h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: .7rem;
}
.order-cta p { font-size: .95rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300; }

/* ── HERO ANIMATION ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp .65s ease forwards; opacity: 0; }
.hero-text > *:nth-child(1) { animation-delay: .1s; }
.hero-text > *:nth-child(2) { animation-delay: .22s; }
.hero-text > *:nth-child(3) { animation-delay: .32s; }
.hero-text > *:nth-child(4) { animation-delay: .42s; }
.hero-text > *:nth-child(5) { animation-delay: .52s; }

/* ── SOCIAL STRIP ───────────────────────────────── */
.social-strip {
  background: var(--dark-brown);
  padding: 2.5rem 2rem;
  text-align: center;
}
.social-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  letter-spacing: .2em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  direction: ltr;
  flex-wrap: wrap;
}
.social-links a {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .82rem;
  padding: .55rem 1.3rem;
  border-radius: 2px;
  letter-spacing: .06em;
  transition: background .2s;
  border: 1px solid rgba(255,255,255,.15);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark-brown); }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.f-logo { font-size: 1rem; font-weight: 700; color: #fff; }
.f-copy { font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .04em; }
.f-links { display: flex; gap: 1.2rem; direction: ltr; flex-wrap: wrap; }
.f-links a { color: rgba(255,255,255,.45); font-size: .78rem; transition: color .2s; }
.f-links a:hover { color: var(--gold-light); }

/* ── TOAST ──────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--dark-brown);
  color: #fff;
  padding: .8rem 1.3rem;
  border-radius: 4px;
  font-size: .85rem;
  transform: translateY(80px);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-left: 3px solid var(--gold);
  max-width: calc(100vw - 3rem);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── CART OVERLAY & SIDEBAR ─────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,12,8,.55);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: min(420px, 95vw);
  background: #fff;
  z-index: 600;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h2 { font-size: 1.2rem; font-weight: 700; color: var(--dark-brown); }
.cart-close { background: none; border: none; font-size: 1.4rem; color: var(--muted); cursor: pointer; }
.cart-close:hover { color: var(--dark-brown); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.cart-empty { text-align: center; padding: 3rem 0; color: var(--muted); }
.cart-empty-icon { font-size: 2.5rem; margin-bottom: .8rem; display: block; }

.cart-item {
  display: flex;
  gap: .8rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(44,26,14,.07);
  align-items: center;
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  filter: sepia(8%);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .88rem; font-weight: 700; color: var(--dark-brown); margin-bottom: .15rem; }
.cart-item-unit { font-size: .72rem; color: var(--muted); }
.cart-item-price { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--gold); margin-top: .25rem; }
.cart-item-qty { display: flex; align-items: center; gap: .4rem; margin-top: .35rem; }
.cqty-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--dark-brown);
  background: transparent;
  color: var(--dark-brown);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; cursor: pointer;
}
.cqty-btn:hover { background: var(--dark-brown); color: #fff; }
.cqty-num { font-size: .85rem; font-weight: 700; min-width: 16px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--muted); font-size: 1rem; flex-shrink: 0; cursor: pointer; }
.cart-item-remove:hover { color: #c0392b; }

/* ── DELIVERY SECTION IN CART ───────────────────── */
.delivery-section {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(201,147,58,.05);
  flex-shrink: 0;
}
.delivery-section-label { font-size: .8rem; font-weight: 700; color: var(--dark-brown); margin-bottom: .7rem; }
.delivery-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-bottom: .8rem; }
.dtoggle-btn {
  padding: .6rem .4rem;
  border-radius: 4px;
  border: 1.5px solid rgba(44,26,14,.15);
  background: #fff;
  color: var(--med-brown);
  font-family: 'Tajawal', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  line-height: 1.3;
}
.dtoggle-btn .dicon { display: block; font-size: 1.2rem; margin-bottom: .15rem; }
.dtoggle-btn .dfee { display: block; font-size: .68rem; font-weight: 400; opacity: .7; margin-top: .1rem; }
.dtoggle-btn:hover { border-color: var(--gold); }
.dtoggle-btn.selected { background: var(--dark-brown); color: #fff; border-color: var(--dark-brown); }

.delivery-date-wrap label {
  font-size: .75rem;
  color: var(--muted);
  display: block;
  margin-bottom: .35rem;
}
.delivery-date-input {
  width: 100%;
  padding: .6rem .85rem;
  border: 1.5px solid rgba(44,26,14,.15);
  border-radius: 3px;
  font-family: 'Tajawal', sans-serif;
  font-size: .88rem;
  background: #fff;
  color: var(--dark-brown);
}
.delivery-date-input:focus { outline: none; border-color: var(--gold); }

/* ── CART FOOTER ────────────────────────────────── */
.cart-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  padding: .25rem 0;
  font-size: .82rem;
  color: var(--muted);
}
.cart-divider { border: none; border-top: 1px dashed rgba(44,26,14,.12); margin: .5rem 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-total-label { font-size: .88rem; color: var(--muted); }
.cart-total-amount { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--dark-brown); }
.cart-total-amount span { font-family: 'Tajawal', sans-serif; font-size: .8rem; color: var(--muted); font-weight: 400; margin-right: .25rem; }

.whatsapp-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  padding: .95rem;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .2s;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
}
.whatsapp-btn:hover { background: #1ebe5d; }
.whatsapp-icon { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.cart-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .6rem; line-height: 1.4; }

/* ── MENU HERO ──────────────────────────────────── */
.menu-hero {
  background: var(--dark-brown);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  width: 100%;
}
.menu-hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.menu-hero .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}
.menu-hero .tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: .8rem;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ── MENU SECTION ───────────────────────────────── */
.menu-section {
  padding: 3rem 2rem;
  width: 100%;
}
.menu-section:nth-child(even) { background: var(--bg-section); }

.menu-cat-title {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 1.8rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.menu-cat-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--muted);
  font-weight: 300;
  margin-right: .6rem;
}

/* ── PRODUCT CARDS ──────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(44,26,14,.07);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(44,26,14,.1); }
.product-card.in-cart { border-color: var(--gold); border-width: 2px; }

.product-img-wrap { height: 200px; overflow: hidden; background: var(--bg-section); }
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(6%) brightness(.92);
  transition: transform .5s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-info { padding: 1rem 1.2rem .8rem; }
.product-name-ar { font-size: 1rem; font-weight: 700; color: var(--dark-brown); margin-bottom: .2rem; }
.product-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: .4rem;
}
.product-desc { font-size: .8rem; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: .6rem; }
.product-unit { font-size: .72rem; color: var(--muted); margin-bottom: .3rem; opacity: .75; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.product-price span { font-family: 'Tajawal', sans-serif; font-size: .78rem; color: var(--muted); font-weight: 400; }

.product-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.2rem 1rem;
  border-top: 1px solid rgba(44,26,14,.06);
}
.qty-control { display: flex; align-items: center; gap: .5rem; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--dark-brown);
  background: transparent;
  color: var(--dark-brown);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; cursor: pointer;
}
.qty-btn:hover { background: var(--dark-brown); color: #fff; }
.qty-num { font-size: .95rem; font-weight: 700; min-width: 18px; text-align: center; }
.add-cart-btn {
  background: var(--dark-brown);
  color: #fff;
  border: none;
  padding: .45rem 1rem;
  border-radius: 3px;
  font-size: .78rem;
  transition: background .2s;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
}
.add-cart-btn:hover,
.add-cart-btn.added { background: var(--gold); }
.add-cart-btn.added { color: var(--dark-brown); }

/* ── CONTACT PAGE ───────────────────────────────── */
.contact-hero {
  background: var(--dark-brown);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  width: 100%;
}
.contact-hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.contact-hero .sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}
.contact-hero .tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: .8rem; font-weight: 300; }

.contact-body {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block { }
.contact-info-block h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark-brown); margin-bottom: .9rem; }
.contact-info-block p { font-size: .9rem; color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 1.8rem; }

.contact-links { display: flex; flex-direction: column; gap: .8rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  background: var(--bg-section);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all .2s;
  color: var(--dark-brown);
}
.contact-link:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(44,26,14,.08); }
.contact-link-icon { font-size: 1.5rem; width: 36px; text-align: center; }
.contact-link-text { font-weight: 700; font-size: .92rem; }
.contact-link-sub { font-size: .75rem; color: var(--muted); font-weight: 300; margin-top: .1rem; }

.contact-right { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--bg-section);
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.info-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark-brown); margin-bottom: .7rem; display: flex; align-items: center; gap: .4rem; }
.info-card p { font-size: .85rem; color: var(--muted); line-height: 1.85; font-weight: 300; }

.badge-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .8rem; }
.badge { display: inline-block; background: var(--dark-brown); color: #fff; font-size: .7rem; padding: .2rem .75rem; border-radius: 2px; letter-spacing: .06em; }
.badge.gold { background: var(--gold); color: var(--dark-brown); font-weight: 700; }

.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: .3rem .8rem; font-size: .83rem; margin-top: .5rem; }
.hours-grid .day { color: var(--muted); }
.hours-grid .time { font-weight: 700; color: var(--dark-brown); }

.order-now-card { background: var(--dark-brown); border-radius: 4px; padding: 1.8rem; text-align: center; }
.order-now-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.order-now-card p { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 300; margin-bottom: 1.3rem; line-height: 1.65; }

/* ── ENGLISH / LTR OVERRIDES ────────────────────── */
body.ltr-page                  { direction: ltr; }
body.ltr-page nav              { direction: ltr; }
body.ltr-page .nav-logo        { align-items: flex-start; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: .7rem 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; align-items: center; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 55vw; min-height: 220px; }
  .hero-text { padding: 2.5rem 1.2rem; }
  .hero-title { font-size: 2.5rem; }

  .gallery-section, .about-strip, .order-cta { padding-left: 1rem; padding-right: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-item { height: 45vw; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }

  .contact-body { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 1rem; }
  .contact-hero { padding: 2.5rem 1rem; }
  .contact-hero h1 { font-size: 2rem; }

  .menu-section { padding: 2rem 1rem; }
  .menu-hero { padding: 3rem 1rem 2.5rem; }
  .menu-hero h1 { font-size: 2rem; }

  footer { flex-direction: column; text-align: center; padding: 1.2rem 1rem; }
  .f-links { justify-content: center; }
  .social-strip { padding: 2rem 1rem; }
  .social-links { gap: .6rem; }
  .social-links a { font-size: .75rem; padding: .45rem 1rem; }

  /* Cart button: floating FAB on mobile */
  .nav-cart-btn {
    position: fixed;
    bottom: 1.8rem;
    right: 1.5rem;
    z-index: 998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    flex-direction: column;
    gap: 2px;
    font-size: .62rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    border: 2px solid var(--gold);
  }
  .nav-cart-btn svg { width: 22px; height: 22px; }
  .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid var(--dark-brown);
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: .88rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 56vw; }
  .order-cta h2 { font-size: 2rem; }
  .about-text h2 { font-size: 1.8rem; }
  .hero-badge { bottom: 1rem; left: 1rem; padding: .8rem 1.2rem; }
  .hero-badge .bnum { font-size: 1.6rem; }
  .products-grid { grid-template-columns: 1fr; }
}
