:root {
  --gold: #C8922A; --gold-light: #E8B84B;
  --black: #000; --bg: #0a0a0a; --bg2: #111; --bg3: #1a1a1a; --bg4: #252525;
  --text: #fff; --text-dim: #888; --text-muted: #444;
  --red: #e03434; --green: #3cb97a; --blue: #3a7bd5;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', sans-serif;
  --sep: rgba(84,84,88,.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── Header ── */
.site-header { background: #000; border-bottom: 1px solid #1a1a1a; position: sticky; top: 0; z-index: 100; }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1100px; margin: 0 auto; gap: 12px; }
.header-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header-logo { height: 44px; width: auto; }
.header-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 7px 14px; border-radius: 8px; color: var(--text-dim); font-size: 0.88rem; font-weight: 500; transition: all .15s; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg3); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; font-weight: 700; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { background: var(--bg2); border-top: 1px solid var(--bg4); padding: 8px; display: flex; flex-direction: column; }
.nav-mobile-link { padding: 11px 16px; color: var(--text-dim); font-size: 0.9rem; border-radius: 8px; }
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--text); background: var(--bg3); }
.hidden { display: none !important; }
@media (max-width: 640px) { .main-nav { display: none; } .nav-burger { display: flex; } }

/* ── Footer ── */
.site-footer { background: #000; border-top: 1px solid #1a1a1a; padding: 40px 20px 0; margin-top: 60px; }
.site-footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; max-width: 1100px; margin: 0 auto; padding-bottom: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo { width: 60px; height: 60px; border-radius: 8px; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: var(--gold); }
.footer-brand-sub { font-size: 0.8rem; color: var(--text-dim); }
.footer-info { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-section { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; }
.footer-section strong { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-hours { display: flex; flex-direction: column; gap: 3px; }
.footer-hours-row { display: flex; gap: 12px; }
.footer-hours-row .days { color: var(--text-dim); min-width: 140px; }
.footer-hours-row .hrs { color: var(--text); }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 0.82rem; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: center; padding: 14px; border-top: 1px solid var(--bg4); font-size: 0.72rem; color: var(--text-muted); }
.footer-copy a { color: var(--text-muted); }

/* ── Sections ── */
.section { padding: 60px 20px; }
.section-alt { background: var(--bg2); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
.section-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 640px) { .section-two-col { grid-template-columns: 1fr; } }

/* ── Hero ── */
.hero { background: radial-gradient(ellipse at center top, #1a0e00 0%, var(--bg) 70%); padding: 80px 20px; text-align: center; }
.hero-inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-logo { width: 100px; height: 100px; border-radius: 16px; margin-bottom: 8px; }
.hero-title { font-size: 3rem; font-weight: 800; line-height: 1; }
@media (max-width: 480px) { .hero-title { font-size: 2.2rem; } }
.hero-claim { font-size: 1.2rem; color: var(--gold); font-weight: 600; }
.hero-location { font-size: 1.3rem; color: var(--lbl); font-weight: 600; letter-spacing: .03em; }
.hero-delivery-hint { font-size: 0.8rem; color: var(--text-dim); margin-top: -4px; }
.btn-hero { display: inline-block; margin-top: 16px; padding: 16px 36px; background: var(--gold); color: var(--black); border-radius: 50px; font-size: 1.1rem; font-weight: 800; transition: background .15s, transform .15s; box-shadow: 0 4px 24px rgba(200,146,42,0.4); }
.btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--black); }
.paused-banner { margin-top: 16px; background: rgba(224,52,52,0.1); border: 1px solid var(--red); color: var(--red); padding: 12px 20px; border-radius: 8px; font-size: 0.9rem; }
.closed-banner { display: flex; align-items: flex-start; gap: 16px; background: rgba(18,18,18,0.95); border: 1px solid #2a2a2a; border-left: 4px solid var(--gold); border-radius: 10px; padding: 18px 22px; margin: 0 auto 24px; max-width: 640px; backdrop-filter: blur(8px); }
.closed-banner-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.closed-banner strong { display: block; color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.closed-banner p { color: var(--text-dim); font-size: 0.88rem; margin: 0; line-height: 1.5; }

/* ── Highlights ── */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.highlight-card { background: var(--bg3); border: 1px solid var(--bg4); border-radius: var(--radius); padding: 24px 16px; text-align: center; text-decoration: none; color: var(--text); transition: border-color .15s, transform .15s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.highlight-card:hover { border-color: var(--gold); transform: translateY(-3px); color: var(--text); }
.highlight-icon { font-size: 2.5rem; }
.highlight-name { font-size: 1rem; font-weight: 700; }
.highlight-price { font-size: 0.88rem; color: var(--gold); font-weight: 600; }
@media (max-width: 640px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 10px; }
  .highlight-card { flex-direction: row; text-align: left; padding: 14px 18px; gap: 16px; }
  .highlight-icon { font-size: 2.2rem; flex-shrink: 0; }
}

/* ── Hours ── */
.hours-table { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid var(--bg4); }
.hours-days { color: var(--text-dim); }
.hours-time { font-weight: 600; color: var(--text); text-align: right; }

/* ── Delivery zones (Homepage) ── */
.delivery-zones-list { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.dz-row { padding: 12px 0; border-bottom: .5px solid var(--bg4); }
.dz-row:last-child { border-bottom: none; }
.dz-name { display: flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.dz-dur { font-size: .72rem; font-weight: 500; color: var(--text-dim); background: var(--bg3); padding: 2px 8px; border-radius: 10px; white-space: nowrap; }
.dz-fee { font-size: .88rem; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.dz-locs { font-size: .82rem; color: var(--text-dim); line-height: 1.5; }
.dz-min { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

/* ── Map ── */
.map-wrap { border-radius: 8px; overflow: hidden; border: 1px solid var(--bg4); }
.map-leaflet { height: 220px; }
.map-address { font-size: 0.82rem; color: var(--text-dim); margin-top: 8px; }

/* ── Contact ── */
.contact-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.contact-card { background: var(--bg3); border: 1px solid var(--bg4); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); text-decoration: none; transition: border-color .15s; }
.contact-card:hover { border-color: var(--gold); color: var(--text); }

/* ── Buttons ── */
.btn-primary { display: inline-block; padding: 13px 24px; background: var(--gold); color: var(--black); border: none; border-radius: var(--radius); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background .15s; text-decoration: none; text-align: center; }
.btn-primary:hover { background: var(--gold-light); color: var(--black); }
.btn-primary:disabled { background: var(--text-muted); color: var(--text-dim); cursor: not-allowed; }
.btn-outline { display: inline-block; padding: 11px 22px; border: 1px solid var(--gold); color: var(--gold); border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all .15s; }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── Legal pages ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 40px 20px 80px; }
.legal-page h1 { font-size: 1.8rem; font-weight: 800; color: var(--gold); margin-bottom: 28px; }
.legal-page h2 { font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin: 28px 0 10px; }
.legal-page h3 { font-size: 0.95rem; font-weight: 700; margin: 18px 0 6px; }
.legal-page p { font-size: 0.88rem; color: #ccc; line-height: 1.7; margin-bottom: 10px; }
.legal-page a { color: var(--gold); }
.legal-hint { background: rgba(200,146,42,0.08); border-left: 3px solid var(--gold); padding: 10px 14px; border-radius: 0 6px 6px 0; font-size: 0.82rem; color: var(--text-dim); margin-bottom: 28px; }
.legal-page mark { background: rgba(200,146,42,0.2); color: var(--gold-light); padding: 1px 4px; border-radius: 3px; font-style: normal; }

/* ── Paused page ── */
.paused-page { text-align: center; padding: 80px 20px; }
.paused-page .paused-icon { font-size: 4rem; margin-bottom: 16px; }
.paused-page h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.paused-page p { color: var(--text-dim); }

/* ── Confirm page ── */
.confirm-outer { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.confirm-state { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.confirm-check { font-size: 4rem; }
.confirm-title { font-size: 1.6rem; font-weight: 700; color: var(--green); }
.confirm-sub { color: var(--text-dim); font-size: 0.85rem; }
.confirm-num { font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.confirm-card { background: var(--bg3); border: 1px solid var(--bg4); border-radius: var(--radius); padding: 16px 20px; max-width: 340px; width: 100%; font-size: 0.88rem; line-height: 1.6; color: var(--text-dim); }
.confirm-card strong { color: var(--text); }
.confirm-card a { color: var(--gold); }
.spinner { width: 40px; height: 40px; border: 3px solid rgba(200,146,42,0.2); border-top-color: var(--gold); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Order App ── */
#order-root { min-height: 70vh; }
.order-loading { text-align: center; padding: 80px 20px; color: var(--text-dim); }

/* Category tabs */
.category-tabs { background: var(--bg2); border-bottom: 1px solid #1f1f1f; display: flex; gap: 4px; padding: 8px 12px; overflow-x: auto; scrollbar-width: none; position: sticky; top: 69px; z-index: 99; }
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab { flex-shrink: 0; padding: 6px 14px; border-radius: 20px; background: var(--bg3); border: 1px solid transparent; color: var(--text-dim); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all .15s; white-space: nowrap; }
.cat-tab.active, .cat-tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Products */
.menu-container { padding: 16px; padding-bottom: 120px; max-width: 700px; margin: 0 auto; }
.category-section { margin-bottom: 32px; }
.category-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--bg4); }
.category-header .cat-icon { font-size: 1.4rem; }
.category-header h2 { font-size: 1.1rem; font-weight: 700; }
.product-list { display: flex; flex-direction: column; gap: 10px; }
.product-card { background: var(--bg2); border: .5px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.product-card:hover { border-color: rgba(200,146,42,.5); box-shadow: 0 2px 12px rgba(0,0,0,.3); }
.product-img { width: 64px; height: 64px; flex-shrink: 0; border-radius: 10px; object-fit: cover; background: var(--bg3); }
.product-info { flex: 1; min-width: 0; }
.product-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.product-desc { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 6px; line-height: 1.4; }
.product-price { font-size: 1rem; font-weight: 700; color: var(--gold); }
.product-price .from { font-size: 0.72rem; color: var(--text-dim); font-weight: 400; margin-right: 3px; }
.product-add { flex-shrink: 0; width: 36px; height: 36px; background: var(--gold); color: var(--black); border: none; border-radius: 50%; font-size: 1.4rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; line-height: 1; }
.product-add:hover { background: var(--gold-light); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 200; display: flex; align-items: flex-end; justify-content: center; }
@media (min-width: 600px) { .modal-overlay { align-items: center; } }
.modal { background: var(--bg2); border-radius: 16px 16px 0 0; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 20px; }
@media (min-width: 600px) { .modal { border-radius: 16px; } }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.modal-title { font-size: 1.1rem; font-weight: 700; }
.modal-close { background: var(--bg4); border: none; color: var(--text); width: 28px; height: 28px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.option-group { margin-bottom: 16px; }
.option-group-label { font-size: 0.8rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.required-badge { background: var(--red); color: #fff; font-size: 0.65rem; padding: 1px 5px; border-radius: 4px; }
.pickup-only-badge { background: rgba(200,146,42,.18); color: var(--gold); border: 1px solid rgba(200,146,42,.45); font-size: 0.62rem; font-weight: 600; padding: 1px 6px; border-radius: 4px; white-space: nowrap; vertical-align: 2px; }
.pickup-only-warn { color: var(--gold); font-size: .8rem; }
.choice-list { display: flex; flex-direction: column; gap: 6px; }
.choice-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg3); border: 1px solid var(--bg4); border-radius: 8px; cursor: pointer; transition: border-color .15s; }
.choice-item:hover, .choice-item.selected { border-color: var(--gold); background: rgba(200,146,42,.1); }
.choice-item input { accent-color: var(--gold); }
.choice-name { flex: 1; font-size: 0.88rem; }
.choice-price { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.modal-note { margin-top: 4px; }
.modal-note label { display: block; font-size: 0.78rem; color: var(--text-dim); margin-bottom: 4px; }
.modal-note input { width: 100%; background: var(--bg3); border: 1px solid var(--bg4); border-radius: 8px; color: var(--text); padding: 8px 12px; font-size: 0.88rem; font-family: var(--font); }
.modal-footer { margin-top: 20px; }
.qty-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 14px; }
.qty-btn { width: 36px; height: 36px; background: var(--bg4); border: none; color: var(--text); font-size: 1.2rem; border-radius: 50%; cursor: pointer; }
.qty-btn:hover { background: var(--gold); color: var(--black); }
.qty-val { font-size: 1.1rem; font-weight: 700; min-width: 24px; text-align: center; }

/* Cart */
.cart-fab { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 150; display: flex; align-items: center; gap: 10px; background: var(--gold); color: var(--black); border: none; border-radius: 24px; padding: 12px 20px; font-size: 0.95rem; font-weight: 700; cursor: pointer; box-shadow: 0 4px 20px rgba(200,146,42,.4); transition: background .15s, transform .15s; white-space: nowrap; }
.cart-fab:hover { background: var(--gold-light); transform: translateX(-50%) translateY(-2px); }
.cart-fab-count { background: var(--black); color: var(--gold); border-radius: 12px; padding: 2px 8px; font-size: 0.85rem; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 199; }
.cart-drawer { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg2); border-radius: 16px 16px 0 0; z-index: 200; max-height: 85vh; display: flex; flex-direction: column; max-width: 520px; margin: 0 auto; }
.cart-handle { width: 40px; height: 4px; background: var(--bg4); border-radius: 2px; margin: 10px auto 0; }
.cart-header { padding: 14px 20px; border-bottom: 1px solid var(--bg4); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 1rem; font-weight: 700; }
.cart-clear { background: none; border: none; color: var(--text-dim); font-size: 0.78rem; cursor: pointer; }
.cart-clear:hover { color: var(--red); }
.cart-items { overflow-y: auto; flex: 1; padding: 12px 20px; }
.cart-empty { text-align: center; color: var(--text-dim); padding: 40px 0; font-size: 0.9rem; }
.cart-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bg4); }
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; }
.cart-item-opts { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }
.cart-item-price { font-size: 0.88rem; color: var(--gold); font-weight: 600; white-space: nowrap; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; }
.cart-item-qty button { background: var(--bg4); border: none; color: var(--text); width: 24px; height: 24px; border-radius: 50%; font-size: 0.85rem; cursor: pointer; }
.cart-item-qty button:hover { background: var(--gold); color: var(--black); }
.cart-item-qty span { font-size: 0.85rem; font-weight: 600; min-width: 16px; text-align: center; }
.cart-footer { padding: 14px 20px; border-top: 1px solid var(--bg4); }
.cart-min-hint { background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.3); border-radius: 6px; color: var(--gold); font-size: 0.78rem; padding: 8px 10px; margin-bottom: 10px; line-height: 1.4; }
.discount-input-row { display: flex; gap: 8px; margin-bottom: 8px; }
.discount-input-row input { flex: 1; background: var(--bg3); border: 1px solid var(--bg4); color: var(--text); border-radius: 8px; padding: 8px 12px; font-size: 0.85rem; letter-spacing: 0.05em; }
.discount-input-row input::placeholder { color: var(--text-muted); text-transform: none; }
.discount-input-row button { background: var(--bg3); border: 1px solid var(--bg4); color: var(--text); border-radius: 8px; padding: 8px 14px; font-size: 0.82rem; cursor: pointer; white-space: nowrap; }
.discount-input-row button:hover { border-color: var(--gold); color: var(--gold); }
.discount-ok { font-size: 0.82rem; color: var(--green); margin-bottom: 8px; }
.discount-err { font-size: 0.82rem; color: var(--red); margin-bottom: 8px; }
.cart-discount-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.85rem; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total-label { font-size: 0.85rem; color: var(--text-dim); }
.cart-total-val { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* Checkout */
.checkout-view { position: fixed; inset: 0; background: var(--bg); z-index: 300; overflow-y: auto; display: none; }
.checkout-view.active { display: block; }
.checkout-inner { max-width: 520px; margin: 0 auto; padding: 16px 16px 60px; }
.checkout-back { background: none; border: none; color: var(--gold); font-size: 0.9rem; cursor: pointer; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.section-label { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--gold); }
.order-type-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.order-type-btn { padding: 14px; background: var(--bg3); border: 2px solid var(--bg4); border-radius: var(--radius); color: var(--text); font-size: 0.9rem; font-weight: 600; cursor: pointer; text-align: center; transition: all .15s; }
.order-type-btn.active { border-color: var(--gold); background: rgba(200,146,42,.12); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; color: var(--text-dim); margin-bottom: 5px; }
.form-group input, .form-group textarea { width: 100%; background: var(--bg3); border: .5px solid var(--sep); border-radius: 10px; color: var(--text); padding: 10px 12px; font-size: 0.9rem; font-family: var(--font); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,.1); }
.form-group textarea { resize: vertical; min-height: 60px; }
.order-summary { background: var(--bg3); border: 1px solid var(--bg4); border-radius: var(--radius); padding: 14px; margin-bottom: 20px; }
.summary-item { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.summary-item:last-child { margin-bottom: 0; }
.summary-item.total { font-weight: 700; font-size: 1rem; padding-top: 8px; border-top: 1px solid var(--bg4); margin-top: 4px; }
.summary-item.total .val { color: var(--gold); }
#stripe-element { background: var(--bg3); border: 1px solid var(--bg4); border-radius: 8px; padding: 12px; margin-bottom: 16px; }
.stripe-error { color: var(--red); font-size: 0.82rem; margin-bottom: 8px; }
.loading-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(0,0,0,.2); border-top-color: var(--black); border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle; margin-right: 6px; }
@media (min-width: 600px) { .cart-drawer { left: 50%; right: auto; width: 520px; transform: translateX(-50%); } }

.allergen-notice { display: flex; align-items: flex-start; gap: 10px; background: var(--bg3); border: 1px solid var(--bg4); border-left: 3px solid var(--gold); border-radius: 8px; padding: 12px 16px; margin: 16px auto 0; max-width: 680px; font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }
.allergen-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.allergen-notice a { color: var(--gold); }
.allergen-notice a:hover { color: var(--gold-light); }

.withdrawal-notice { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin: 10px 0 4px; line-height: 1.5; }

/* ── iOS-style Checkout Form ── */
.ck-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); font-weight: 500; margin: 18px 0 8px 2px; }
.ios-grp { background: var(--bg2); border-radius: var(--radius); overflow: hidden; }
.ios-cell { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: .5px solid var(--sep); min-height: 46px; }
.ios-cell:last-child { border-bottom: none; }
.ios-lbl { font-size: .82rem; color: var(--text-dim); flex-shrink: 0; min-width: 92px; }
.ios-inp { flex: 1; background: none; border: none; color: var(--text); font-size: .9rem; font-family: var(--font); outline: none; text-align: right; min-width: 0; }
.ios-inp::placeholder { color: var(--text-muted); }
textarea.ios-inp { text-align: left; resize: none; }

/* ── Lieferzonen ── */
.zone-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
@media(max-width: 440px) { .zone-cards { grid-template-columns: 1fr; } }
.zone-card { background: var(--bg2); border: .5px solid rgba(255,255,255,.08); border-radius: 12px; padding: 10px 12px; }
.zone-card-hd { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.zone-card-hd strong { font-size: .84rem; }
.zone-badge { font-size: .68rem; color: var(--text-dim); background: var(--bg3); padding: 2px 7px; border-radius: 10px; white-space: nowrap; }
.zone-fee-chip { font-size: .78rem; color: var(--gold); margin-left: auto; font-weight: 600; white-space: nowrap; }
.zone-locs { font-size: .74rem; color: var(--text-dim); line-height: 1.4; }
.zone-min { font-size: .7rem; color: var(--text-muted); margin-top: 3px; }

/* Zone match/nomatch banner */
.zone-banner { border-radius: 10px; padding: 10px 13px; font-size: .84rem; line-height: 1.5; margin: 6px 0; }
.zone-banner-ok { background: rgba(60,185,122,.08); border: .5px solid rgba(60,185,122,.3); }
.zone-banner-ok strong { color: var(--green); }
.zone-banner-err { background: rgba(224,52,52,.08); border: .5px solid rgba(224,52,52,.3); color: rgba(224,52,52,.9); }

/* ── Cart fee + grand total rows ── */
.cart-fee-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.cart-fee-val { font-size: .9rem; font-weight: 600; color: var(--gold); }
.cart-grand-row { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: .5px solid var(--sep); margin: 4px 0 10px; font-weight: 700; }

/* ── Summary breakdown ── */
.summary-sep { border-top: .5px solid var(--sep); margin: 8px 0; }

/* ── Geocode-Autocomplete ── */
.geo-suggestions { position: absolute; top: calc(100% + 2px); left: -108px; right: -16px; background: var(--bg3); border: .5px solid var(--sep); border-radius: 0 0 12px 12px; z-index: 60; max-height: 220px; overflow-y: auto; box-shadow: 0 8px 24px rgba(0,0,0,.45); }
.geo-sug { padding: 10px 14px; cursor: pointer; border-bottom: .5px solid rgba(84,84,88,.2); }
.geo-sug:last-child { border-bottom: none; }
.geo-sug:active, .geo-sug:hover { background: var(--bg4); }
.geo-sug-main { font-size: .85rem; color: var(--text); }
.geo-sug-sub { font-size: .73rem; color: var(--text-dim); margin-top: 2px; }
.geo-manual-btn { display: block; width: 100%; background: none; border: none; color: var(--gold); font-size: .75rem; font-family: var(--font); cursor: pointer; text-align: center; padding: 8px 0 2px; opacity: .85; }
.geo-manual-btn:hover { opacity: 1; text-decoration: underline; }
.summary-sub { color: var(--text-dim); font-size: .82rem !important; }
