/* =========================================================
   السلطان — Design tokens
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root{
  --bg:            #120C0A;
  --bg-alt:        #1A120F;
  --card:          #221713;
  --card-hover:    #2B1D18;
  --burgundy:      #7E1B29;
  --burgundy-2:    #4A0D17;
  --burgundy-glow: rgba(184,35,55,.38);
  --gold:          #CC9A42;
  --gold-2:        #F0CE81;
  --gold-dim:      rgba(204,154,66,.22);
  --cream:         #F5E9D7;
  --muted:         #B9A48C;
  --line:          rgba(204,154,66,.16);
  --success:       #4C8B5B;
  --danger:        #C1443A;

  --radius-lg: 26px;
  --radius:    18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 50px -24px rgba(0,0,0,.75);
  --shadow-gold: 0 10px 30px -10px rgba(204,154,66,.35);

  --ease: cubic-bezier(.22,1,.36,1);
  --dur-s: .22s;
  --dur-m: .45s;
  --dur-l: .8s;

  --font-display: 'Aref Ruqaa', serif;
  --font-head: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;

  --nav-h: 76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--nav-h) + 14px); }

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

body{
  margin:0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  direction: rtl;
  text-align: right;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
input,textarea{ font-family:inherit; }

:focus-visible{
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width:100%;
  max-width: 1240px;
  margin-inline:auto;
  padding-inline: 22px;
}

/* subtle grain / vignette on body for premium depth */
body::before{
  content:"";
  position fixed;
}
.bg-texture{
  position:fixed; inset:0; z-index:-2; pointer-events:none;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(126,27,41,.35), transparent 60%),
    radial-gradient(900px 500px at -10% 15%, rgba(204,154,66,.10), transparent 55%),
    var(--bg);
}
.bg-noise{
  position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================================
   Utility: section heads / eyebrow / signature seal
   ========================================================= */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-head);
  font-weight:700; font-size:.8rem; letter-spacing:.06em;
  color: var(--gold-2);
  margin-bottom:14px;
}
.eyebrow::before,.eyebrow::after{ content:""; width:26px; height:1px; background:linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow::after{ transform:scaleX(-1); }

.section-head{ max-width:640px; margin-bottom: 42px; }
.section-head h2{
  font-family: var(--font-head);
  font-weight:900; font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin: 0 0 10px;
  color: var(--cream);
}
.section-head p{ color: var(--muted); font-size:1.02rem; line-height:1.9; margin:0; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; width:100%; }

section{ position:relative; padding: 88px 0; }

/* signature: grill-seal — a charred round grill plate w/ thin gold ring,
   echoes the round black grill plates the crepes are cooked on */
.grill-seal{
  --size: 64px;
  width:var(--size); height:var(--size); border-radius:50%;
  background: radial-gradient(circle at 35% 30%, #2c2320, #0c0908 70%);
  border:1.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(204,154,66,.08), inset 0 0 14px rgba(0,0,0,.6);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.grill-seal svg{ width:58%; height:58%; }

/* gold drizzle divider — echoes the signature mayo-swirl plating */
.drizzle-divider{ width:100%; display:flex; justify-content:center; margin: 6px 0 46px; opacity:.8; }
.drizzle-divider svg{ width:220px; height:22px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  --btn-h: 52px;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:var(--btn-h); padding:0 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight:800; font-size:.98rem;
  border:1px solid transparent; white-space:nowrap;
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), background var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
  position:relative;
}
.btn:active{ transform: translateY(1px) scale(.98); }

.btn-gold{
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%);
  color:#241505;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover{ box-shadow: 0 14px 34px -8px rgba(204,154,66,.55); transform: translateY(-2px); }

.btn-outline{
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-2);
}
.btn-outline:hover{ background: var(--gold-dim); transform: translateY(-2px); }

.btn-ghost{
  background: rgba(245,233,215,.06);
  color: var(--cream);
  border-color: rgba(245,233,215,.14);
}
.btn-ghost:hover{ background: rgba(245,233,215,.12); }

.btn-sm{ --btn-h:40px; padding:0 18px; font-size:.86rem; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; pointer-events:none; }

.icon-btn{
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(245,233,215,.06); border:1px solid rgba(245,233,215,.12);
  color: var(--cream); transition: background var(--dur-s) var(--ease), transform var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
  position:relative;
}
.icon-btn:hover{ background: var(--gold-dim); border-color: var(--gold); transform: translateY(-1px); }
.icon-btn svg{ width:20px; height:20px; }

/* =========================================================
   Navbar
   ========================================================= */
.nav{
  position:sticky; top:0; z-index:60;
  height: var(--nav-h);
  display:flex; align-items:center;
  background: rgba(18,12,10,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.nav.scrolled{ box-shadow: 0 12px 30px -18px rgba(0,0,0,.8); }
.nav .container{ display:flex; align-items:center; justify-content:space-between; gap:18px; }

.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:40px; height:40px; }
.brand-word{
  font-family: var(--font-display); font-weight:700;
  font-size:1.5rem; color: var(--gold-2); line-height:1;
}

.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-links a{
  font-family: var(--font-head); font-weight:700; font-size:.92rem;
  color: var(--muted); padding:10px 16px; border-radius:999px;
  transition: color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
  position:relative;
}
.nav-links a:hover, .nav-links a.active{ color: var(--gold-2); background: rgba(204,154,66,.08); }

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

.cart-btn{ position:relative; }
.cart-badge{
  position:absolute; top:-4px; left:-4px;
  min-width:20px; height:20px; padding:0 4px; border-radius:999px;
  background: var(--burgundy); color:#fff;
  font-family: var(--font-head); font-weight:800; font-size:.68rem;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--bg);
  transform: scale(0); transition: transform var(--dur-s) var(--ease);
}
.cart-badge.show{ transform: scale(1); }

.nav-toggle{ display:none; }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position:relative;
  min-height: min(92vh, 880px);
  display:flex; align-items:center;
  padding-top: calc(var(--nav-h) * -1 + 40px);
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0; z-index:-2;
  background-image: linear-gradient(180deg, rgba(15,10,8,.55) 0%, rgba(15,10,8,.78) 55%, var(--bg) 100%), url('assets/img/crepe-line.jpg');
  background-size:cover; background-position:center 30%;
  transform: scale(1.06);
  animation: heroKen 18s ease-in-out infinite alternate;
}
@keyframes heroKen{ from{ transform:scale(1.06) translateY(0);} to{ transform:scale(1.14) translateY(-10px);} }
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(650px 420px at 50% 15%, rgba(126,27,41,.28), transparent 70%);
}

.hero-inner{ text-align:center; width:100%; padding-top: calc(var(--nav-h) + 30px); }

.hero-crown{ width:78px; height:78px; margin:0 auto 18px; opacity:0; animation: riseIn .8s var(--ease) .1s forwards; }

.hero-title{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(3.6rem, 12vw, 8rem);
  line-height:.95; margin:0;
  color: var(--gold-2);
  text-shadow: 0 2px 0 rgba(0,0,0,.35), 0 30px 60px rgba(0,0,0,.5);
  opacity:0; animation: riseIn .9s var(--ease) .22s forwards;
}

.hero-sub{
  font-family: var(--font-head); font-weight:800; letter-spacing:.35em;
  font-size: clamp(.9rem, 1.6vw, 1.15rem);
  color: var(--cream); margin: 14px 0 0;
  opacity:0; animation: riseIn .9s var(--ease) .36s forwards;
}

.hero-tagline{
  font-family: var(--font-head); font-weight:700;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  margin: 26px auto 0; max-width:600px; color:#fff;
  opacity:0; animation: riseIn .9s var(--ease) .5s forwards;
}

.hero-actions{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px;
  margin-top:38px;
  opacity:0; animation: riseIn .9s var(--ease) .64s forwards;
}

@keyframes riseIn{ from{ opacity:0; transform:translateY(22px);} to{ opacity:1; transform:translateY(0);} }

.hero-scroll{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color: var(--muted); font-size:.75rem; font-family:var(--font-head); font-weight:700;
  opacity:0; animation: riseIn .9s var(--ease) .9s forwards;
}
.hero-scroll .dot{ width:1px; height:34px; background: linear-gradient(180deg, var(--gold), transparent); position:relative; overflow:hidden; }
.hero-scroll .dot::after{ content:""; position:absolute; top:-100%; right:0; width:100%; height:50%; background:var(--gold-2); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown{ 0%{ top:-50%;} 100%{ top:100%;} }

/* =========================================================
   Marquee strip (ingredients / categories ribbon)
   ========================================================= */
.marquee{
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--burgundy-2), var(--burgundy) 50%, var(--burgundy-2));
  overflow:hidden; padding: 14px 0;
}
.marquee-track{ display:flex; gap:48px; width:max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee span{
  font-family: var(--font-head); font-weight:800; font-size:.95rem; letter-spacing:.08em;
  color: var(--gold-2); display:flex; align-items:center; gap:14px; white-space:nowrap;
}
.marquee span::after{ content:"◆"; color: var(--gold); font-size:.6rem; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =========================================================
   Search + filters
   ========================================================= */
.menu-toolbar{
  display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between;
  margin-bottom: 30px;
  position:sticky; top: var(--nav-h); z-index:30;
  background: rgba(18,12,10,.9); backdrop-filter: blur(10px);
  padding: 14px 0;
}
.search-box{
  flex:1 1 260px; max-width:380px; position:relative;
}
.search-box input{
  width:100%; height:48px; border-radius:999px; border:1px solid var(--line);
  background: var(--card); color:var(--cream); padding: 0 46px 0 18px;
  font-size:.95rem; transition: border-color var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.search-box input::placeholder{ color: var(--muted); }
.search-box input:focus{ border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); outline:none; }
.search-box svg{ position:absolute; inset-inline-end:16px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--muted); pointer-events:none; }

.filter-pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  font-family: var(--font-head); font-weight:700; font-size:.88rem;
  padding: 11px 20px; border-radius:999px; border:1px solid var(--line);
  background: var(--card); color: var(--muted);
  transition: all var(--dur-s) var(--ease);
  display:inline-flex; align-items:center; gap:8px;
}
.pill:hover{ color:var(--gold-2); border-color:var(--gold); }
.pill.active{ background: linear-gradient(135deg, var(--gold-2), var(--gold)); color:#241505; border-color:transparent; box-shadow: var(--shadow-gold); }

/* =========================================================
   Menu grid & product cards
   ========================================================= */
.menu-group{ margin-bottom: 54px; }
.menu-group-title{
  display:flex; align-items:center; gap:14px; margin-bottom:22px;
  font-family: var(--font-head); font-weight:900; font-size:1.4rem; color: var(--gold-2);
}
.menu-group-title .grill-seal{ --size:44px; }

.product-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.product-card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  display:flex; flex-direction:column; gap:14px;
  transition: transform var(--dur-m) var(--ease), border-color var(--dur-s) var(--ease), box-shadow var(--dur-m) var(--ease), background var(--dur-s) var(--ease);
  opacity:0; transform: translateY(18px);
}
.product-card.in{ animation: cardIn .6s var(--ease) forwards; }
@keyframes cardIn{ to{ opacity:1; transform:translateY(0);} }
.product-card:hover{ transform: translateY(-6px); border-color: var(--gold); background: var(--card-hover); box-shadow: var(--shadow-soft); }

.product-media{
  position:relative; aspect-ratio:1/1; border-radius:50%;
  overflow:hidden; margin-inline:auto; width:72%;
  border: 3px solid var(--gold); box-shadow: 0 0 0 6px rgba(204,154,66,.08), var(--shadow-soft);
  cursor:pointer; background:#0c0908;
}
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform var(--dur-l) var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.1) rotate(1deg); }

.product-media .skeleton{ position:absolute; inset:0; }

.product-body{ text-align:center; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-name{ font-family: var(--font-head); font-weight:800; font-size:1.12rem; color:var(--cream); }
.product-desc{ font-size:.86rem; color:var(--muted); line-height:1.7; min-height:2.6em; }

.price-row{
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-head); font-weight:900; color: var(--gold-2); font-size:1.05rem;
}
.price-from{ font-size:.72rem; color:var(--muted); font-weight:600; }

.size-select{
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
}
.size-chip{
  font-family: var(--font-head); font-weight:700; font-size:.78rem;
  padding: 7px 12px; border-radius:999px; border:1px solid var(--line);
  background: rgba(245,233,215,.04); color: var(--muted);
  transition: all var(--dur-s) var(--ease);
}
.size-chip:hover{ border-color:var(--gold); color:var(--gold-2); }
.size-chip.active{ background: var(--burgundy); border-color:var(--burgundy); color:#fff; }

.product-actions{ margin-top:auto; display:flex; gap:10px; align-items:center; }

.qty-control{
  display:flex; align-items:center; gap:0; border:1px solid var(--line); border-radius:999px; overflow:hidden;
  background: rgba(245,233,215,.04);
}
.qty-control button{
  width:38px; height:38px; background:transparent; border:none; color:var(--gold-2); font-size:1.1rem; font-weight:800;
  transition: background var(--dur-s) var(--ease);
}
.qty-control button:hover{ background: var(--gold-dim); }
.qty-control span{ min-width:28px; text-align:center; font-family:var(--font-head); font-weight:800; }

.add-cart-btn{ flex:1; }

/* empty state for menu search */
.menu-empty{
  text-align:center; padding: 60px 20px; color:var(--muted);
  display:none; flex-direction:column; align-items:center; gap:14px;
}
.menu-empty.show{ display:flex; }
.menu-empty svg{ width:56px; height:56px; color: var(--gold); opacity:.6; }

/* skeleton shimmer */
.skeleton{
  background: linear-gradient(100deg, #241813 30%, #2f2119 50%, #241813 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer{ from{ background-position:180% 0;} to{ background-position:-20% 0;} }

/* =========================================================
   Offers
   ========================================================= */
.offers-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:22px; }
.offer-card{
  position:relative; border-radius: var(--radius-lg); padding: 28px 26px;
  background: linear-gradient(155deg, var(--burgundy) 0%, var(--burgundy-2) 100%);
  border:1px solid rgba(240,206,129,.25);
  overflow:hidden;
  transition: transform var(--dur-m) var(--ease);
}
.offer-card:hover{ transform: translateY(-6px); }
.offer-card::before{
  content:""; position:absolute; inset:-40% -40% auto auto; width:220px; height:220px; border-radius:50%;
  background: radial-gradient(circle, rgba(240,206,129,.22), transparent 70%);
}
.offer-badge{
  display:inline-block; font-family:var(--font-head); font-weight:800; font-size:.72rem;
  background: var(--gold-2); color:#241505; padding:6px 14px; border-radius:999px; margin-bottom:14px;
}
.offer-card h3{ font-family:var(--font-head); font-size:1.3rem; margin:0 0 8px; color:#fff; }
.offer-card p{ color: rgba(245,233,215,.85); font-size:.9rem; line-height:1.8; margin:0 0 18px; }
.offer-price{ display:flex; align-items:baseline; gap:10px; margin-bottom:18px; }
.offer-price .now{ font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:var(--gold-2); }
.offer-price .was{ text-decoration:line-through; color:rgba(245,233,215,.5); font-size:1rem; }

/* =========================================================
   About
   ========================================================= */
.about-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:60px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); width:100%; aspect-ratio:4/5; object-fit:cover; box-shadow: var(--shadow-soft); }
.about-media .frame-accent{
  position:absolute; inset:18px -18px -18px 18px; border:2px solid var(--gold); border-radius: var(--radius-lg); z-index:-1;
}
.about-stats{ display:flex; gap:26px; margin-top:28px; flex-wrap:wrap; }
.stat b{ display:block; font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:var(--gold-2); }
.stat span{ color:var(--muted); font-size:.85rem; }
.about-text p{ color: var(--muted); line-height:2; font-size:1.02rem; margin: 0 0 16px; }
.about-text ul{ display:flex; flex-direction:column; gap:12px; margin-top:22px; }
.about-text li{ display:flex; align-items:center; gap:12px; color:var(--cream); font-weight:600; }
.about-text li svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; }

/* =========================================================
   Contact / location
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
.contact-card{
  background:var(--card); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display:flex; flex-direction:column; gap:16px;
}
.contact-card h3{ font-family:var(--font-head); margin:0; font-size:1.15rem; display:flex; align-items:center; gap:10px; }
.contact-card h3 svg{ width:22px; height:22px; color:var(--gold); }
.phone-link{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(245,233,215,.04);
  border:1px solid var(--line); font-family:var(--font-head); font-weight:800; font-size:1.05rem; direction:ltr; justify-content:flex-end;
  transition: all var(--dur-s) var(--ease);
}
.phone-link:hover{ border-color:var(--gold); background:var(--gold-dim); }
.contact-card p{ color:var(--muted); line-height:1.9; margin:0; }
.map-frame{
  border-radius: var(--radius-sm); overflow:hidden; aspect-ratio:16/10; position:relative;
  background: linear-gradient(155deg, #2a1c17, #150f0c);
  border:1px dashed var(--line);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; color:var(--muted);
  text-align:center; padding:20px;
}
.map-frame svg{ width:34px; height:34px; color:var(--gold); }

/* =========================================================
   Footer
   ========================================================= */
footer{ border-top:1px solid var(--line); padding: 50px 0 26px; background: var(--bg-alt); }
.footer-top{ display:flex; flex-wrap:wrap; gap:40px; justify-content:space-between; margin-bottom:34px; }
.footer-brand .brand-word{ font-size:2rem; }
.footer-brand p{ color:var(--muted); margin-top:10px; max-width:280px; line-height:1.8; font-size:.9rem; }
.footer-col h4{ font-family:var(--font-head); font-size:.95rem; color:var(--gold-2); margin:0 0 14px; }
.footer-col a, .footer-col span{ display:block; color:var(--muted); font-size:.88rem; margin-bottom:10px; transition:color var(--dur-s); }
.footer-col a:hover{ color:var(--gold-2); }
.footer-bottom{ border-top:1px solid var(--line); padding-top:22px; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; color:var(--muted); font-size:.8rem; }

/* =========================================================
   Cart drawer
   ========================================================= */
.overlay{
  position:fixed; inset:0; background: rgba(8,5,4,.68); backdrop-filter: blur(3px);
  z-index:80; opacity:0; pointer-events:none; transition: opacity var(--dur-m) var(--ease);
}
.overlay.open{ opacity:1; pointer-events:auto; }

.drawer{
  position:fixed; top:0; bottom:0; inset-inline-start:0; width:min(420px, 92vw);
  background: var(--bg-alt); z-index:90; display:flex; flex-direction:column;
  transform: translateX(105%); transition: transform var(--dur-m) var(--ease);
  border-inline-end: 1px solid var(--line); box-shadow: 30px 0 60px rgba(0,0,0,.5);
}
.drawer.open{ transform: translateX(0); }

.drawer-head{
  padding: 20px 22px; border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
}
.drawer-head h3{ font-family:var(--font-head); font-size:1.2rem; margin:0; display:flex; align-items:center; gap:10px; }

.drawer-body{ flex:1; overflow-y:auto; padding: 18px 22px; display:flex; flex-direction:column; gap:14px; }

.cart-item{
  display:flex; gap:14px; padding:14px; background:var(--card); border:1px solid var(--line); border-radius: var(--radius);
  animation: cardIn .35s var(--ease) forwards;
}
.cart-item img{ width:64px; height:64px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); flex-shrink:0; }
.cart-item-info{ flex:1; min-width:0; }
.cart-item-info h4{ margin:0 0 2px; font-family:var(--font-head); font-size:.98rem; }
.cart-item-info .variant{ color:var(--muted); font-size:.78rem; margin-bottom:8px; }
.cart-item-row{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
.cart-item-price{ font-family:var(--font-head); font-weight:800; color:var(--gold-2); font-size:.92rem; }
.remove-btn{ color: var(--danger); background:none; border:none; font-size:.78rem; font-weight:700; text-decoration:underline; padding:4px; }

.cart-empty{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  padding: 60px 10px; color:var(--muted); text-align:center; flex:1;
}
.cart-empty svg{ width:64px; height:64px; color: var(--gold); opacity:.5; }

.drawer-foot{ padding: 20px 22px 26px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:14px; }
.summary-row{ display:flex; justify-content:space-between; font-size:.92rem; color:var(--muted); }
.summary-row.total{ font-family:var(--font-head); font-weight:900; font-size:1.25rem; color:var(--gold-2); border-top:1px dashed var(--line); padding-top:12px; }

/* =========================================================
   Modal (product detail / checkout / confirmation)
   ========================================================= */
.modal-wrap{
  position:fixed; inset:0; z-index:95; display:flex; align-items:flex-end; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity var(--dur-m) var(--ease);
}
.modal-wrap.open{ opacity:1; pointer-events:auto; }
.modal-overlay{ position:absolute; inset:0; background: rgba(8,5,4,.72); backdrop-filter: blur(4px); }
.modal{
  position:relative; z-index:2; width:min(640px, 100%); max-height:92vh; overflow-y:auto;
  background: var(--bg-alt); border:1px solid var(--line); border-radius: 26px 26px 0 0;
  padding: 28px 26px 32px; transform: translateY(40px); transition: transform var(--dur-m) var(--ease);
}
.modal-wrap.open .modal{ transform: translateY(0); }
@media(min-width:720px){
  .modal-wrap{ align-items:center; }
  .modal{ border-radius: 26px; transform: translateY(20px) scale(.97); }
}
.modal-close{ position:absolute; top:16px; inset-inline-start:16px; }
.modal h3{ font-family:var(--font-head); font-size:1.3rem; margin: 0 0 18px; padding-inline-end:40px; }

.pd-media{ width:100%; aspect-ratio:16/10; border-radius: var(--radius); overflow:hidden; margin-bottom:18px; border:1px solid var(--line); }
.pd-media img{ width:100%; height:100%; object-fit:cover; }
.pd-desc{ color:var(--muted); line-height:1.9; margin-bottom:18px; }

/* form */
.form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.form-field label{ font-family:var(--font-head); font-weight:700; font-size:.88rem; color:var(--cream); }
.form-field input, .form-field textarea{
  background: var(--card); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; color:var(--cream); font-size:.95rem; transition:border-color var(--dur-s), box-shadow var(--dur-s);
  resize:vertical;
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-dim); }
.form-field .error{ color: var(--danger); font-size:.78rem; display:none; }
.form-field.invalid input, .form-field.invalid textarea{ border-color:var(--danger); }
.form-field.invalid .error{ display:block; }

.order-summary{ background:var(--card); border:1px solid var(--line); border-radius: var(--radius); padding:16px 18px; margin-bottom:18px; }
.order-summary h4{ font-family:var(--font-head); margin:0 0 10px; font-size:1rem; }
.order-line{ display:flex; justify-content:space-between; font-size:.88rem; color:var(--muted); padding:6px 0; border-bottom:1px dashed var(--line); }
.order-line:last-of-type{ border-bottom:none; }

/* confirmation */
.confirm-wrap{ text-align:center; padding: 10px 0 6px; }
.confirm-check{ width:84px; height:84px; margin:0 auto 18px; }
.confirm-wrap h3{ font-size:1.5rem; margin-bottom:6px; padding-inline-end:0; }
.confirm-wrap > p{ color:var(--muted); margin-bottom:24px; }
.confirm-details{ text-align:right; background:var(--card); border:1px solid var(--line); border-radius: var(--radius); padding:18px; margin-bottom:22px; }
.confirm-details .row{ display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px dashed var(--line); font-size:.92rem; }
.confirm-details .row:last-child{ border-bottom:none; }
.confirm-details .row b{ color:var(--gold-2); font-family:var(--font-head); }
.confirm-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.confirm-actions .btn{ flex:1; }

/* =========================================================
   Toasts
   ========================================================= */
.toast-stack{ position:fixed; bottom:24px; inset-inline-end:24px; z-index:120; display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.toast{
  display:flex; align-items:center; gap:10px; background: var(--card); border:1px solid var(--gold);
  color:var(--cream); padding: 13px 18px; border-radius: 999px; font-size:.88rem; font-weight:700;
  box-shadow: var(--shadow-soft);
  transform: translateY(12px); opacity:0; animation: toastIn .35s var(--ease) forwards;
}
.toast.out{ animation: toastOut .3s var(--ease) forwards; }
.toast svg{ width:18px; height:18px; color: var(--gold-2); flex-shrink:0; }
@keyframes toastIn{ to{ transform:translateY(0); opacity:1; } }
@keyframes toastOut{ to{ transform:translateY(12px); opacity:0; } }

/* =========================================================
   Sticky mobile cart bar
   ========================================================= */
.mobile-cart-bar{
  position:fixed; bottom:16px; inset-inline:16px; z-index:70;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color:#241505; border-radius:999px; padding: 14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-family:var(--font-head); font-weight:800; box-shadow: 0 16px 40px -10px rgba(0,0,0,.6);
  transform: translateY(140%); transition: transform var(--dur-m) var(--ease);
}
.mobile-cart-bar.show{ transform: translateY(0); }

/* =========================================================
   Loading overlay (checkout submit)
   ========================================================= */
.load-spinner{ width:20px; height:20px; border-radius:50%; border:2.5px solid rgba(36,21,5,.3); border-top-color:#241505; animation: spin .7s linear infinite; display:none; }
.load-spinner.show{ display:inline-block; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .about-grid{ grid-template-columns:1fr; }
  .about-media{ order:-1; }
  .contact-grid{ grid-template-columns:1fr; }
}

@media (max-width: 860px){
  .nav-links{
    position:fixed; top:var(--nav-h); right:0; left:0; bottom:0;
    background: var(--bg-alt); flex-direction:column; align-items:stretch; gap:2px;
    padding: 18px; transform: translateY(-8px); opacity:0; pointer-events:none;
    transition: opacity var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
    border-top:1px solid var(--line); overflow-y:auto;
  }
  .nav-links.open{ opacity:1; pointer-events:auto; transform:translateY(0); }
  .nav-links a{ padding:16px; font-size:1.05rem; border-bottom:1px solid var(--line); border-radius:0; }
  .nav-toggle{ display:inline-flex; }
  section{ padding: 64px 0; }
  body{ padding-bottom: 90px; }
}

@media (max-width: 620px){
  .product-media{ width:60%; }
  .menu-toolbar{ flex-direction:column; align-items:stretch; }
  .search-box{ max-width:none; }
  .hero-actions .btn{ flex:1 1 auto; }
}
