/* Customer website — clean, monochrome, app-like theme (Figtree, black buttons, white cards, photo-led). */

.h3 { font-family: var(--font-body); font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.h4 { font-size: 16px; font-weight: 700; }
.lead { font-size: clamp(16px, 1.5vw, 18px); color: var(--ink-2); }
.section { padding: clamp(40px, 6vw, 72px) 0; }
.section-alt { background: #F7F7F7; }
.section-line { border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-body); font-size: clamp(22px, 2.6vw, 26px); font-weight: 700; margin: 2px 0 2px; }
.section-head p { margin: 0; max-width: 560px; }
.hide-sm { }
@media (max-width: 640px) { .hide-sm { display: none !important; } }

/* ---------- Header ---------- */
.announce { background: #000; color: #fff; font-size: 13px; font-weight: 600; text-align: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.site-header.scrolled { box-shadow: 0 2px 8px rgba(0, 0, 0, .06); }
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo { gap: 12px; }
.logo span { display: grid; line-height: 1.15; }
.logo b { font-family: var(--font-body); font-weight: 700; font-size: 21px; letter-spacing: -.01em; color: #000; }
.logo small { font-size: 13px; font-weight: 400; color: var(--muted); }
.logo-light b { color: var(--ink); }
.site-nav { display: flex; gap: 2px; margin: 0 auto; }
.site-nav > a { position: relative; padding: 8px 14px; border-radius: var(--r-md); font-weight: 500; font-size: 16px; color: #484848; transition: background .15s, color .15s; display: inline-flex; align-items: center; gap: 6px; }
.site-nav > a:hover { color: #000; }
.site-nav > a.active { color: #000; font-weight: 700; }
.site-nav > a.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; border-radius: 2px; background: #000; }
.dot-new { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.nav-mobile-extra { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; font-size: 24px; }
.open-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--btn-radius); border: 1px solid var(--line); background: #fff; color: var(--success); box-shadow: var(--shadow-sm); }
.open-pill i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.open-pill.is-closed { background: var(--surface-2); color: var(--muted); }
.basket-btn { position: relative; display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 14px 0 16px; border-radius: var(--btn-radius); background: #000; color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .02em; }
.basket-btn:hover { background: #262626; }
.basket-btn i { font-size: 17px; }
.count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: #D93025; color: #fff; font-size: 12px; font-weight: 700; font-style: normal; }
.btn-icon .count { position: absolute; top: 2px; right: 0; }
.btn-icon { position: relative; }
.dropdown { position: relative; }
.dropdown-panel { position: absolute; right: 0; top: calc(100% + 8px); min-width: 240px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 120; }
.dropdown.open .dropdown-panel { display: grid; gap: 2px; animation: pop .16s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(-4px); } }
.dropdown-panel a, .dropdown-panel > button { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; background: none; border: 0; text-align: left; width: 100%; color: var(--ink-2); }
.dropdown-panel a:hover, .dropdown-panel > button:hover { background: var(--surface-2); color: var(--ink); }
.dropdown-head { padding: 8px 12px 10px; border-bottom: 1px solid var(--line-2); margin-bottom: 4px; display: grid; }
.dropdown-head small { color: var(--muted); font-size: 12.5px; }
.notif-panel { width: 340px; padding: 12px; gap: 6px; }
.notif { display: flex !important; align-items: flex-start !important; gap: 10px; }
.notif i { width: 32px; height: 32px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; flex: none; color: var(--primary); }
.notif span { display: grid; }
.notif small { color: var(--muted); font-weight: 400; font-size: 12.5px; }
.notif.unread { background: var(--primary-soft); }

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .open-pill { display: none; }
  .site-nav { position: fixed; inset: 0 25% 0 0; min-width: 280px; background: var(--surface); flex-direction: column; margin: 0; padding: 84px 16px 24px; gap: 2px; box-shadow: var(--shadow-lg); transform: translateX(-105%); transition: transform .25s var(--ease); z-index: 90; overflow-y: auto; }
  .site-nav > a { font-size: 17px; padding: 12px 14px; }
  .site-nav > a.active::after { display: none; }
  .site-nav > a.active { background: var(--surface-2); }
  .nav-mobile-extra { display: grid; gap: 2px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
  .nav-mobile-extra a, .nav-mobile-extra .link { padding: 10px 14px; font-weight: 500; text-align: left; color: var(--ink-2); }
  body.nav-open .site-nav { transform: none; }
  body.nav-open::after { content: ''; position: fixed; inset: 0; background: rgba(0, 0, 0, .4); z-index: 80; }
  .header-inner { gap: 8px; min-height: 64px; }
  .logo { position: relative; z-index: 95; }
  .menu-toggle { position: relative; z-index: 95; }
}
@media (max-width: 420px) { .logo small { display: none; } .logo b { font-size: 18px; } }

/* ---------- Hero ---------- */
.hero { padding: clamp(24px, 4vw, 56px) 0 clamp(28px, 4vw, 48px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 6vw, 96px); align-items: center; }
.hero h1 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; font-weight: 700; margin: 10px 0 10px; letter-spacing: -.02em; max-width: 18ch; }
.hero .lead { max-width: 46ch; margin-bottom: 22px; color: var(--muted); font-size: 16px; }
.order-box { max-width: 540px; }
.type-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.type-tabs label { position: relative; cursor: pointer; }
.type-tabs input { position: absolute; opacity: 0; }
.type-tabs span { display: block; padding: 8px 0 10px; font-size: 16px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.type-tabs input:checked + span { color: #000; font-weight: 700; border-bottom-color: #000; }
.type-tabs input:focus-visible + span { outline: 3px solid rgba(0, 0, 0, .15); outline-offset: 2px; }
.order-box-title { font-family: var(--font-body); font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; margin: 0 0 14px; }
.postcode-card { display: grid; gap: 10px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--btn-radius); background: #fff; margin-bottom: 22px; }
.postcode-card > label, .postcode-card > b { font-size: 16px; color: #000; display: flex; gap: 8px; align-items: center; }
.postcode-form { display: flex; gap: 8px; width: 100%; }
.postcode-form .input { flex: 1; min-height: 44px; }
.postcode-result { font-size: 14px; font-weight: 500; min-height: 1em; }
.pc-ok { color: var(--success); }
.pc-bad { color: var(--danger); }
.postcode-result i { margin-right: 4px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-ctas .btn-primary { min-width: 240px; }
.hero-facts { list-style: none; padding: 0; margin: 22px 0 0; display: flex; gap: 10px 24px; flex-wrap: wrap; font-size: 14px; color: var(--ink-2); }
.hero-facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts i { color: #000; font-size: 15px; }
.hero-facts b { font-weight: 700; }
.hero-facts small { color: var(--muted); font-size: 13.5px; }
.hero-art { position: relative; }
.hero-photo { aspect-ratio: 5 / 3; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-offer { position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff; border-radius: var(--btn-radius); padding: 10px 14px; font-size: 14px; }
.hero-offer b { color: #FFD24A; font-size: 20px; }
.hero-offer span { color: #fff; line-height: 1.2; }
.hero-offer small { color: #D6D6D6; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-art { order: -1; }
  .hero-photo { aspect-ratio: 16 / 9; }
  .hero h1 { max-width: none; }
  .order-box { max-width: none; }
  .hero-ctas .btn { flex: 1; min-width: 0; }
}

/* ---------- Categories ---------- */
.cat-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.cat-row::-webkit-scrollbar { display: none; }
.cat-tile { flex: none; display: grid; justify-items: center; gap: 8px; width: 112px; font-weight: 600; font-size: 14px; color: var(--ink-2); text-align: center; }
.cat-tile img { width: 96px; height: 96px; border-radius: var(--r-lg); object-fit: cover; background: var(--surface-2); transition: transform .2s var(--ease); }
.cat-tile:hover { color: #000; }
.cat-tile:hover img { transform: scale(1.03); }

/* ---------- Dish cards (home, specials, related) ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.dish-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .2s var(--ease); }
.dish-card:hover { box-shadow: var(--shadow-md); }
.dish-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; }
.ribbon { position: absolute; left: 10px; top: 10px; display: inline-flex; gap: 5px; align-items: center; background: #fff; color: #000; font-size: 12px; font-weight: 700; padding: 4px 9px; border-radius: 4px; box-shadow: var(--shadow-sm); }
.ribbon i { color: var(--gold); }
.ribbon-leaf { background: var(--leaf); color: #fff; }
.fav-btn { position: absolute; right: 10px; top: 10px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: #fff; color: var(--ink-2); display: grid; place-items: center; font-size: 14px; box-shadow: var(--shadow-sm); transition: transform .15s; }
.fav-btn:hover { transform: scale(1.06); }
.fav-btn.on { color: var(--danger); }
.dish-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.dish-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; min-height: 18px; font-size: 12.5px; color: var(--muted); }
.rating { font-weight: 600; font-size: 12.5px; display: inline-flex; gap: 3px; align-items: center; color: var(--ink-2); }
.rating i { color: var(--gold); }
.dish-card h3 { font-size: 15px; margin: 6px 0 4px; line-height: 1.35; font-weight: 600; color: #000; }
.dish-card h3 a:hover { text-decoration: underline; }
.dish-desc { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-weight: 600; font-size: 15px; color: #000; }
.price del, .price-lg del, .dr-price del { color: var(--muted-2); font-weight: 400; font-size: .9em; margin-left: 4px; }
.add-btn { min-width: 96px; }
.qty-primary { background: #000; border-color: #000; color: #fff; }
.qty-primary button { color: #fff; }
.qty-primary button:hover { background: rgba(255, 255, 255, .15); }
.qty-sm button { width: 32px; height: 32px; font-size: 16px; }
.is-soldout .dish-media img, .is-soldout .dr-media img { filter: grayscale(.8); opacity: .7; }
@media (max-width: 560px) {
  .dish-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dish-body { padding: 10px 12px 12px; }
  .dish-grid .dish-card h3 { font-size: 14px; }
  .dish-grid .dish-desc { display: none; }
  .dish-foot { flex-direction: column; align-items: stretch; gap: 8px; }
  .dish-foot .add-btn, .dish-foot .qty { width: 100%; justify-content: space-between; }
}

/* ---------- Dish rows (menu page) ---------- */
.dish-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.dish-card.dish-row { flex-direction: row; align-items: flex-start; gap: 16px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 20px 0 28px; overflow: visible; background: transparent; }
.dish-card.dish-row:hover { box-shadow: none; }
.dr-text { flex: 1; min-width: 0; display: grid; gap: 4px; align-content: start; }
.dish-row h3 { margin: 2px 0 0; font-size: 15px; }
.dr-price { font-size: 15px; color: #6A6A6A; }
.dr-off { color: var(--leaf); font-weight: 600; font-size: 13px; }
.dr-tag { display: inline-flex; gap: 4px; align-items: center; color: #B7791F; font-weight: 600; font-size: 12px; }
.dish-row .dish-desc { margin: 4px 0 0; font-size: 13.5px; }
.dr-media { position: relative; flex: none; width: 136px; }
.dr-media > a { display: block; width: 136px; height: 136px; border-radius: var(--r-lg); overflow: hidden; background: var(--surface-2); }
.dr-media img { width: 100%; height: 100%; object-fit: cover; }
.dr-media .fav-btn { width: 28px; height: 28px; font-size: 12px; top: 6px; right: 6px; }
.dr-add { position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%); }
.dr-add .add-btn { min-width: 104px; min-height: 36px; }
.dr-add .qty { background: #000; box-shadow: var(--shadow-sm); }
.dr-add .badge { background: #fff; border: 1px solid var(--line); }
@media (max-width: 1100px) { .dish-rows { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .dr-media, .dr-media > a { width: 112px; } .dr-media > a { height: 112px; } .dr-add .add-btn { min-width: 92px; } .dish-row .dish-desc { font-size: 13px; } .menu-status .link { margin-left: 0; } .hero-offer { font-size: 13px; padding: 8px 12px; } .hero-offer b { font-size: 17px; } }

/* ---------- Festival banner / features / reviews ---------- */
.festival-banner { display: flex; align-items: center; position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(24px, 5vw, 48px); color: #fff; background: linear-gradient(100deg, rgba(23, 20, 15, .88) 25%, rgba(23, 20, 15, .45) 70%, rgba(23, 20, 15, .2)), var(--img) center / cover, var(--ink); min-height: 260px; }
.festival-banner > div { max-width: 540px; }
.festival-banner h2 { color: #fff; font-size: clamp(24px, 3.4vw, 38px); margin: 8px 0; }
.festival-banner p { color: #E9E4DC; }
.festival-banner .kicker { color: #fff; opacity: .85; }
.festival-banner .btn-primary { background: #fff; color: #000; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.features article { padding: 22px 0 0; border-top: 2px solid var(--line); }
.features i { font-size: 22px; color: #000; margin-bottom: 12px; display: block; }
.features h3 { font-size: 17px; font-weight: 600; }
.features p { color: var(--muted); margin: 0; font-size: 14.5px; }
@media (max-width: 800px) { .features { grid-template-columns: 1fr; gap: 12px; } .features article { padding-top: 16px; } }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.review-card p { margin: 0; font-size: 15px; }
.review-card footer { margin-top: auto; font-size: 14px; }
.review-card .reply { font-size: 13.5px; background: var(--surface-2); border-radius: var(--r-sm); padding: 10px 12px; color: var(--ink-2); }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; padding: 0; }
.visit-card { padding: clamp(24px, 4vw, 44px); }
.visit-card h2 { font-size: clamp(24px, 3vw, 32px); margin: 6px 0; }
.visit-art img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; font-size: 14px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; }
.hours-dark { margin: 16px 0 24px; border-top: 1px solid var(--line); padding-top: 12px; }
.hours-dark li { padding: 3px 0; }
@media (max-width: 800px) { .visit { grid-template-columns: 1fr; } .visit-art { order: -1; } .visit-art img { min-height: 180px; max-height: 240px; } }

/* ---------- Newsletter & footer ---------- */
.newsletter { padding: 0 0 clamp(40px, 6vw, 64px); }
.newsletter-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px 40px; align-items: center; background: var(--surface-2); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 40px); }
.newsletter h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 6px 0; }
.newsletter p { color: var(--muted); margin: 0; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form small { grid-column: 1 / -1; color: var(--muted); font-size: 12.5px; }
.newsletter-form small a { text-decoration: underline; }
@media (max-width: 800px) { .newsletter-inner { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .newsletter-form { grid-template-columns: 1fr; } }
.site-footer { border-top: 1px solid var(--line); background: #FAFAFA; color: var(--ink-2); padding: 48px 0 24px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: var(--ink); font-size: 14px; margin-bottom: 12px; font-weight: 600; }
.site-footer a:hover { color: #000; text-decoration: underline; }
.site-footer address { font-style: normal; margin-bottom: 12px; }
.footer-brand p { margin: 14px 0; max-width: 320px; color: var(--muted); }
.socials { display: flex; gap: 8px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); font-size: 16px; color: var(--ink-2); }
.socials a:hover { border-color: var(--ink); color: var(--ink); }
.links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 36px; padding-top: 18px; font-size: 13px; color: var(--muted); }
.powered { color: var(--muted-2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.basket-bar { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(0, 0, 0, .06); padding: 10px 0 max(10px, env(safe-area-inset-bottom)); animation: slideup .3s var(--ease); }
.bb-inner { display: flex; align-items: center; gap: 16px; }
.bb-sum { display: flex; align-items: center; gap: 12px; margin-right: auto; color: #000; }
.bb-sum b { font-size: 16px; }
.bb-icon { position: relative; font-size: 22px; line-height: 1; }
.bb-icon .count { position: absolute; top: -8px; right: -10px; min-width: 18px; height: 18px; font-size: 11px; }
.bb-cta { min-width: 200px; }
@keyframes slideup { from { transform: translateY(110%); } }
@media (max-width: 560px) { .bb-cta { min-width: 0; flex: 1; } }
body:has(.basket-bar) .site-footer { padding-bottom: 100px; }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(32px, 5vw, 56px) 0 clamp(20px, 3vw, 32px); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); margin: 8px 0; }
.page-hero p { color: var(--muted); max-width: 640px; font-size: 16.5px; margin: 0; }

/* ---------- Menu ---------- */
.menu-wrap { padding: 0 0 56px; }
.menu-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 0 48px; align-items: start; }
.menu-side { position: sticky; top: 77px; align-self: start; max-height: calc(100vh - 77px); overflow-y: auto; padding: 40px 24px 24px 0; border-right: 1px solid var(--line); min-height: calc(100vh - 77px); }
.menu-side-title { font-family: var(--font-body); font-size: 22px; font-weight: 700; color: #202431; margin: 0 0 8px; padding-left: 8px; }
.cat-tabs-inner { display: grid; gap: 0; }
.cat-tabs a { display: flex; justify-content: space-between; align-items: center; padding: 11px 8px; border-radius: var(--btn-radius); font-weight: 500; font-size: 16px; color: #484848; border-left: 3px solid transparent; }
.cat-tabs a span { color: var(--muted-2); font-weight: 500; font-size: 13px; }
.cat-tabs a:hover { color: #000; }
.cat-tabs a.active { color: #000; font-weight: 700; background: var(--surface-2); border-left-color: #000; border-radius: 0 var(--btn-radius) var(--btn-radius) 0; }
.menu-main { padding-top: 32px; min-width: 0; }
.menu-bar { display: grid; gap: 14px; margin-bottom: 8px; }
.menu-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.menu-tools .input-group { min-width: 220px; }
.menu-tools .input { min-height: 48px; box-shadow: var(--shadow-sm); }
.veg-switch { border: 1px solid var(--line); border-radius: var(--btn-radius); padding: 10px 14px; background: #fff; box-shadow: var(--shadow-sm); flex-direction: row-reverse; font-size: 15px; }
.veg-switch i { width: 36px; height: 20px; }
.veg-switch i::after { width: 14px; height: 14px; }
.veg-switch input:checked + i { background: var(--leaf); }
.veg-switch input:checked + i::after { transform: translateX(16px); }
.menu-status { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; background: var(--surface-2); border-radius: var(--r-lg); padding: 14px 20px; font-size: 14.5px; }
.menu-status b { color: #000; padding-right: 12px; border-right: 1px solid #000; }
.menu-status .link { margin-left: auto; }
.menu-list { padding: 0; }
.menu-group { padding-top: 36px; scroll-margin-top: 90px; }
.menu-group h2 { font-family: var(--font-body); font-size: 24px; font-weight: 700; margin: 0; color: #000; }
.menu-count { color: var(--muted); font-size: 14px; margin: 2px 0 4px; }
.allergen-note { margin-top: 40px; font-size: 14px; color: var(--muted); background: var(--surface-2); padding: 14px 18px; border-radius: var(--r-lg); }
.allergen-note a { color: #000; font-weight: 700; }
@media (max-width: 960px) {
  .menu-layout { grid-template-columns: minmax(0, 1fr); }
  .menu-side { min-width: 0; }
  .menu-side { position: sticky; top: 64px; z-index: 50; max-height: none; min-height: 0; overflow: visible; padding: 0; border-right: 0; background: #fff; border-bottom: 1px solid var(--line); margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); }
  .menu-side-title { display: none; }
  .cat-tabs-inner { display: flex; gap: 4px; overflow-x: auto; padding: 8px 0; scrollbar-width: none; }
  .cat-tabs-inner::-webkit-scrollbar { display: none; }
  .cat-tabs a { flex: none; font-size: 14px; padding: 8px 14px; border-left: 0; border-radius: var(--btn-radius); gap: 6px; }
  .cat-tabs a.active { background: #000; color: #fff; border-radius: var(--btn-radius); }
  .cat-tabs a.active span { color: #BDBDBD; }
  .menu-main { padding-top: 16px; }
  .menu-group { scroll-margin-top: 130px; padding-top: 28px; }
  .menu-group h2 { font-size: 20px; }
}

/* ---------- Dish page ---------- */
.dish-page { padding: 20px 0 48px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--primary-ink); }
.crumbs i { font-size: 11px; }
.dish-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: start; }
.dish-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3.2; background: var(--surface-2); }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; }
.dish-info h1 { font-size: clamp(28px, 4vw, 42px); margin: 10px 0; }
.price-lg { font-size: 26px; font-weight: 700; margin: 16px 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dish-facts { display: grid; gap: 10px; margin: 0 0 20px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dish-facts div { display: grid; grid-template-columns: 140px 1fr; gap: 12px; font-size: 14.5px; }
.dish-facts dt { color: var(--muted); font-weight: 500; }
.dish-facts dd { margin: 0; }
.add-panel { display: grid; gap: 14px; background: var(--surface-2); border-radius: var(--r-lg); padding: 18px; margin-bottom: 14px; }
.add-panel .qty { background: #fff; }
@media (max-width: 860px) { .dish-layout { grid-template-columns: 1fr; } .dish-facts div { grid-template-columns: 1fr; gap: 2px; } }

/* ---------- Basket & checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 24px; align-items: start; margin-top: 16px; }
.order-summary { position: sticky; top: 96px; display: grid; gap: 14px; }
@media (max-width: 960px) { .checkout-layout { grid-template-columns: 1fr; } .order-summary { position: static; } }
.basket-lines { padding: 8px 20px; }
.basket-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.basket-line:last-child { border-bottom: 0; }
.basket-line img { width: 72px; height: 72px; border-radius: var(--r-md); object-fit: cover; }
.basket-line.unavailable { opacity: .7; }
.bl-name { font-weight: 600; }
.bl-note { width: 100%; border: 0; border-bottom: 1px dashed var(--line); background: transparent; font-size: 13.5px; padding: 6px 0; color: var(--ink-2); margin-top: 4px; }
.bl-note:focus { outline: none; border-bottom-color: var(--primary); }
.bl-side { display: grid; justify-items: end; gap: 8px; }
@media (max-width: 520px) { .basket-line { grid-template-columns: 56px 1fr; } .basket-line img { width: 56px; height: 56px; } .bl-side { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; justify-items: stretch; } }
.coupon-form { display: flex; gap: 8px; }
.summary { display: grid; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.sum-line { display: flex; justify-content: space-between; font-size: 15px; }
.sum-line span { color: var(--muted); }
.sum-line.text-success span { color: var(--success); }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 20px; font-weight: 700; padding-top: 10px; border-top: 1px dashed var(--line); margin-top: 4px; }
.min-bar { height: 6px; border-radius: 3px; background: var(--surface-3); overflow: hidden; }
.min-bar div { height: 100%; background: #000; border-radius: 3px; transition: width .3s; }
.tiers { margin-top: 12px; font-size: 14px; }
.tiers summary { cursor: pointer; font-weight: 700; color: #000; }
.tiers ul { list-style: none; padding: 0; margin: 10px 0; display: grid; gap: 4px; }
.tiers li { display: flex; justify-content: space-between; max-width: 280px; }
fieldset.card { border: 1px solid var(--line); margin: 0; min-width: 0; }
fieldset.card legend { float: left; width: 100%; padding: 0; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
fieldset.card legend + * { clear: both; }
.step { width: 26px; height: 26px; border-radius: 50%; background: #000; color: #fff; display: inline-grid; place-items: center; font-size: 13px; font-weight: 700; }
.mini-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14.5px; }
.mini-lines li { display: flex; justify-content: space-between; gap: 12px; }
.mini-lines small { display: block; color: var(--muted); font-size: 12.5px; }

/* ---------- Tracking ---------- */
.success-banner { display: flex; gap: 18px; align-items: center; background: var(--success-soft); border-radius: var(--r-lg); padding: 22px; margin-bottom: 24px; }
.success-banner h1 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 4px; }
.success-banner p { margin: 0; color: #22573A; }
.success-tick { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; font-size: 26px; animation: popin .5s var(--ease); }
@keyframes popin { from { transform: scale(.4); opacity: 0; } }
.track-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .track-layout { grid-template-columns: 1fr; } }
.eta { text-align: right; }
.eta small { display: block; color: var(--muted); font-size: 12.5px; }
.eta b { font-size: 28px; font-weight: 700; }
.timeline { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 0; }
.timeline li { display: flex; gap: 14px; position: relative; padding-bottom: 22px; color: var(--muted-2); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ''; position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline .dot { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; flex: none; position: relative; z-index: 1; }
.timeline li div { display: grid; padding-top: 6px; }
.timeline small { font-size: 12.5px; }
.timeline li.done { color: var(--ink); }
.timeline li.done .dot { background: var(--success); color: #fff; }
.timeline li.done::before { background: var(--success); }
.timeline li.current { color: var(--ink); }
.timeline li.current .dot { background: var(--primary); color: var(--on-accent); box-shadow: 0 0 0 6px var(--primary-soft); }
.kv { display: grid; gap: 12px; margin: 16px 0 0; font-size: 14.5px; }
.kv dt { color: var(--muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.kv dd { margin: 2px 0 0; }

/* ---------- Auth ---------- */
.auth { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 66px); }
.auth-art { position: relative; overflow: hidden; background: var(--surface-2); }
.auth-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-quote { position: absolute; left: 32px; right: 32px; bottom: 32px; color: #fff; background: rgba(23, 20, 15, .55); backdrop-filter: blur(6px); border-radius: var(--r-lg); padding: 20px 22px; }
.auth-quote .kicker { color: #fff; opacity: .85; }
.auth-quote p { font-family: var(--font-display); font-size: 22px; line-height: 1.35; font-style: italic; margin: 6px 0 0; }
.auth-panel { display: grid; place-items: center; padding: 40px var(--gutter); }
.auth-box { width: 100%; max-width: 420px; }
.auth-box h1 { font-size: 32px; }
.or { display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-size: 13px; margin: 18px 0; }
.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.google-btn { background: var(--surface); }
@media (max-width: 860px) { .auth { grid-template-columns: 1fr; } .auth-art { display: none; } }

/* ---------- Account ---------- */
.account-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.account-head .avatar { width: 56px; height: 56px; font-size: 22px; }
.account-head h1 { margin: 0; font-size: 30px; }
.account-head p { margin: 0; }
.account-tabs { display: flex; gap: 4px; overflow-x: auto; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.account-tabs a { padding: 12px 14px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; display: flex; gap: 8px; align-items: center; margin-bottom: -1px; }
.account-tabs a.active, .account-tabs a:hover { color: #000; border-bottom-color: #000; }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 860px) { .account-grid { grid-template-columns: 1fr; } }
.order-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-2); flex-wrap: wrap; }
.order-row:last-child { border-bottom: 0; }
.order-row > div:first-child { display: grid; }
.order-row small { color: var(--muted); font-size: 13px; }
a.order-row:hover b { color: var(--primary-ink); }
.live-order { border-color: color-mix(in srgb, var(--accent) 35%, #fff); background: var(--primary-soft); margin-bottom: 20px; }
.live-order .h3 { display: flex; align-items: center; gap: 10px; margin: 0; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); animation: pulse-o 1.6s infinite; }
@keyframes pulse-o { 0% { box-shadow: 0 0 0 0 var(--primary-ring); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.order-card { display: grid; gap: 14px; }
.review-box { background: var(--surface-2); border-radius: var(--r-md); padding: 14px 16px; display: grid; gap: 10px; }
.review-box h3 { margin: 0; }
.review-form { display: grid; grid-template-columns: minmax(120px, 1fr) auto 2fr auto; gap: 10px; align-items: center; }
.review-form .rf-name { font-weight: 600; font-size: 14px; }
.review-form .input { min-height: 38px; padding: 7px 12px; }
.review-done { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 14px; }
@media (max-width: 700px) { .review-form { grid-template-columns: 1fr auto; } .review-form .input { grid-column: 1 / -1; } }
.star-input { border: 0; padding: 0; margin: 0; display: inline-flex; flex-direction: row-reverse; gap: 2px; }
.star-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-input label { cursor: pointer; font-size: 20px; color: var(--line); padding: 0 1px; }
.star-input input:checked ~ label, .star-input label:hover, .star-input label:hover ~ label { color: var(--gold); }
.star-input input:focus-visible + label { outline: 2px solid var(--primary); border-radius: 4px; }
fieldset.field { border: 0; padding: 0; margin: 0; }

/* ---------- Info pages ---------- */
.two-col { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.contact-card { display: flex; gap: 16px; align-items: center; transition: border-color .15s; }
.contact-card:hover { border-color: var(--ink); }
.contact-card i { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); color: #000; font-size: 19px; flex: none; }
.contact-card div { display: grid; }
.contact-card span { color: var(--muted); font-size: 14px; }
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-top: 28px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: #000; font-weight: 700; text-decoration: underline; }
.allergen-table th:not(:first-child) { writing-mode: vertical-rl; transform: rotate(180deg); text-transform: none; letter-spacing: 0; font-size: 12px; height: 130px; vertical-align: bottom; padding: 10px 6px; }
.allergen-table td { text-align: center; padding: 8px 6px; }
.allergen-table tbody th { text-align: left; font-weight: 600; font-size: 14px; padding: 10px 12px; white-space: nowrap; border-bottom: 1px solid var(--line-2); }
.allergen-table tbody th a:hover { color: var(--primary-ink); }
.al-yes { color: var(--danger); font-size: 16px; }
.allergen-table tbody tr:nth-child(even) { background: var(--surface-2); }

/* ---------- Festival page ---------- */
.fest-hero { position: relative; color: #fff; padding: clamp(56px, 9vw, 110px) 0; background: linear-gradient(90deg, rgba(23, 20, 15, .9) 25%, rgba(23, 20, 15, .55) 65%, rgba(23, 20, 15, .25)), var(--img) center / cover, var(--ink); }
.fest-hero-inner { max-width: 720px; margin-left: 0; }
.fest-hero .kicker { color: #fff; opacity: .85; }
.fest-hero h1 { color: #fff; font-size: clamp(34px, 5.4vw, 60px); margin: 12px 0 16px; }
.fest-hero p { font-size: 17px; color: #EDE8E0; max-width: 600px; }
.fest-hero .btn-primary { background: #fff; color: #000; }
.countdown { display: flex; gap: 10px; margin: 24px 0 28px; }
.countdown div { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--r-md); padding: 10px 14px; min-width: 72px; text-align: center; backdrop-filter: blur(6px); }
.countdown b { display: block; font-family: var(--font-display); font-size: 28px; line-height: 1; }
.countdown span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #E2DCD3; }
.coupon-chip { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px; border-radius: var(--r-md); border: 2px dashed rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); color: #fff; text-align: left; }
.coupon-chip span { display: grid; line-height: 1.25; }
.coupon-chip b { letter-spacing: .1em; }
.coupon-chip small { color: #E2DCD3; }
.blessing { margin: 0 auto; max-width: 720px; text-align: center; padding: 36px; border-radius: var(--r-xl); background: var(--surface-2); }
.blessing i { font-size: 32px; color: var(--primary); }
.blessing p { font-family: var(--font-display); font-size: clamp(20px, 2.8vw, 28px); font-style: italic; margin: 12px 0; }
.blessing footer { color: var(--muted); font-weight: 500; }

/* ---------- No restaurant on this domain ---------- */
.no-tenant { min-height: 70vh; display: grid; place-items: center; padding: 40px var(--gutter); text-align: center; }
.no-tenant .card { max-width: 480px; }

/* ---------- Spacing refinements ---------- */
main > .section:first-child { padding-top: clamp(24px, 4vw, 40px); }

/* ---------- Modal sheets (sign in, offers, dish, address) ---------- */
dialog.sheet { position: fixed; inset: 0; z-index: 1500; border: 0; padding: 0; background: rgba(0, 0, 0, .55); max-width: none; max-height: none; width: 100%; height: 100%; margin: 0; display: grid; place-items: center; overflow: hidden; color: inherit; }
dialog.sheet.fresh { animation: fade-in .18s ease; }
@keyframes fade-in { from { background: rgba(0, 0, 0, 0); } }
dialog.sheet.closing { background: rgba(0, 0, 0, 0); transition: background .18s; }
dialog.sheet:not([open]) { display: none; }
dialog.sheet::backdrop { background: rgba(0, 0, 0, .55); }
.sheet-card { position: relative; width: min(460px, calc(100vw - 32px)); max-height: min(88vh, 760px); display: flex; flex-direction: column; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
dialog.sheet.fresh .sheet-card { animation: sheet-pop .2s var(--ease); }
.sheet-sm .sheet-card { width: min(440px, calc(100vw - 32px)); }
.sheet-md .sheet-card { width: min(520px, calc(100vw - 32px)); }
dialog.sheet.closing .sheet-card { animation: sheet-out .18s ease forwards; }
@keyframes sheet-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@keyframes sheet-out { to { opacity: 0; transform: translateY(12px); } }
.sheet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 18px 20px 14px; border-bottom: 1px solid var(--line); }
.sheet-head h2 { font-family: var(--font-body); font-size: 19px; font-weight: 700; margin: 0; }
.sheet-head p { margin: 4px 0 0; }
.sheet-x { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 0; background: transparent; color: #000; display: grid; place-items: center; font-size: 17px; }
.sheet-x:hover { background: var(--surface-2); }
.sheet-x.on-photo { position: absolute; top: 10px; right: 10px; background: #fff; box-shadow: var(--shadow-sm); }
.sheet-body { padding: 18px 20px 22px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.sheet-foot { display: flex; gap: 12px; align-items: center; padding: 14px 20px max(14px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.sheet-body .or { margin: 14px 0; }
@media (max-width: 699px) {
  dialog.sheet { place-items: end stretch; }
  .sheet-card, .sheet-sm .sheet-card, .sheet-md .sheet-card { width: 100%; max-height: 92vh; border-radius: 16px 16px 0 0; }
  dialog.sheet.fresh .sheet-card { animation: sheet-up .24s var(--ease); }
  dialog.sheet.closing .sheet-card { animation: sheet-down .18s ease forwards; }
  @keyframes sheet-up { from { transform: translateY(100%); } }
  @keyframes sheet-down { to { transform: translateY(100%); } }
}
body.sheet-open { overflow: hidden; }

.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: var(--surface-2); border-radius: var(--btn-radius); margin-bottom: 16px; }
.auth-tabs button { border: 0; background: transparent; padding: 9px 10px; border-radius: 4px; font-weight: 600; font-size: 14px; color: var(--muted); }
.auth-tabs button.on { background: #fff; color: #000; box-shadow: var(--shadow-sm); }
.auth-perk { display: flex; gap: 8px; align-items: center; background: #FFF8E1; color: #6B4E00; border-radius: var(--btn-radius); padding: 10px 12px; font-size: 14px; margin: 0 0 14px; }

.offers-head { background: linear-gradient(120deg, #F6C453, #F9DE8B); border-bottom: 0; }
.offers-head p { color: #5A4200; }
.promo-form { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--btn-radius); padding: 4px 4px 4px 0; margin-bottom: 14px; }
.promo-form .input { border: 0; min-height: 42px; box-shadow: none !important; text-transform: uppercase; }
.promo-form .input::placeholder { text-transform: none; }
.promo-apply { border: 0; background: none; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #000; padding: 8px 12px; border-radius: 4px; }
.promo-apply:hover { background: var(--surface-2); }
.offer-applied { display: flex; justify-content: space-between; align-items: center; gap: 10px; background: var(--success-soft); color: var(--success); border-radius: var(--btn-radius); padding: 10px 12px; margin-bottom: 12px; font-size: 14px; }
.offer-list { list-style: none; padding: 0; margin: 0; }
.offer-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.offer-list li.focus { background: #FFFBEA; margin: 0 -20px; padding: 14px 20px; }
.offer-list p { margin: 6px 0 2px; font-weight: 600; color: #000; font-size: 14.5px; }
.offer-code { display: inline-block; background: #000; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; padding: 2px 7px; border-radius: 3px; }

.dish-sheet-photo { position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); flex: none; }
.dish-sheet-photo img { width: 100%; height: 100%; object-fit: cover; }
.dish-sheet h2 { font-family: var(--font-body); font-size: 21px; font-weight: 700; margin: 8px 0 2px; }
.dish-sheet .dr-price { font-size: 16px; margin-bottom: 8px; }
.dish-sheet-facts { display: grid; gap: 6px; margin: 4px 0 16px; font-size: 14px; }
.dish-sheet-facts div { display: grid; grid-template-columns: 90px 1fr; gap: 8px; }
.dish-sheet-facts dt { color: var(--muted); }
.dish-sheet-facts dd { margin: 0; }
.dish-sheet form { margin-bottom: 12px; }
.qty-lg button { width: 42px; height: 46px; font-size: 20px; }
.qty-lg output { min-width: 32px; font-size: 16px; }
.sheet-add { justify-content: space-between; }
.sheet-add span:first-child { font-weight: 800; }

/* ---------- Menu extras ---------- */
.type-toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: var(--btn-radius); padding: 3px; gap: 2px; }
.type-toggle button { border: 0; background: transparent; padding: 6px 12px; border-radius: 4px; font-weight: 600; font-size: 14px; color: var(--muted); }
.type-toggle button.on { background: #000; color: #fff; }
.menu-status { gap: 10px 16px; }
.menu-status b { border: 0; padding: 0; }
.ms-where { display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.ms-change { margin-left: 0 !important; }
.ms-open { margin-left: auto; }
.offer-strip-wrap { margin-top: 18px; }
.offer-strip { display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: none; }
.offer-strip::-webkit-scrollbar { display: none; }
.offer-card { flex: none; width: 150px; display: grid; justify-items: center; gap: 4px; text-align: center; padding: 16px 12px 12px; border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, #FFF3F6 0, #fff 45%); }
.offer-card:hover { border-color: #000; }
.offer-card b { font-size: 16px; color: #000; }
.oc-icon { width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; font-size: 18px; color: #D93025; margin-bottom: 4px; }
.oc-more { margin-top: 6px; padding-top: 8px; border-top: 1px solid var(--line); width: 100%; font-size: 12.5px; color: var(--muted); }
.again-card { margin-top: 18px; padding: 16px 20px 4px; }
.again-card .op-title { margin-bottom: 0; }
.dish-rows.compact .dish-card.dish-row { padding: 14px 0 22px; }
.dish-rows.compact .dish-card.dish-row:last-child, .dish-rows.compact .dish-card.dish-row:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
.dish-rows.compact .dr-media, .dish-rows.compact .dr-media > a { width: 96px; }
.dish-rows.compact .dr-media > a { height: 96px; }
.dish-rows.compact .dish-desc, .dish-rows.compact .more-btn { display: none; }
.more-btn { border: 0; background: none; padding: 0; font-size: 13px; font-weight: 700; color: #000; justify-self: start; }
.dish-card.show-more .dish-desc { -webkit-line-clamp: unset; display: block; }
.dish-row.no-photo .dr-media-empty { width: 136px; min-height: 40px; display: flex; justify-content: center; align-items: flex-start; padding-top: 6px; }
.dish-row.no-photo .dr-add { position: static; transform: none; }
@media (max-width: 560px) { .dish-row.no-photo .dr-media-empty { width: 112px; } .ms-open { display: none; } }

/* ---------- Basket bar offers nudge ---------- */
.bb-nudge { display: flex; align-items: center; gap: 10px; background: #393939; color: #fff; font-size: 13px; padding: 5px 5px 5px 14px; border-radius: var(--btn-radius); }
.bb-nudge b { color: #fff; }
.bb-offers { border: 0; background: #5A5A5A; color: #fff; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .03em; padding: 6px 10px; border-radius: 4px; display: inline-flex; gap: 5px; align-items: center; white-space: nowrap; }
.bb-offers:hover { background: #6E6E6E; }
@media (max-width: 760px) {
  .basket-bar .bb-inner { flex-wrap: wrap; gap: 8px 12px; }
  .basket-bar .bb-nudge { order: -1; width: 100%; justify-content: space-between; }
}

/* ---------- My order page ---------- */
.order-page { padding: 20px 0 56px; background: #F5F5F5; min-height: 70vh; }
.op-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.op-head h1 { font-family: var(--font-body); font-size: 22px; font-weight: 700; margin: 0; }
.op-back { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 19px; color: #000; }
.op-back:hover { background: #fff; }
.order-page .checkout-layout { margin-top: 0; gap: 20px; grid-template-columns: minmax(0, 1fr) 380px; }
.order-page .stack { gap: 16px; min-width: 0; }
.order-page .stack > * { min-width: 0; }
.op-card { padding: 18px 20px; border-radius: var(--r-lg); border: 0; box-shadow: 0 1px 2px rgba(0, 0, 0, .04); }
.op-title { font-family: var(--font-body); font-size: 17px; font-weight: 700; margin: 0 0 12px; color: #000; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--surface-2); border-radius: var(--btn-radius); padding: 4px; margin-bottom: 8px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; }
.seg span { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 8px; border-radius: 4px; font-weight: 600; font-size: 14.5px; color: var(--muted); flex-wrap: wrap; text-align: center; }
.seg small { font-weight: 500; font-size: 12px; color: var(--muted-2); }
.seg input:checked + span { background: #fff; color: #000; box-shadow: var(--shadow-sm); }
.seg input:focus-visible + span { outline: 3px solid rgba(0, 0, 0, .15); }
.op-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.op-row:last-child { border-bottom: 0; padding-bottom: 2px; }
.op-row-form { align-items: flex-start; }
.op-row .grow { display: grid; gap: 2px; min-width: 0; }
.op-row b { color: #000; font-size: 15px; }
.op-ic { width: 40px; height: 40px; flex: none; border-radius: var(--btn-radius); background: var(--surface-2); display: grid; place-items: center; font-size: 17px; color: #000; }
.op-change { flex: none; border: 0; background: none; font-weight: 800; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: #000; padding: 6px 8px; border-radius: 4px; }
.op-change:hover { background: var(--surface-2); }
.op-signin { background: #FAFAFA; margin: 6px -20px -18px; padding: 16px 20px; border-radius: 0 0 var(--r-lg) var(--r-lg); border: 0; }
.op-lines { display: grid; margin-bottom: 10px; }
.op-line { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 16px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.op-line:last-child { border-bottom: 0; }
.op-line.unavailable { opacity: .7; }
.op-line-main { display: grid; gap: 2px; }
.op-line-main .bl-name { font-weight: 600; color: #000; }
.op-line-side { display: flex; align-items: center; gap: 14px; }
.op-line-side b { min-width: 64px; text-align: right; color: #000; }
.op-line .qty { background: #fff; }
.op-note { grid-column: 1 / -1; }
.op-note summary { cursor: pointer; list-style: none; display: inline-flex; gap: 6px; align-items: center; font-size: 13px; color: var(--muted); padding: 6px 10px; border: 1px solid var(--line); border-radius: var(--btn-radius); }
.op-note summary::-webkit-details-marker { display: none; }
.op-note[open] summary { margin-bottom: 6px; }
.upsell { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.up-card { flex: none; width: 250px; display: flex; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: var(--r-lg); }
.up-img { flex: none; width: 76px; height: 76px; border-radius: var(--r-md); overflow: hidden; background: var(--surface-2); }
.up-img img { width: 100%; height: 100%; object-fit: cover; }
.up-body { display: grid; align-content: space-between; min-width: 0; flex: 1; gap: 8px; }
.up-name { font-size: 14px; font-weight: 600; color: #000; display: flex; gap: 6px; align-items: flex-start; line-height: 1.3; }
.up-name .veg-mark { margin-top: 2px; }
.up-body .add-btn { min-width: 70px; min-height: 32px; padding: 4px 10px; }
.up-body .qty button { width: 28px; height: 30px; font-size: 15px; }
.order-page .order-summary { top: 96px; border: 0; box-shadow: 0 1px 2px rgba(0, 0, 0, .04); padding: 20px; }
.order-page .summary { border-top: 0; padding-top: 0; }
.offers-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; width: 100%; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: none; padding: 14px 0; color: var(--success); font-weight: 700; font-size: 15px; text-align: left; }
.offers-row span { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.offers-row small { font-weight: 500; }
.offers-row .link { color: #000; }
.pay-box { display: grid; border-radius: var(--btn-radius); overflow: hidden; }
.pay-box .bb-nudge { border-radius: var(--btn-radius) var(--btn-radius) 0 0; justify-content: space-between; }
.pay-box .bb-nudge + .btn { border-radius: 0 0 var(--btn-radius) var(--btn-radius); }
@media (max-width: 960px) {
  .order-page .checkout-layout { grid-template-columns: 1fr; }
  .order-page .order-summary { position: static; }
  .order-page .pay-box { position: sticky; bottom: 0; z-index: 20; box-shadow: 0 -6px 16px rgba(0, 0, 0, .08); }
}
@media (max-width: 560px) {
  .order-page { padding-top: 12px; }
  .op-card { padding: 16px; }
  .op-signin { margin: 6px -16px -16px; padding: 14px 16px; }
  .op-line-side { gap: 10px; }
  .up-card { width: 230px; }
}
.sheet-foot .sheet-add { min-width: 0; padding-left: 16px; padding-right: 16px; gap: 10px; }
@media (max-width: 420px) { .sheet-foot { gap: 8px; padding-left: 14px; padding-right: 14px; } .sheet-foot .qty-lg button { width: 36px; } .sheet-add span:last-child { font-size: 14px; } }

/* ---------- Dish options ---------- */
.add-wrap { display: inline-grid; justify-items: center; gap: 2px; }
.custom-tag { font-size: 11px; color: var(--muted); line-height: 1; }
.dr-add .custom-tag { background: #fff; padding: 2px 6px 3px; border-radius: 3px; }
.dish-foot .add-wrap { justify-items: end; }
.opt-group { border: 0; padding: 0; margin: 0 0 18px; }
.opt-group legend { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; width: 100%; padding: 10px 12px; background: var(--surface-2); border-radius: var(--btn-radius); margin-bottom: 4px; }
.opt-group legend b { color: #000; font-size: 15px; }
.opt-group legend small { color: var(--muted); font-size: 12px; white-space: nowrap; }
.opt-group legend small.need { color: #B45309; font-weight: 600; }
.opt { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px; border-bottom: 1px solid var(--line-2); cursor: pointer; font-size: 15px; color: #000; }
.opt:last-child { border-bottom: 0; }
.opt.off { opacity: .5; cursor: not-allowed; }
.opt-right { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; white-space: nowrap; }
.opt input { width: 20px; height: 20px; accent-color: #000; margin: 0; }
.sheet-add[aria-disabled="true"] { background: #555; }
.repeat-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.repeat-actions .btn { padding-left: 12px; padding-right: 12px; }
.op-opts { font-size: 13px; color: var(--muted); }

/* ---------- Phone sign-in ---------- */
.phone-field { display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.phone-field:focus-within { border-color: #000; box-shadow: 0 0 0 3px rgba(0, 0, 0, .08); }
.phone-field .cc { display: grid; place-items: center; padding: 0 12px; background: var(--surface-2); color: var(--ink-2); font-weight: 600; border-right: 1px solid var(--line); }
.field .phone-field input { border: 0 !important; box-shadow: none !important; border-radius: 0; }
.otp-input { font-size: 24px !important; letter-spacing: .5em; text-align: center; font-weight: 700; }
#recaptcha-box { position: fixed; bottom: 0; right: 0; z-index: 3000; }

/* ---------- Payment ---------- */
.pay-element { min-height: 180px; }
.pay-msg { color: var(--danger); min-height: 1em; margin: 12px 0 0; }
.mock-card input { font-variant-numeric: tabular-nums; }
.pay-wait { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pay-wait .grow { min-width: 220px; }
