/* ============================================================
   OLU OLU Hawaiian BBQ — site styles
   Palette: cream #FFFDF6 / sand #E7DBBE / brown #35210F
            orange #E0641A–#F6A828 / green #2F6B1E / yellow #F3C218
   ============================================================ */

:root {
  --cream: #FFFDF6;
  --sand: #E7DBBE;
  --sand-light: #F3EAD1;
  --sand-line: #EADFC6;
  --sand-border: #E4D8BC;
  --brown: #35210F;
  --brown-dark: #241608;
  --tan: #9A876B;
  --tan-light: #B59B73;
  --taupe: #6E5C43;
  --orange: #E0641A;
  --orange-light: #F6A828;
  --green: #2F6B1E;
  --green-light: #3E8A28;
  --yellow: #F3C218;
  --grad-orange: linear-gradient(180deg, #F6A828, #E0641A);
  --grad-green: linear-gradient(180deg, #3E8A28, #2F6B1E);
  --font-head: 'Baloo 2', system-ui, sans-serif;
  --header-h: 70px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: 'Nunito', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }
button { font-family: inherit; border: 0; cursor: pointer; background: none; padding: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { scroll-margin-top: var(--header-h); }

/* ---------- buttons & pills ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  padding: 13px 24px; border-radius: 13px; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 19px; padding: 16px 32px; border-radius: 15px; }
.btn-primary { background: var(--grad-orange); color: #fff; box-shadow: 0 10px 22px -6px rgba(224,100,26,.55); }
.btn-primary:hover { color: #fff; }
.btn-ghost { background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover { color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--brown); }
.btn-yellow:hover { color: var(--brown); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { color: #fff; }
.btn-outline { border: 2px solid #DBCBA6; color: var(--brown); }
.btn-green { background: var(--grad-green); color: #fff; box-shadow: 0 10px 20px -8px rgba(47,107,30,.5); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  padding: 6px 16px; border-radius: 999px; letter-spacing: .03em;
}
.pill-yellow { background: var(--yellow); color: var(--brown); }
.pill-glass { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.eyebrow { color: var(--green); font-family: var(--font-head); font-weight: 800; font-size: 15px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,246,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-line);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: var(--header-h);
  display: flex; align-items: center; gap: 22px;
}
.brand img { height: 46px; width: auto; }
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--brown); }
.main-nav a:hover { color: var(--orange); }
.main-nav .nav-phone { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-phone { font-size: 14px; font-weight: 800; color: var(--green); white-space: nowrap; }
.btn-order {
  position: relative; display: flex; align-items: center; gap: 9px;
  padding: 10px 22px; border-radius: 13px;
  background: var(--grad-orange); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  box-shadow: 0 6px 14px -4px rgba(224,100,26,.5);
}
.cart-badge {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px;
  background: var(--green); color: #fff; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 3px; border-radius: 2px; background: var(--brown); transition: transform .2s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--brown); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,17,8,.9) 0%, rgba(28,17,8,.62) 45%, rgba(28,17,8,.28) 100%); }
.hero-content {
  position: relative; z-index: 1;
  max-width: 1180px; width: 100%; margin: 0 auto; padding: 70px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.hero h1 { font-weight: 800; font-size: clamp(38px, 6vw, 62px); line-height: .98; color: #fff; max-width: 620px; }
.hero p { font-size: clamp(16px, 2vw, 19px); font-weight: 700; color: #F0E4CA; line-height: 1.4; max-width: 560px; margin: 0; }
.hero-ctas { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }

/* ---------- sections shared ---------- */
.section-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.section-head h2 { font-weight: 800; font-size: clamp(24px, 3.4vw, 30px); }
.section-sub { font-size: 15px; font-weight: 700; color: var(--tan-light); }

/* ---------- popular ---------- */
.popular-section { padding: 44px 0 10px; background: var(--cream); }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.popular-card {
  border: 1.5px solid var(--sand-border); border-radius: 18px; overflow: hidden;
  background: var(--cream); box-shadow: 0 8px 18px -12px rgba(53,33,15,.3);
  transition: transform .15s ease, box-shadow .15s ease;
}
.popular-card:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(53,33,15,.4); }
.popular-photo { position: relative; height: 150px; background: var(--brown); }
.popular-photo img { width: 100%; height: 100%; object-fit: cover; }
.popular-tag {
  position: absolute; top: 9px; left: 9px; color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 11px;
  padding: 3px 10px; border-radius: 999px;
}
.tag-orange { background: var(--orange); }
.tag-green { background: var(--green); }
.tag-brown { background: #B5851F; }
.tag-yellow { background: #B5851F; }
.popular-info { padding: 12px 13px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.popular-name { font-family: var(--font-head); font-weight: 800; font-size: 15px; line-height: 1.1; }
.popular-price { font-size: 13px; font-weight: 800; color: var(--tan); }
.popular-add {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px;
  transition: transform .12s ease;
}
.popular-add:hover { transform: scale(1.08); }

/* ---------- menu ---------- */
.menu-section { padding: 40px 0 52px; background: var(--cream); }
.cat-pills { display: flex; gap: 9px; margin: 4px 0 24px; flex-wrap: wrap; }
.cat-pill {
  padding: 9px 17px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  background: var(--cream); color: #8A7A63; border: 1.5px solid #E1D4B4;
  white-space: nowrap; transition: background .12s, color .12s;
}
.cat-pill:hover { border-color: var(--brown); color: var(--brown); }
.cat-pill.active { background: var(--brown); color: #fff; border-color: var(--brown); }
.cat-pill.catering-pill { color: var(--green); border-color: #CFE2C0; }
.cat-pill.catering-pill.active { background: var(--green); color: #fff; border-color: var(--green); }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 40px; }
.menu-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #F1E7CE; }
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; line-height: 1.15; }
.menu-item-desc { font-size: 13px; font-weight: 600; color: var(--tan); line-height: 1.35; margin-top: 3px; text-wrap: pretty; }
.menu-item-buttons { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.size-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 11px;
  background: var(--cream); border: 1.5px solid #E7D9B8;
  white-space: nowrap; transition: border-color .12s, background .12s;
}
.size-btn:first-child { background: #FBF4E1; }
.size-btn:hover { border-color: var(--orange-light); }
.size-btn .size-label { font-size: 12px; font-weight: 800; color: var(--tan); }
.size-btn .size-price { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--orange); }
.size-btn .size-plus {
  width: 20px; height: 20px; border-radius: 6px; background: var(--grad-orange);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px;
}

/* catering tables */
.catering-note { font-size: 15px; font-weight: 700; color: var(--tan); margin: 0 0 18px; }
.catering-cat { margin-bottom: 22px; }
.catering-cat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.catering-cat-head h3 { font-weight: 800; font-size: 18px; color: var(--orange); }
.catering-cat-head .rule { flex: 1; height: 2px; background: var(--sand-line); }
.catering-size-heads { display: flex; gap: 8px; justify-content: flex-end; }
.catering-size-heads span, .catering-row .tray-price { width: 72px; text-align: right; font-family: var(--font-head); font-weight: 800; }
.catering-size-heads span { font-size: 12px; color: var(--tan); }
.catering-row { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; border-bottom: 1px dashed #EEE4CB; }
.catering-row .tray-name { flex: 1; font-size: 16px; font-weight: 800; min-width: 0; }
.catering-row .tray-price { font-size: 16px; color: var(--green); }

/* ---------- rewards ---------- */
.rewards-section { position: relative; overflow: hidden; padding: 56px 0; background: linear-gradient(120deg, #2F6B1E, #245417); color: #fff; }
.rewards-flower { position: absolute; right: -40px; top: -40px; font-size: 280px; opacity: .08; pointer-events: none; }
.rewards-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.rewards-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.rewards-copy h2 { font-weight: 800; font-size: clamp(30px, 4.4vw, 42px); line-height: 1.02; }
.rewards-copy p { font-size: 17px; font-weight: 600; color: #DCEBD3; line-height: 1.5; max-width: 440px; margin: 0; }
.rewards-steps { display: flex; flex-direction: column; gap: 14px; }
.reward-step {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px; padding: 15px 18px;
}
.reward-icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.reward-step h3 { font-weight: 800; font-size: 18px; }
.reward-step p { font-size: 14px; font-weight: 600; color: #DCEBD3; margin: 0; }

/* ---------- story ---------- */
.story-section { padding: 54px 0; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.story-photo { border-radius: 22px; overflow: hidden; box-shadow: 0 20px 44px -22px rgba(53,33,15,.45); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.story-copy h2 { font-weight: 800; font-size: clamp(28px, 4vw, 38px); line-height: 1.05; }
.story-copy p { font-size: 17px; font-weight: 600; color: var(--taupe); line-height: 1.55; max-width: 460px; margin: 0; }
.story-stats { display: flex; gap: 30px; margin-top: 6px; flex-wrap: wrap; }
.story-stats strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--orange); }
.story-stats span { font-size: 13px; font-weight: 700; color: var(--tan); }

/* ---------- location ---------- */
.location-section { padding: 50px 0 56px; background: var(--sand-light); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; }
.location-card {
  background: var(--cream); border: 1.5px solid var(--sand-border); border-radius: 20px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.location-title { display: flex; align-items: center; gap: 12px; }
.location-pin {
  width: 44px; height: 44px; border-radius: 12px; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.location-title h3 { font-weight: 800; font-size: 24px; }
.location-address { font-size: 18px; font-weight: 800; line-height: 1.4; margin: 0; }
.location-hours { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; color: var(--green); margin: 0; }
.dot-open { width: 9px; height: 9px; border-radius: 50%; background: var(--green-light); display: inline-block; }
.location-phone { font-size: 20px; font-weight: 800; color: var(--orange); }
.location-ctas { display: flex; gap: 10px; margin-top: 6px; width: 100%; }
.location-ctas .btn-primary { flex: 1; }
.location-map { border-radius: 20px; overflow: hidden; border: 1.5px solid var(--sand-border); min-height: 320px; background: #DCE6D3; }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- catering CTA ---------- */
.catering-section { padding: 54px 0; background: var(--brown); color: #fff; }
.catering-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 38px; align-items: center; }
.catering-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.catering-copy h2 { font-weight: 800; font-size: clamp(30px, 4.2vw, 40px); line-height: 1.02; }
.catering-copy p { font-size: 17px; font-weight: 600; color: #EBDFC6; line-height: 1.5; max-width: 440px; margin: 0; }
.catering-photo { border-radius: 22px; overflow: hidden; background: #1c1108; height: 280px; }
.catering-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- footer ---------- */
.site-footer { background: var(--brown-dark); color: #EBDFC6; padding: 42px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-brand img { height: 60px; width: auto; background: #F7F0DD; padding: 6px 10px; border-radius: 12px; }
.footer-brand p { font-size: 14px; font-weight: 600; color: #B7A487; line-height: 1.5; max-width: 280px; margin: 0; }
.footer-address { color: #EBDFC6 !important; font-weight: 800 !important; }
.footer-phone { color: var(--yellow) !important; font-weight: 800 !important; }
.footer-phone a { color: var(--yellow); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-weight: 800; font-size: 16px; color: #fff; }
.footer-col a { font-size: 14px; font-weight: 700; color: #B7A487; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; font-weight: 700; color: #8C7A5F;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #8C7A5F; }
.footer-legal a:hover { color: #fff; }

/* ---------- cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(28,17,8,.5); opacity: 0; transition: opacity .2s; }
.cart-overlay.show { opacity: 1; }
.cart-drawer {
  position: fixed; z-index: 201; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw;
  background: var(--cream); box-shadow: -20px 0 50px -20px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 22px 24px; border-bottom: 1px solid var(--sand-line);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h2 { font-weight: 800; font-size: 24px; }
.cart-close {
  width: 36px; height: 36px; border-radius: 10px; background: #F1E7CE;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #8A7A63;
}
.cart-body { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 13px; align-items: flex-start; border-bottom: 1px solid #F1E7CE; padding-bottom: 14px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.cart-item-detail { font-size: 13px; font-weight: 700; color: var(--tan-light); line-height: 1.35; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 8px; background: #F1E7CE;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; color: #8A7A63;
}
.qty-btn.inc { color: var(--green); }
.qty-num { font-family: var(--font-head); font-weight: 800; font-size: 16px; min-width: 16px; text-align: center; }
.cart-item-total { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--orange); min-width: 56px; text-align: right; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--tan-light); }
.cart-empty .cart-empty-icon { font-size: 52px; margin-bottom: 12px; }
.cart-empty h3 { font-weight: 800; font-size: 19px; color: #8A7A63; }
.cart-empty p { font-size: 14px; font-weight: 700; margin: 4px 0 0; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--sand-line); background: #FBF4E1; }
.cart-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; color: var(--taupe); margin-bottom: 6px; }
.cart-total { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--brown); margin: 10px 0 16px; }
.btn-checkout { width: 100%; font-size: 19px; padding: 16px; border-radius: 14px; }
.cart-points { text-align: center; font-size: 13px; font-weight: 700; color: var(--tan); margin: 10px 0 0; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 300;
  background: var(--brown); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { gap: 6px 28px; }
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 62px; }
  .brand img { height: 40px; }

  /* mobile nav */
  .main-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--sand-line);
    box-shadow: 0 20px 30px -18px rgba(53,33,15,.35);
    display: none; padding: 6px 0 10px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 24px; border-bottom: 1px solid #F5EDD8; font-size: 17px; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .nav-phone { display: block; color: var(--green); }
  .hamburger { display: flex; }
  .btn-order { padding: 10px 16px; }
  .btn-order-label { display: none; }

  .hero { min-height: 480px; align-items: flex-end; }
  .hero-shade { background: linear-gradient(180deg, rgba(28,17,8,.25) 0%, rgba(28,17,8,.35) 40%, rgba(28,17,8,.92) 100%); }
  .hero-content { padding: 60px 20px 36px; }
  .hero-ctas .btn-lg { font-size: 17px; padding: 14px 24px; }

  .container { padding: 0 18px; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; gap: 8px; }
  .menu-item-buttons { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: flex-start; }

  .cat-pills {
    flex-wrap: nowrap; overflow-x: auto; margin-left: -18px; margin-right: -18px;
    padding: 2px 18px 8px; scrollbar-width: none;
  }
  .cat-pills::-webkit-scrollbar { display: none; }

  .rewards-grid, .story-grid, .location-grid, .catering-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 24px; }
  .catering-photo { height: 220px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .catering-size-heads span, .catering-row .tray-price { width: 54px; font-size: 14px; }
  .catering-row .tray-name { font-size: 14px; }

  /* cart becomes bottom sheet */
  .cart-drawer {
    top: auto; left: 0; width: 100%; height: min(86vh, 680px);
    border-radius: 26px 26px 0 0;
    transform: translateY(100%);
  }
  .cart-drawer.open { transform: translateY(0); }
}

@media (max-width: 480px) {
  .popular-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .popular-photo { height: 110px; }
  .hero h1 { font-size: 34px; }
  .story-stats { gap: 20px; }
  .location-ctas { flex-wrap: wrap; }
}

/* ---------- guest info (online checkout) ---------- */
.guest-form { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 12px; }
.guest-label { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tan); }
.guest-input {
  padding: 11px 13px; border: 1.5px solid var(--sand-border); border-radius: 12px;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--brown);
  background: #fff; width: 100%;
}
.guest-input:focus { outline: none; border-color: var(--orange); }
.guest-input.invalid { border-color: #C0392B; }
.btn-checkout[disabled] { opacity: .6; cursor: wait; }

/* ---------- order confirmation ---------- */
.order-confirm { text-align: center; padding: 36px 16px; }
.order-confirm .confirm-icon { font-size: 44px; margin-bottom: 6px; }
.order-confirm h3 { font-family: var(--font-head); font-size: 24px; color: var(--brown); margin: 0 0 4px; }
.order-confirm .confirm-sub { color: var(--taupe); font-weight: 700; margin: 0 0 18px; }
.pickup-num-label { font-size: 12px; font-weight: 800; letter-spacing: 2px; color: var(--tan); }
.pickup-num { font-family: var(--font-head); font-size: 68px; font-weight: 800; line-height: 1.1; color: var(--green); }
.confirm-meta { color: var(--taupe); font-weight: 700; font-size: 14px; margin: 10px 0 6px; }
.confirm-pay {
  display: inline-block; background: var(--sand-light); border-radius: 999px;
  padding: 5px 14px; font-size: 13px; font-weight: 800; color: var(--green); margin-bottom: 8px;
}
.order-confirm .btn { margin-top: 14px; }
