/* ============================================================
   LAVAN TRADITIONAL MEALS — shared styles
   Palette: smoked black, brushstroke red, amber gold, clay,
   bone cream, muted olive (traditional greens)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Karla:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --black: #16110c;
  --black-2: #1e1712;
  --line: #35291d;
  --red: #a3271b;
  --red-dark: #6f1911;
  --red-bright: #c9351f;
  --gold: #dd9e2e;
  --gold-light: #f0c667;
  --clay: #9a5528;
  --olive: #63713f;
  --cream: #f3e8d5;
  --cream-dim: #cdbfa8;
  --smoke: #6b6259;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Karla', sans-serif;

  --container: 1120px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 30%, #fff 0.5px, transparent 0.5px),
                     radial-gradient(circle at 70% 65%, #fff 0.5px, transparent 0.5px);
  background-size: 3px 3px, 5px 5px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  color: #fbf3e4;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1em; color: var(--cream-dim); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.95rem;
}

/* ---------- header / nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 17, 12, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
}

.brand .mark { font-size: 1.7rem; color: var(--cream); letter-spacing: 0.03em; }
.brand .sub { font-family: var(--font-body); font-size: 0.72rem; color: var(--gold); font-weight: 700; letter-spacing: 0.14em; }

nav.links {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav.links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-dim);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}

nav.links a:hover, nav.links a.active {
  color: var(--gold-light);
  border-color: var(--red-bright);
}

/* ---------- nav dropdown (Menu > Launch Day / Weekly) ---------- */
.nav-dropdown { position: relative; }

.dropdown-trigger {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-dim);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dropdown-trigger .caret { font-size: 0.68em; transition: transform 0.15s ease; }
.dropdown-trigger:hover, .nav-dropdown.open .dropdown-trigger, .dropdown-trigger.active {
  color: var(--gold-light);
  border-color: var(--red-bright);
}
.nav-dropdown.open .dropdown-trigger .caret { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  z-index: 80;
}
.nav-dropdown.open .dropdown-menu { display: flex; }
.dropdown-menu a {
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-dim);
  border-bottom: none !important;
}
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--gold-light); background: rgba(221,158,46,0.08); }

@media (max-width: 760px) {
  .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--line); margin: 4px 0 4px 28px; border-radius: 0; }
  .dropdown-trigger { width: 100%; justify-content: space-between; padding: 16px 28px; border-bottom: 1px solid var(--line); }
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff8ec;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid #d5573f;
}
.cart-pill .count {
  background: var(--black);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.8rem;
}

.nav-toggle { display: none; }

@media (max-width: 760px) {
  nav.links { position: fixed; inset: 64px 0 auto 0; background: var(--black-2); flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
  nav.links.open { max-height: 400px; }
  nav.links a { width: 100%; padding: 16px 28px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; background: none; border: 1px solid var(--line); color: var(--cream); font-size: 1.3rem; padding: 6px 12px; border-radius: 4px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--red-bright); color: #fff6ea; border-color: #e05a3f; }
.btn-primary:hover { background: var(--red); }

.btn-gold { background: var(--gold); color: #241804; border-color: var(--gold-light); }
.btn-gold:hover { background: var(--gold-light); }

.btn-outline { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ---------- banner (torn brushstroke look) ---------- */
.banner {
  background: linear-gradient(100deg, var(--red-dark), var(--red) 45%, var(--red-dark));
  color: #fff8ea;
  padding: 10px 22px;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  transform: skewX(-2deg);
  border-left: 4px solid var(--gold);
}
.banner span { display: inline-block; transform: skewX(2deg); }

/* ---------- divider ---------- */
.zigzag {
  height: 10px;
  background-image: linear-gradient(135deg, var(--gold) 25%, transparent 25%),
                     linear-gradient(225deg, var(--gold) 25%, transparent 25%);
  background-position: 0 0;
  background-size: 16px 16px;
  opacity: 0.65;
}

.rule { border: none; border-top: 1px dashed var(--line); margin: 2.2em 0; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 60px;
  overflow: hidden;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero .kicker {
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

.hero h1 { color: var(--cream); }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-copy p { font-size: 1.12rem; max-width: 46ch; margin-top: 18px; }

.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(221,158,46,0.18), transparent 55%),
    repeating-linear-gradient(135deg, #1c150f 0 2px, #1a130e 2px 4px),
    linear-gradient(160deg, #241a12, #120d09);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(22,17,12,0) 55%, rgba(22,17,12,0.65) 100%);
  pointer-events: none;
}
.hero-art .hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  background: rgba(22,17,12,0.82);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ---------- homepage gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff8ea;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
}
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- feature card (why choose us) ---------- */
.feature-card { display: flex; gap: 14px; align-items: flex-start; }
.feature-card .fnum {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.feature-card h4 { font-family: var(--font-body); font-size: 1.02rem; color: var(--cream); font-weight: 800; margin-bottom: 4px; }
.feature-card p { margin: 0; font-size: 0.92rem; }

/* ---------- info strip ---------- */
.info-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.info-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .info-strip .wrap { grid-template-columns: 1fr; } }

.info-item { display: flex; align-items: center; gap: 14px; }
.info-item .ico {
  width: 46px; height: 46px; flex: none;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.info-item .label { font-size: 0.8rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.info-item .value { font-weight: 800; color: var(--gold-light); font-size: 1.02rem; }

/* ---------- sections ---------- */
section { padding: 64px 0; position: relative; z-index: 1; }
.section-head { margin-bottom: 40px; max-width: 60ch; }
.section-head .eyebrow { display: block; margin-bottom: 10px; }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.panel {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

/* ---------- menu list ---------- */
.menu-block { margin-bottom: 56px; }
.menu-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.menu-block-head h2 { font-size: 1.7rem; }
.menu-block-note { color: var(--gold-light); font-size: 0.85rem; font-weight: 700; }

/* legacy simple row (kept for weekly-menu badges) */
.dish {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dotted var(--line);
}
.dish:last-child { border-bottom: none; }
.dish .ico { font-size: 1.6rem; text-align: center; }
.dish .name { font-weight: 800; color: var(--cream); font-size: 1.06rem; }
.dish .alt { color: var(--gold-light); font-weight: 600; font-size: 0.86rem; }
.dish .desc { color: var(--cream-dim); font-size: 0.9rem; margin-top: 2px; }
.dish .price { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-light); white-space: nowrap; }

/* ---------- menu-card grid (with photo) ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card .thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  background: #0d0a07;
  border-bottom: 1px solid var(--line);
}
.menu-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.menu-card .name { font-weight: 800; color: var(--cream); font-size: 1.05rem; line-height: 1.3; }
.menu-card .alt { color: var(--gold-light); font-weight: 600; font-size: 0.84rem; display: block; margin-top: 2px; }
.menu-card .desc { color: var(--cream-dim); font-size: 0.87rem; }
.menu-card .options { display: flex; flex-direction: column; gap: 10px; }

.menu-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.menu-card-footer .qty-row { gap: 10px; }
.menu-card-footer .add-btn {
  padding: 11px 18px;
  white-space: nowrap;
  min-width: 132px;
  justify-content: center;
}

/* simple grid card without options (meat-only / treats) */
.menu-card.compact .menu-card-body { padding: 16px 18px 18px; gap: 10px; }

/* ---------- order option card ---------- */
.order-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-card h3 { font-size: 1.15rem; color: var(--cream); font-family: var(--font-body); font-weight: 800; }
.order-card .price-tag { font-family: var(--font-display); color: var(--gold-light); font-size: 1.5rem; }
.field-row { display: flex; flex-direction: column; gap: 6px; }
.field-row label { font-size: 0.8rem; color: var(--cream-dim); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
select, input[type="text"], input[type="tel"], input[type="email"], textarea, input[type="number"] {
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 11px 12px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
}
select:focus, input:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }

.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-row button {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black); border: 1px solid var(--line); color: var(--gold-light);
  font-size: 1.1rem; cursor: pointer;
}
.qty-row .qty-val { min-width: 24px; text-align: center; font-weight: 800; }

/* ---------- cart drawer / page ---------- */
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px dotted var(--line);
}
.cart-line .name { font-weight: 800; }
.cart-line .meta { color: var(--cream-dim); font-size: 0.85rem; margin-top: 3px; }
.cart-line .remove { color: var(--gold-light); font-size: 0.82rem; font-weight: 700; cursor: pointer; background: none; border: none; padding: 0; margin-top: 8px; }
.cart-line .lprice { font-family: var(--font-display); color: var(--gold-light); font-size: 1.1rem; text-align: right; }

.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--cream-dim); }
.summary-row.total { color: var(--cream); font-weight: 800; font-size: 1.2rem; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; }
.summary-row.total .amt { font-family: var(--font-display); color: var(--gold-light); font-size: 1.5rem; }

/* ---------- payment method cards ---------- */
.pay-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .pay-options { grid-template-columns: 1fr; } }
.pay-card {
  border: 1px solid var(--line);
  background: var(--black-2);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.pay-card:hover { border-color: var(--gold); }
.pay-card.selected { border-color: var(--gold); background: #241a10; box-shadow: 0 0 0 1px var(--gold) inset; }
.pay-card input { display: none; }
.pay-card .pname { font-weight: 800; font-size: 1.05rem; color: var(--cream); display: flex; align-items: center; gap: 10px; }
.pay-card .pdesc { color: var(--cream-dim); font-size: 0.85rem; margin-top: 6px; }

/* ---------- footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 46px 0 30px;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site h4 { font-family: var(--font-body); font-size: 0.85rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
footer.site p, footer.site a { color: var(--cream-dim); font-size: 0.92rem; }
footer.site a:hover { color: var(--gold-light); }
.foot-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--smoke); font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: #221703;
  font-weight: 800;
  padding: 13px 22px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  font-size: 0.92rem;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ---------- misc ---------- */
.badge {
  display: inline-block;
  background: var(--olive);
  color: #eef2e2;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.empty-state { text-align: center; padding: 70px 20px; color: var(--cream-dim); }
.empty-state .big-ico { font-size: 3rem; margin-bottom: 14px; }

.page-hero {
  padding: 56px 0 30px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { display: block; margin-bottom: 10px; }

.step-track { display: flex; gap: 10px; align-items: center; margin-bottom: 34px; flex-wrap: wrap; }
.step-track .step { font-size: 0.82rem; font-weight: 700; color: var(--smoke); }
.step-track .step.active { color: var(--gold-light); }
.step-track .sep { color: var(--line); }

/* ---------- back to top ---------- */
#back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #d5573f;
  background: var(--red-bright);
  color: #fff6ea;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
}
#back-to-top:hover { background: var(--red); }
#back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (max-width: 760px) {
  #back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; font-size: 1.1rem; }
}

/* ---------- admin: login ---------- */
.admin-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.login-card .brand { justify-content: center; margin-bottom: 6px; }
.login-card .lead {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin: 6px 0 28px;
}
.login-card form { display: flex; flex-direction: column; gap: 18px; }
.login-card .btn { margin-top: 4px; }
.login-error {
  display: none;
  background: rgba(163,39,27,0.15);
  border: 1px solid var(--red);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.login-error.show { display: block; }
.demo-hint {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 0.78rem;
  color: var(--smoke);
  text-align: center;
  line-height: 1.6;
}
.back-to-site { text-align: center; margin-top: 18px; }
.back-to-site a { font-size: 0.85rem; color: var(--cream-dim); font-weight: 700; }
.back-to-site a:hover { color: var(--gold-light); }

/* ---------- admin: dashboard shell ---------- */
.admin-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.admin-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.admin-header .tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  margin-left: 10px;
}
.admin-header nav { display: flex; align-items: center; gap: 18px; }

/* ---------- admin: stat cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.stat-card .stat-label {
  font-size: 0.76rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.stat-card .stat-value {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.9rem;
  margin-top: 8px;
}

/* ---------- admin: notice banner ---------- */
.notice {
  background: rgba(221,158,46,0.08);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--cream-dim);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice .n-ico { font-size: 1.15rem; flex: none; }
.notice strong { color: var(--cream); }

/* ---------- admin: simple table ---------- */
.admin-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.admin-table th {
  text-align: left;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--smoke);
  font-weight: 800;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.admin-table td {
  padding: 12px;
  border-bottom: 1px dotted var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}
.admin-table td.num { font-family: var(--font-display); color: var(--gold-light); }
@media (max-width: 700px) {
  .admin-table thead { display: none; }
  .admin-table tr { display: block; border-bottom: 1px solid var(--line); padding: 10px 0; }
  .admin-table td { display: flex; justify-content: space-between; gap: 12px; border-bottom: none; padding: 5px 0; }
  .admin-table td::before { content: attr(data-label); color: var(--smoke); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; }
}

/* ---------- small-screen refinements ---------- */
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  section { padding: 46px 0; }
  .cart-line {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .cart-line .lprice { text-align: left; }
  .banner { font-size: 1.05rem; padding: 8px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- two-step checkout ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: start;
}
.checkout-main { min-width: 0; }
.checkout-summary-wrap {
  position: sticky;
  top: 104px;
  align-self: start;
}
.checkout-step-panel { display: none; }
.checkout-step-panel.active { display: block; }
.checkout-progress {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.checkout-progress-step {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--cream-dim);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: default;
}
.checkout-progress-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-grid;
  place-items: center;
  background: var(--black-2);
}
.checkout-progress-step.active { color: var(--cream); }
.checkout-progress-step.active span,
.checkout-progress-step.complete span {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}
.checkout-progress-line { height: 1px; background: var(--line); }
.checkout-actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-top: 26px; }
.checkout-actions .btn-primary { width: 100%; }
.pay-options { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pay-card { display: block; width: 100%; }

@media (max-width: 820px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary-wrap { position: static; }
  .checkout-progress { grid-template-columns: 1fr; gap: 10px; }
  .checkout-progress-line { display: none; }
  .checkout-actions { grid-template-columns: 1fr; }
}

/* Sold-out frontend state */
.add-btn:disabled,.add-btn[aria-disabled="true"]{opacity:.5;cursor:not-allowed;filter:grayscale(.25);pointer-events:none}
.qty-row button:disabled{opacity:.45;cursor:not-allowed;pointer-events:none}


/* v1.19: keep the full homepage poster visible without cropping */
.hero-art{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.hero-art img{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain !important;
  object-position:center center !important;
  aspect-ratio:auto !important;
}


/* Homepage menu ticker */
.menu-ticker {
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 52px;
  overflow: hidden;
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 25;
}
.menu-ticker-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.menu-ticker-window {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.menu-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.menu-ticker-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}
.menu-ticker-set a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 26px;
  color: var(--cream-dim);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.menu-ticker-set a:hover,
.menu-ticker-set a:focus-visible {
  color: var(--gold-light);
  background: rgba(221,158,46,0.08);
  outline: none;
}
.menu-ticker-sep {
  color: var(--gold);
  opacity: .55;
  font-size: .85rem;
}
  to { transform: translateX(-50%); }
}
@media (max-width: 760px) {
  .menu-ticker { min-height: 46px; }
  .menu-ticker-label {
    padding: 0 16px;
    font-size: .82rem;
  }
  .menu-ticker-set a {
    min-height: 44px;
    padding: 0 18px;
    font-size: .84rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-ticker-track { transform: translate3d(0,0,0); }
}


/* v1.60: Launch Day drinks notice + directions section above footer */
.launch-drinks-note{background:#14532d!important;color:#fff!important;padding:16px 20px!important;text-align:center!important;font-weight:800;font-size:clamp(.95rem,2vw,1.08rem);line-height:1.45;width:100%;box-sizing:border-box}
.launch-drinks-note .wrap{text-align:center!important;margin-left:auto!important;margin-right:auto!important}
.lavan-directions-section{background:#f7f3ea;padding:28px 16px;text-align:center;border-top:1px solid rgba(0,0,0,.08)}
.lavan-directions-section .wrap{display:flex;justify-content:center;align-items:center}
.lavan-directions-button{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 22px;border-radius:999px;background:#f5c542;color:#17130f!important;font-weight:800;text-decoration:none!important;box-shadow:0 6px 18px rgba(0,0,0,.16);transition:transform .18s ease,filter .18s ease}
.lavan-directions-button:hover{transform:translateY(-2px);filter:brightness(1.03)}
@media(max-width:600px){.lavan-directions-section{padding:22px 14px}.lavan-directions-button{width:min(100%,340px);padding:12px 18px}}


/* v1.61: compact directions + content-width drinks banner */
.launch-drinks-note{background:transparent!important;padding:18px 0 0!important;width:100%;box-sizing:border-box}
.launch-drinks-note .wrap{max-width:var(--container);margin:0 auto;padding:0 28px}
.launch-drinks-note-inner{background:#14532d;color:#fff;text-align:center;font-weight:800;font-size:clamp(1.08rem,2.2vw,1.22rem);line-height:1.45;padding:18px 22px;border-radius:12px}
.lavan-directions-section{background:transparent!important;padding:20px 16px!important;text-align:center;border:0!important;margin:0!important}
.lavan-directions-section .wrap{display:flex;justify-content:center;align-items:center}
.lavan-directions-button{font-size:1.12rem!important;line-height:1.2;padding:14px 24px!important}
.lavan-directions-section + footer.site{margin-top:0!important}
@media(max-width:600px){.launch-drinks-note .wrap{padding:0 16px}.launch-drinks-note-inner{padding:16px 16px;font-size:1.08rem}.lavan-directions-section{padding:18px 14px!important}.lavan-directions-button{font-size:1.05rem!important}}
