/* OUE Restaurants — mobile app frontend
   Palette pulled from the brand's own teal/gold/charcoal marks. */
:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --ink: #1b1b1a;
  --ink-soft: #5b584f;
  --line: #e6e1d6;
  --teal: #0e4643;
  --teal-dark: #0a3230;
  --gold: #b48a4a;
  --gold-soft: #ead9bd;
  --shadow: 0 10px 30px rgba(20, 20, 15, 0.10);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --nav-h: 64px;
  --maxw: 460px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #ded8c8;
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}
h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* phone shell */
.app {
  width: 100%;
  max-width: var(--maxw);
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  box-shadow: var(--shadow);
  padding-bottom: calc(var(--nav-h) + 18px);
}

/* top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 10px;
}
.topbar .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal);
}
.topbar .brand img { height: 20px; filter: invert(15%) sepia(10%) saturate(600%) hue-rotate(130deg); }
.topbar-actions { display: flex; gap: 10px; }
.icon-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  padding: 14px 18px 4px;
}

/* section spacing */
.section { padding: 22px 18px 4px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px;
}
.section-head h2 { font-size: 20px; }
.section-head .link { font-size: 12px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .03em; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; display: block;
}
.lede { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* hero */
.hero {
  position: relative;
  margin: 0 18px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}
.hero video, .hero img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 24px;
  color: #fff; z-index: 2;
}
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content h1 { font-size: 27px; line-height: 1.15; color: #fff; }
.hero-content p { color: rgba(255,255,255,.85); font-size: 13.5px; margin-top: 8px; }

.hero-ctas { display: flex; gap: 10px; margin-top: 16px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:active { background: var(--teal-dark); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }

/* CTA cards row (reserve / voucher) */
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 18px 0; }
.cta-card {
  background: var(--surface); border-radius: var(--radius-md); padding: 14px;
  border: 1px solid var(--line);
}
.cta-card .cta-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.cta-card .cta-sub { font-size: 11.5px; color: var(--ink-soft); margin-bottom: 10px; }

/* concept cards (featured horizontal scroll) */
.hscroll {
  display: flex; gap: 12px; overflow-x: auto; padding: 2px 18px 6px;
  scroll-snap-type: x mandatory;
}
.hscroll::-webkit-scrollbar { display: none; }
.feat-card {
  flex: 0 0 62%; scroll-snap-align: start;
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  aspect-ratio: 4/5; background: #111;
}
.feat-card img { width: 100%; height: 100%; object-fit: cover; }
.feat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78) 100%); }
.feat-card .fc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; z-index: 2; }
.feat-card .fc-tag { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-soft); font-weight: 700; }
.feat-card .fc-name { font-family: "Fraunces", serif; font-size: 18px; margin-top: 2px; }
.feat-card .fc-tagline { font-size: 11.5px; color: rgba(255,255,255,.82); margin-top: 3px; }

/* concept grid (concepts list page) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 4px 18px 18px; }
.grid-card {
  border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 3/4; background: #111;
}
.grid-card img { width: 100%; height: 100%; object-fit: cover; }
.grid-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.82) 100%); }
.grid-card .gc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 11px; color: #fff; z-index: 2; }
.grid-card .gc-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-soft); font-weight: 700; }
.grid-card .gc-name { font-family: "Fraunces", serif; font-size: 15px; margin-top: 2px; }

/* concept detail */
.detail-hero { position: relative; aspect-ratio: 4/5; background:#111; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.85) 100%); }
.detail-hero .dh-top { position:absolute; top:0; left:0; right:0; display:flex; justify-content:space-between; padding:16px; z-index:3; }
.detail-hero .dh-body { position:absolute; left:0; right:0; bottom:0; padding: 20px; color:#fff; z-index:2; }
.detail-hero .dh-tag { font-size: 11px; text-transform: uppercase; letter-spacing:.1em; color: var(--gold-soft); font-weight:700; }
.detail-hero .dh-name { font-size: 28px; color:#fff; margin-top:4px; }
.detail-hero .dh-tagline { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 6px; }

.info-list { padding: 16px 18px 0; display: flex; flex-direction: column; gap: 14px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; }
.info-row .ico {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold-soft); color: var(--teal-dark);
  display:flex; align-items:center; justify-content:center; font-size: 14px; flex: none;
}
.info-row .info-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.info-row .info-val { font-size: 14px; line-height: 1.5; margin-top: 2px; }
.info-row .info-val a { color: var(--teal); font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 18px 0; }
.chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 13px; font-size: 12.5px; font-weight: 600;
}
.chip .signature { color: var(--gold); font-weight: 700; }

.gallery-scroll { display:flex; gap: 8px; overflow-x:auto; padding: 4px 18px 4px; }
.gallery-scroll img { width: 118px; height: 118px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }

.quote-block {
  margin: 18px 18px 0; padding: 18px; background: var(--teal); color: #fff; border-radius: var(--radius-md);
}
.quote-block p.q { font-family: "Fraunces", serif; font-size: 15.5px; line-height: 1.5; font-style: italic; }
.quote-block p.a { margin-top: 10px; font-size: 12px; color: var(--gold-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

.detail-ctas { display: flex; gap: 10px; padding: 20px 18px 6px; }
.social-row { display:flex; gap: 10px; padding: 14px 18px 8px; }

.other-concepts { padding: 6px 0 6px; }

/* reserve list */
.res-item {
  display:flex; gap: 12px; align-items:center; padding: 12px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md); margin: 0 18px 10px;
}
.res-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex: none; }
.res-item .ri-name { font-weight: 700; font-size: 14.5px; }
.res-item .ri-sub { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.res-item .ri-plat { font-size: 10.5px; color: var(--teal); font-weight: 700; text-transform: uppercase; margin-top: 3px; letter-spacing:.03em; }
.res-item .ri-action { margin-left: auto; }

/* vouchers */
.tabbar {
  display: flex; gap: 8px; margin: 4px 18px 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px;
}
.tabbar button {
  flex: 1; border: none; background: transparent; padding: 9px 0; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
}
.tabbar button.active { background: var(--teal); color: #fff; }

.voucher-card {
  margin: 16px 18px 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px;
}
.voucher-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.amt-btn {
  border: 1px solid var(--line); background: var(--bg); border-radius: var(--radius-sm);
  padding: 10px 4px; font-weight: 700; font-size: 13px; text-align: center;
}
.amt-btn.active { border-color: var(--teal); background: var(--gold-soft); color: var(--teal-dark); }
.redeem-toggle { display:flex; gap: 8px; margin-top: 14px; }
.redeem-toggle button {
  flex:1; padding: 10px; border-radius: var(--radius-sm); border:1px solid var(--line); background: var(--bg);
  font-size: 12.5px; font-weight: 600;
}
.redeem-toggle button.active { border-color: var(--teal); background: var(--teal); color:#fff; }

.empty-state { text-align:center; padding: 60px 30px; color: var(--ink-soft); }
.empty-state .emoji { font-size: 40px; margin-bottom: 12px; }

/* bottom nav */
.bottom-nav {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 100%; max-width: var(--maxw);
  height: var(--nav-h); background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex; z-index: 50;
}
.bottom-nav a {
  flex: 1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 3px; font-size: 10.5px; font-weight: 600; color: var(--ink-soft);
}
.bottom-nav a .nav-ico { font-size: 19px; }
.bottom-nav a.active { color: var(--teal); }

.toast {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(var(--nav-h) + 16px);
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 13px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 100;
  white-space: nowrap;
}
.toast.show { opacity: 1; }

.footer-note {
  padding: 24px 18px 8px; font-size: 11.5px; color: var(--ink-soft); text-align: center; line-height: 1.6;
}

/* ---------- Home hero slideshow ---------- */
.slideshow {
  position: relative; margin: 0 18px; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; background: #111;
}
.slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .6s ease;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.78) 100%);
}
.slide-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 24px; color:#fff; z-index: 2;
}
.slide-body .eyebrow { color: var(--gold-soft); }
.slide-body h1 { font-size: 25px; line-height: 1.2; color:#fff; }
.slide-body p { color: rgba(255,255,255,.85); font-size: 13px; margin-top: 8px; }
.slide-cta {
  display: inline-flex; align-items:center; gap:6px; margin-top: 14px;
  font-size: 12.5px; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 2px;
}
.slide-dots {
  position: absolute; top: 16px; left: 0; right: 0; display: flex; gap: 6px; justify-content: center; z-index: 3;
}
.slide-dots button {
  width: 22px; height: 3px; border-radius: 2px; border: none; background: rgba(255,255,255,.4); padding: 0;
}
.slide-dots button.active { background: #fff; }
.slide-arrows { position: absolute; inset: 0; display:flex; justify-content:space-between; align-items:center; z-index: 3; pointer-events:none; }
.slide-arrows button {
  pointer-events: auto; width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.35); color: #fff; font-size: 15px; margin: 0 8px;
}

/* ---------- Brand mission ---------- */
.mission {
  margin: 20px 18px 0; padding: 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); text-align: center;
}
.mission p {
  font-family: "Fraunces", "Noto Sans SC", serif; font-size: 15.5px; line-height: 1.6; font-style: italic; color: var(--teal-dark);
}

/* ---------- Home hero video (moved below concepts) ---------- */
.video-section { margin: 0 18px; border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 16/10; background:#111; }
.video-section video { width: 100%; height: 100%; object-fit: cover; }
.video-caption { position:absolute; left:0; right:0; bottom:0; padding: 16px 18px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.7)); color:#fff; }
.video-caption .eyebrow { color: var(--gold-soft); }
.video-caption p { font-size: 13px; margin-top: 4px; color: rgba(255,255,255,.9); }

/* ---------- Testimonials ---------- */
.testi-scroll { display:flex; gap: 12px; overflow-x:auto; padding: 2px 18px 6px; scroll-snap-type: x mandatory; }
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 84%; scroll-snap-align: start; background: var(--teal); color: #fff;
  border-radius: var(--radius-md); padding: 18px; display:flex; flex-direction:column; gap: 10px;
}
.testi-card .testi-src { display:flex; align-items:center; gap: 10px; }
.testi-card .testi-src img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.testi-card .testi-name { font-weight: 700; font-size: 13px; }
.testi-card .testi-tag { font-size: 10.5px; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .04em; }
.testi-card p.q { font-family: "Fraunces", "Noto Sans SC", serif; font-style: italic; font-size: 14.5px; line-height: 1.5; }
.testi-card p.a { font-size: 11.5px; color: var(--gold-soft); font-weight: 700; text-transform: uppercase; letter-spacing:.04em; }

/* ---------- Image gallery + lightbox ---------- */
.gallery-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 8px; padding: 4px 18px 4px; }
.gallery-grid img, .gallery-scroll img {
  cursor: zoom-in; border-radius: var(--radius-sm); object-fit: cover; width: 100%; aspect-ratio: 1/1;
}
.gallery-scroll img { width: 118px; height: 118px; aspect-ratio: auto; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,8,0.94); z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: max(16px, env(safe-area-inset-top)); right: 16px;
  width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.15);
  color: #fff; font-size: 18px;
}
.lightbox-nav { position:absolute; top:50%; transform:translateY(-50%); display:flex; justify-content:space-between; left:8px; right:8px; }
.lightbox-nav button { width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color:#fff; font-size:18px; }

/* ---------- Brand story with logo ---------- */
.brand-story { padding: 20px 18px 0; text-align: center; }
.brand-logo-card {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius-md); padding: 14px 26px; margin: 0 auto 14px;
  box-shadow: var(--shadow);
}
.brand-logo-card img { max-height: 34px; max-width: 200px; object-fit: contain; }
.brand-logo-card img.invert-logo { filter: invert(1); }
.brand-story p { text-align: left; }

/* ---------- Sub-brand blocks ---------- */
.subbrand { margin: 18px 18px 0; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--surface); }
.subbrand img.sb-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; cursor: zoom-in; }
.subbrand .sb-body { padding: 16px; }
.subbrand .sb-logo { height: 26px; max-width: 160px; object-fit: contain; margin-bottom: 8px; }
.subbrand p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.subbrand .sb-link { display:inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--teal); border-bottom: 1px solid var(--teal); }
.subbrand .sb-locations {
  margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line);
  font-size: 12px; font-weight: 600; color: var(--teal-dark); display: flex; gap: 6px; align-items: flex-start;
}
.subbrand .sb-locations .ico { flex: none; opacity: .8; }

/* ---------- Location tabs + map ---------- */
.loc-tabs { display:flex; gap: 8px; overflow-x:auto; padding: 14px 18px 0; }
.loc-tabs::-webkit-scrollbar { display:none; }
.loc-tab {
  flex: none; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
}
.loc-tab.active { background: var(--teal); border-color: var(--teal); color: #fff; }

.loc-panel { padding: 14px 18px 0; }
.map-card {
  display: block; position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 16/9; margin-top: 14px; border: 1px solid var(--line);
  background:
    linear-gradient(rgba(14,70,67,0.88), rgba(14,70,67,0.88)),
    repeating-linear-gradient(0deg, #dcd6c6 0, #dcd6c6 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, #dcd6c6 0, #dcd6c6 1px, transparent 1px, transparent 22px),
    #eee7d4;
}
.map-card .map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  font-size: 30px; filter: drop-shadow(0 4px 6px rgba(0,0,0,.35));
}
.map-card .map-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px;
  background: rgba(0,0,0,.4); color: #fff; font-size: 12px; display:flex; justify-content:space-between; align-items:center; gap: 8px;
}
.map-card .map-label .go { font-weight: 700; color: var(--gold-soft); white-space: nowrap; }
.map-note { font-size: 10.5px; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Region-grouped locations (e.g. Délifrance: outlets stacked within a region tab) ---------- */
.region-panel { display: flex; flex-direction: column; gap: 16px; }
.region-outlet { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.region-outlet:last-child { border-bottom: none; padding-bottom: 0; }
.region-outlet .ro-name { font-family: "Fraunces", serif; font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.region-outlet .map-card { aspect-ratio: 21/9; margin-top: 10px; }

/* ---------- Overseas locations (no Tencent map coverage): grouped list, optionally by sub-brand ---------- */
.overseas-section { margin-top: 18px; padding: 0 18px; }
.overseas-heading {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-soft); padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 10px;
}
.overseas-group + .overseas-group { margin-top: 14px; }
.overseas-group-title {
  font-family: "Fraunces", serif; font-size: 13.5px; font-weight: 600; color: var(--teal-dark); margin-bottom: 8px;
}
.overseas-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.overseas-row:last-child { border-bottom: none; }
.overseas-row .ov-name { font-size: 13px; font-weight: 600; flex: none; }
.overseas-row .ov-addr { font-size: 11.5px; color: var(--ink-soft); text-align: right; }

/* ---------- Featured menu: photo cards (falls back to chip when no photo) ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 4px 18px 0; }
.menu-photo-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; background: #111; cursor: zoom-in; }
.menu-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.menu-photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78) 100%); }
.menu-photo-card .mp-name { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 11px; color: #fff; font-size: 12.5px; font-weight: 700; z-index: 2; }
.menu-photo-card .mp-name .signature { display:block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-soft); margin-top: 2px; }

/* ---------- Menu downloads ---------- */
.menu-downloads { padding: 12px 18px 0; display: flex; flex-direction: column; gap: 8px; }
.menu-download-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 13.5px; font-weight: 600;
}
.menu-download-item .md-ico { color: var(--teal); font-size: 15px; }
.menu-download-item .md-go { font-size: 11.5px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }

/* ---------- Set-menu voucher offers (vouchers.html "套餐礼券" tab) ---------- */
.menu-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 4px 18px 0; }
.menu-offer-card {
  display: block; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
}
.menu-offer-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.menu-offer-card .mo-body { padding: 10px 12px 12px; }
.menu-offer-card .mo-concept {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gold);
}
.menu-offer-card .mo-name { font-family: "Fraunces", "Noto Sans SC", serif; font-size: 14px; margin-top: 2px; line-height: 1.3; }
.menu-offer-card .mo-price { font-size: 14px; font-weight: 700; color: var(--teal-dark); margin-top: 6px; }
.menu-offer-card .mo-price span { font-size: 10.5px; font-weight: 600; color: var(--ink-soft); margin-left: 2px; }

/* ---------- Set-menu voucher detail (menu-voucher.html) ---------- */
.offer-hero { position: relative; margin: 0 18px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: #111; }
.offer-hero img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PIN pad overlay (staff redemption confirmation) ---------- */
.pinpad-overlay {
  position: fixed; inset: 0; background: rgba(10,10,8,0.55); z-index: 600;
  display: flex; align-items: flex-end; justify-content: center;
}
.pinpad-card {
  position: relative; width: 100%; max-width: var(--maxw); background: var(--surface);
  border-radius: 22px 22px 0 0; padding: 22px 22px calc(22px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px rgba(20,20,15,0.18);
}
.pinpad-close {
  position: absolute; top: 14px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--bg); color: var(--ink-soft); font-size: 16px;
}
.pinpad-title { font-family: "Fraunces", serif; font-size: 18px; text-align: center; }
.pinpad-sub { font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-top: 4px; }
.pinpad-hint {
  margin: 12px auto 0; max-width: 260px; text-align: center; font-size: 12px; font-weight: 700;
  color: var(--teal-dark); background: var(--gold-soft); border: 1px dashed var(--gold);
  border-radius: var(--radius-sm); padding: 8px 12px; letter-spacing: .04em;
}
.pinpad-dots { display: flex; gap: 14px; justify-content: center; margin: 18px 0 6px; }
.pinpad-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--teal); background: transparent; }
.pinpad-dot.filled { background: var(--teal); }
.pinpad-error { min-height: 18px; text-align: center; font-size: 12px; font-weight: 600; color: #b3453a; margin-bottom: 4px; }
.pinpad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.pinpad-key {
  border: 1px solid var(--line); background: var(--bg); border-radius: var(--radius-sm);
  padding: 16px 0; font-size: 18px; font-weight: 700; color: var(--ink); text-align: center;
}
.pinpad-key:active { background: var(--gold-soft); border-color: var(--teal); }

/* ---------- Store picker (choose redeeming restaurant for "any restaurant" vouchers) ---------- */
.store-pick-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; max-height: 50vh; overflow-y: auto; }
.store-pick-item {
  width: 100%; text-align: left; border: 1px solid var(--line); background: var(--bg);
  border-radius: var(--radius-sm); padding: 13px 16px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.store-pick-item:active { background: var(--gold-soft); border-color: var(--teal); }
