@font-face {
  font-family: 'SaloTest';
  src: url('SaloTest-Aldo.otf') format('opentype');
  font-display: block;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #0e4e9f;
  --bd: #0e4e9f;
  --bl: #7EA8D8;
  --bll: #A7CCEB;
  --blll: #CFE2F3;
  --cream: #FAFAF8;
  --w: #ffffff;
  --t: #1a1a1a;
  --m: #888;
  --card: #ffffff;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--t);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
  background: transparent;
  transition: background .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1);
}
nav.glass { background: transparent; }
nav.solid-blue { background: var(--blue); }
nav.solid-blue .nav-logo { color: #fff; }
nav.solid-blue .nav-r { color: #fff; }
nav.solid-blue .ham span { background: #fff; }
nav.glass.solid {
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.ham {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: flex; flex-direction: column; gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--w); border-radius: 1px; transition: all .3s;
}
nav.glass.solid .ham span { background: var(--bd); }
.nav-logo {
  font-family: 'SaloTest', sans-serif; font-size: 30px;
  text-transform: uppercase; color: var(--w); text-decoration: none;
  letter-spacing: 2px; line-height: 1; transition: all .4s;
  position: absolute; left: 50%; transform: translateX(-50%);
}
nav.glass .nav-logo { color: var(--w); text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
nav.glass.solid .nav-logo { color: var(--bd); text-shadow: none; }
.nav-r {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--w); text-decoration: none;
  transition: color .3s; padding: 8px;
}
nav.glass.solid .nav-r { color: var(--bd); }

.ov {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.ov.open { opacity: 1; pointer-events: auto; }
.slide {
  position: fixed; top: 0; left: -100%; width: 82%; max-width: 340px;
  height: 100%; background: var(--w); z-index: 200;
  transition: left .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.slide.open { left: 0; }
.slide-head {
  background: var(--blue); padding: 56px 28px 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.slide-logo {
  font-family: 'SaloTest', sans-serif; font-size: 24px;
  text-transform: uppercase; color: var(--w); letter-spacing: 1px;
  text-decoration: none;
}
.slide-x { background: none; border: none; cursor: pointer; padding: 4px; }
.slide-x svg { width: 20px; height: 20px; color: var(--w); }
.slide-links { padding: 20px 0; flex: 1; }
.slide-links a {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600; color: var(--blue);
  text-decoration: none; padding: 16px 28px; transition: background .15s;
}
.slide-links a:active { background: rgba(14,78,159,0.04); }
.slide-links a svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.slide-foot { padding: 20px 28px; border-top: 1px solid rgba(0,0,0,0.05); }
.slide-foot span { font-size: 11px; color: var(--m); }

.slide-menu-group { position: relative; }
.slide-menu-toggle {
  display: flex; align-items: center; gap: 14px; width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--blue);
  background: none; border: none; cursor: pointer;
  padding: 16px 28px; text-align: left; transition: background .15s;
}
.slide-menu-toggle:active { background: rgba(14,78,159,0.04); }
.slide-menu-toggle svg:first-child { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.slide-chevron {
  width: 16px; height: 16px; margin-left: auto; color: var(--blue);
  opacity: 0.5; transition: transform .25s ease;
}
.slide-menu-group.open .slide-chevron { transform: rotate(180deg); }
.slide-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.slide-menu-group.open .slide-sub { max-height: 120px; }
.slide-sub a {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  text-decoration: none; padding: 10px 28px 10px 62px;
  opacity: 0.75; transition: background .15s, opacity .15s;
}
.slide-sub a:active { background: rgba(14,78,159,0.04); opacity: 1; }

.hero {
  position: relative; width: 100%; height: calc(100svh + 80px);
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  will-change: transform;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 64px, transparent 65px);
}
.zigzag {
  display: block; width: 100%; position: relative; z-index: 2;
  vertical-align: bottom;
}
.zigzag-hero {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: block; width: 100%; height: 55px;
}
.pre-footer-marquee {
  background: var(--blue); overflow: hidden; padding: 20px 0;
}
.marquee {
  display: flex; width: max-content;
  animation: marquee 10s linear infinite;
}
.marquee-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 4px;
  color: var(--w); white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.btn-w {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: var(--blue); color: var(--w); padding: 14px 28px; border-radius: 50px;
  text-decoration: none; transition: all .3s;
}
.btn-w:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,78,159,0.25); }
.btn-o {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; color: var(--bd); padding: 14px 28px;
  border-radius: 50px; text-decoration: none;
  border: 1.5px solid rgba(14,78,159,0.25); transition: all .3s;
}
.btn-o:hover { background: rgba(14,78,159,0.04); border-color: var(--blue); }

.wm { padding: 40px 0 40px; background: var(--cream); }
.sec-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--m); padding: 0 24px; margin-bottom: 20px;
}
.wm-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 0 24px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.wm-scroll::-webkit-scrollbar { display: none; }
.wm-card {
  flex: 0 0 auto; width: 150px; scroll-snap-align: start;
  background: var(--card); border-radius: 16px; overflow: hidden;
  text-decoration: none; color: var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform .2s;
}
.wm-card:hover { transform: translateY(-3px); }
.wm-card:active { transform: scale(.98); }
.wm-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.wm-card-info { padding: 10px 12px 12px; }
.wm-card-name {
  font-size: 13px; font-weight: 800; color: var(--bd);
  margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.3px;
}
.wm-card-from { font-size: 11px; font-weight: 400; color: var(--m); }

.bs-full { width: 100%; background: var(--cream); }
.bs-full-img { width: 100%; display: block; object-fit: cover; }

.wim { padding: 48px 0 56px; background: var(--w); }
.wim-inner { max-width: 500px; margin: 0 auto; padding: 0 24px; }
.wim-hero { margin-bottom: 32px; }
.wim-big {
  font-size: 72px; font-weight: 900; color: var(--bd);
  line-height: .85; letter-spacing: -3px; margin-bottom: 8px;
}
.wim-big-sub { font-size: 15px; font-weight: 400; color: #666; line-height: 1.55; }
.wim-big-sub strong { color: var(--bd); font-weight: 700; }
.wim-divider { width: 40px; height: 2px; background: var(--blll); margin: 28px 0; }
.wim-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.wim-stat-num {
  font-size: 44px; font-weight: 900; color: var(--bd);
  line-height: .85; letter-spacing: -2px; margin-bottom: 6px;
}
.wim-stat-text { font-size: 13px; font-weight: 400; color: #777; line-height: 1.45; }
.wim-divider2 { width: 100%; height: 1px; background: rgba(0,0,0,0.05); margin-bottom: 28px; }
.wim-quote {
  font-size: 14px; font-weight: 400; color: #666; line-height: 1.6;
  margin-bottom: 32px; padding-left: 20px; border-left: 2px solid var(--blue);
}
.wim-punch {
  font-size: 24px; font-weight: 900; color: var(--blue);
  line-height: 1.15; letter-spacing: -0.5px;
}
.wim .sec-label { padding: 0; }
.fp-section .sec-label { padding: 0; }

.stats {
  background: var(--bd); padding: 48px 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center;
}
.stn { font-size: 36px; font-weight: 900; color: var(--w); line-height: 1; margin-bottom: 4px; letter-spacing: -1px; }
.stl { font-size: 9px; font-weight: 600; color: var(--bll); letter-spacing: 2px; text-transform: uppercase; }

/* FUEL PASS TIERS */
.fp-section { background: var(--cream); padding: 48px 0 40px; }
.fp-inner { max-width: 375px; margin: 0 auto; padding: 0 24px; }
.fp-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--blue);
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 24px;
}
.fp-intro {
  text-align: center; background: #fff;
  padding: 16px 24px 12px;
}
.fp-intro-eyebrow {
  font-size: 11px; font-weight: 500; color: #0E4E9F;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px;
}
.fp-intro-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 700; color: #0A3A75;
  line-height: 1.2; margin: 0;
}
.fp-intro-sub {
  font-size: 14px; color: #555; margin: 0;
}

/* Shared card */
.fp-card {
  border-radius: 16px; padding: 28px 24px; margin-bottom: 16px;
}
.fp-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 4px; color: var(--blue);
}
.fp-price {
  font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: 2px;
}
.fp-price-dark { color: var(--blue); }
.fp-price-alt {
  font-size: 12px; font-weight: 400; margin-bottom: 16px; opacity: 0.6;
}

/* Badges */
.fp-badge {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}
.fp-badge-blue { background: var(--blll); color: var(--blue); }
.fp-badge-light { background: rgba(255,255,255,0.2); color: var(--w); }
.fp-badge-warm { background: #FFF3E0; color: #BF6C00; }

/* Perks */
.fp-perks { margin-bottom: 16px; }
.fp-perk {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 400; line-height: 1.45; padding: 5px 0;
}
.fp-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.fp-perk-connector {
  font-size: 12px; font-weight: 400; font-style: italic;
  line-height: 1.4; padding: 2px 0 6px;
}
.fp-perk-connector-light { color: rgba(255,255,255,0.85); }
.fp-perk-connector-dark { color: #555; }

/* Rewards ladder */
.fp-ladder { margin-top: 14px; margin-bottom: 16px; }
.fp-ladder-eyebrow {
  font-size: 11px; font-weight: 500; color: #666;
  letter-spacing: 1px; margin-bottom: 10px;
}
.fp-ladder-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 6px 0;
}
.fp-ladder-row + .fp-ladder-row { border-top: 0.5px solid #eee; }
.fp-ladder-pts { color: #0E4E9F; font-weight: 500; width: 70px; flex-shrink: 0; }
.fp-ladder-reward { color: #222; font-weight: 400; }

/* Card notes */
.fp-card-note {
  font-size: 11px; font-weight: 400; color: var(--m); margin-bottom: 16px;
}
.fp-card-note-warm { color: #9E7A47; font-style: italic; }
.fp-card-callout {
  font-size: 12px; font-weight: 600; color: var(--bll); margin-bottom: 16px;
}

/* Buttons */
.fp-btn-outline {
  display: block; text-align: center; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--blue); background: var(--w);
  border: 1.5px solid rgba(14,78,159,0.25); padding: 14px; border-radius: 50px;
  text-decoration: none; transition: all .2s;
}
.fp-btn-outline:hover { border-color: var(--blue); background: rgba(14,78,159,0.03); }
.fp-btn-blue {
  display: block; width: 100%; text-align: center; font-size: 14px; font-weight: 700;
  color: #fff; background: #0E4E9F; border: none; cursor: pointer;
  padding: 13px; border-radius: 999px; transition: all .2s;
}
.fp-btn-blue:hover { background: #0A3A75; }
.fp-btn-white {
  display: block; text-align: center; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--blue); background: var(--w);
  padding: 14px; border-radius: 50px; text-decoration: none; transition: all .2s;
}
.fp-btn-white:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.fp-btn-warm {
  display: block; text-align: center; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; color: #7A5A20; background: #FFF3E0;
  padding: 14px; border-radius: 50px; text-decoration: none; transition: all .2s;
}
.fp-btn-warm:hover { background: #FFE8CC; }
.fp-family-plus-link {
  display: block; text-align: center; margin-top: 8px;
  font-size: 12px; font-weight: 500; color: #0A3A75;
  text-decoration: none;
}
.fp-family-plus-link:hover { text-decoration: underline; }

/* Tier-specific backgrounds */
.fp-free {
  background: var(--w); border: 1px solid rgba(0,0,0,0.06);
  color: var(--blue);
}
.fp-plus {
  background: var(--blue); color: var(--w);
  box-shadow: 0 8px 32px rgba(14,78,159,0.25);
}
.fp-plus .fp-card-title { color: var(--w); }
.fp-plus .fp-price { color: var(--w); }
.fp-plus .fp-price-alt { color: rgba(255,255,255,0.5); }
.fp-plus .fp-perk { color: rgba(255,255,255,0.9); }
.fp-family {
  background: #FFFBF5; border: 1px solid rgba(191,108,0,0.1);
  color: var(--blue);
}

.fp-disclaimer {
  font-size: 11px; font-weight: 400; color: var(--m);
  text-align: center; margin-top: 8px; padding: 0 20px;
}
.fp-see-all {
  display: block; text-align: center; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  text-decoration: none;
}

@media (min-width: 768px) {
  .fp-inner { max-width: 420px; }
  .fp-headline { font-size: 28px; }
}

.loc { display: flex; align-items: center; gap: 16px; padding: 0 24px 48px; background: var(--cream); }
.loc-pin {
  width: 44px; height: 44px; background: var(--blll); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.loc-pin svg { width: 20px; height: 20px; color: var(--blue); }
.loc-name { font-size: 14px; font-weight: 700; color: var(--bd); }
.loc-addr { font-size: 12px; font-weight: 400; color: var(--m); }
.loc-open {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--blue); margin-top: 2px;
}
.loc-open::before {
  content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%;
}

footer { background: var(--bd); padding: 44px 24px 28px; color: var(--w); }
.fl {
  font-family: 'SaloTest', sans-serif; font-size: 26px;
  text-transform: uppercase; color: var(--w); letter-spacing: 1px; margin-bottom: 4px;
}
.ftg { font-size: 11px; font-weight: 400; color: var(--bll); margin-bottom: 28px; }
.fc { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.fc h4 {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--bll); margin-bottom: 10px;
}
.fc a {
  display: block; font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.5); text-decoration: none; padding: 3px 0;
}
.fc a:hover { color: var(--w); }
.soc { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 6px; }
.soc a {
  width: 32px; height: 32px; background: rgba(255,255,255,0.06);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.soc svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); }
.soc-h { text-align: center; font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.f-legal {
  font-family: 'Poppins', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.35); margin-bottom: 12px;
}
.f-legal a {
  color: rgba(255,255,255,0.35); text-decoration: none;
}
.f-legal a:hover { color: rgba(255,255,255,0.6); }
.fb {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px; font-size: 10px; color: rgba(255,255,255,0.2);
}

@media (min-width: 768px) {
  nav { padding: 0 48px; height: 72px; }
  .nav-logo { font-size: 34px; }
  .pre-footer-marquee { padding: 24px 0; }
  .marquee-text { font-size: 18px; letter-spacing: 5px; }
  .wm { padding: 56px 0 48px; }
  .sec-label { padding: 0 48px; }
  .wm-scroll { padding: 0 48px; gap: 20px; }
  .wm-card { width: 180px; }
  .wim { padding: 72px 0 80px; }
  .wim-inner { padding: 0 48px; }
  .wim-inner { max-width: 560px; }
  .wim-big { font-size: 88px; }
  .wim-big-sub { font-size: 17px; }
  .wim-stat-num { font-size: 52px; }
  .wim-punch { font-size: 28px; }
  .stats { grid-template-columns: repeat(3, 1fr); padding: 60px 48px; }
  .stn { font-size: 48px; }
  .loc { padding: 0 48px 56px; max-width: 500px; margin: 0 auto; }
  footer { padding: 52px 48px 32px; }
  .f-top { display: flex; justify-content: space-between; align-items: flex-start; }
  .fc { gap: 56px; max-width: 440px; margin-left: auto; margin-bottom: 0; }
}

@keyframes fu {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fab {
  position: fixed; bottom: 24px; left: 20px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: var(--w);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(14,78,159,0.35);
  transition: all .3s; text-decoration: none;
}
.fab svg { width: 22px; height: 22px; }
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(14,78,159,0.45); }
.fab:active { transform: scale(0.95); }

.rv { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.rv.v { opacity: 1; transform: translateY(0); }

/* MENU PAGE */

.menu-hero {
  padding-top: 64px; overflow: hidden;
  background: var(--blue);
}
.menu-hero-img {
  width: 100%; height: 300px; object-fit: cover;
  display: block;
}
.menu-header {
  background: var(--blue);
  padding: 20px 24px 22px;
  text-align: center;
}
.menu-hero-label {
  font-family: 'Poppins', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--w);
  letter-spacing: -0.5px; line-height: 1; margin-bottom: 8px;
}
.menu-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}
.menu-quiz-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65);
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer;
}
.menu-change-loc {
  display: inline-block; margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45);
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer; transition: color .2s;
}
.menu-change-loc:hover { color: rgba(255,255,255,0.7); }

/* Location Gate */
.loc-gate {
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column;
}
.loc-gate-header {
  background: var(--blue);
  padding: 80px 24px 40px;
  text-align: center;
}
.loc-gate-icon {
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.loc-gate-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--w);
  line-height: 1.2; margin-bottom: 8px;
}
.loc-gate-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.loc-gate-body {
  flex: 1; background: var(--cream);
  padding: 28px 24px 64px;
}
.loc-gate-list {
  max-width: 440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.loc-gate-loading {
  display: flex; flex-direction: column; gap: 12px;
}
.loc-skel {
  height: 88px; border-radius: 16px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f4f4f4 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: locShimmer 1.5s infinite;
}
@keyframes locShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.loc-gate-error {
  text-align: center; padding: 32px 0;
}
.loc-gate-error p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--m);
  margin-bottom: 20px; line-height: 1.5;
}
.loc-retry {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--w);
  background: var(--blue); border: none; border-radius: 50px;
  padding: 14px 36px; cursor: pointer;
  transition: opacity .2s;
}
.loc-retry:hover { opacity: 0.9; }
.loc-card {
  display: block; width: 100%; text-align: left;
  padding: 20px 22px; border-radius: 16px;
  border: 1.5px solid rgba(14,78,159,0.06);
  background: var(--w); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all .2s; font-family: 'Poppins', sans-serif;
}
.loc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(14,78,159,0.12);
  transform: translateY(-2px);
}
.loc-card:active { transform: scale(0.985); }
.loc-card-name {
  font-size: 17px; font-weight: 700; color: var(--blue);
  margin-bottom: 2px;
}
.loc-card-city {
  font-size: 13px; font-weight: 600; color: var(--blue);
  opacity: 0.6; margin-bottom: 4px;
}
.loc-card-addr {
  font-size: 13px; font-weight: 400; color: var(--m);
  line-height: 1.4;
}

/* Quiz Modal */
.quiz-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: none; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.quiz-modal.open { display: flex; opacity: 1; pointer-events: auto; }
.quiz-sheet {
  background: var(--w); border-radius: 24px 24px 0 0;
  width: 100%; max-width: 500px; max-height: 90vh;
  overflow-y: auto; padding: 0 0 40px;
  transform: translateY(100%); transition: transform .35s cubic-bezier(.32,.72,0,1);
}
.quiz-modal.open .quiz-sheet { transform: translateY(0); }
.quiz-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 12px; position: sticky; top: 0;
  background: var(--w); z-index: 2;
}
.quiz-head-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--blue);
}
.quiz-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(14,78,159,0.06); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.quiz-body { padding: 8px 24px 0; }
.quiz-question {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--blue);
  line-height: 1.3; margin-bottom: 24px;
}
.quiz-opts { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 16px;
  border: 2px solid rgba(14,78,159,0.1); background: var(--w);
  cursor: pointer; transition: all .2s; text-align: left;
  font-family: 'Poppins', sans-serif;
}
.quiz-opt:hover, .quiz-opt:active {
  border-color: var(--blue); background: rgba(14,78,159,0.04);
  transform: scale(1.01);
}
.quiz-opt-icon { font-size: 24px; flex-shrink: 0; }
.quiz-opt-label {
  font-size: 15px; font-weight: 600; color: var(--blue);
}
.quiz-progress {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px; padding-bottom: 8px;
}
.quiz-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(14,78,159,0.15); transition: all .3s;
}
.quiz-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* Quiz Results */
.quiz-results-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--blue);
  text-align: center; margin-bottom: 4px;
}
.quiz-results-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--m);
  text-align: center; margin-bottom: 24px;
}
.quiz-results { display: flex; flex-direction: column; gap: 14px; }
.quiz-result-card {
  display: flex; align-items: center; gap: 16px;
  padding: 14px; border-radius: 18px;
  border: 2px solid rgba(14,78,159,0.08); background: var(--w);
  text-decoration: none; transition: all .2s; position: relative;
}
.quiz-result-card:hover {
  border-color: var(--blue); background: rgba(14,78,159,0.02);
}
.quiz-result-rank {
  position: absolute; top: -6px; left: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: var(--w);
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.quiz-result-img {
  width: 72px; height: 72px; border-radius: 14px;
  object-fit: cover; flex-shrink: 0;
}
.quiz-result-info { flex: 1; min-width: 0; }
.quiz-result-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--blue);
  margin-bottom: 2px;
}
.quiz-result-why {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 400; color: var(--m);
  line-height: 1.4;
}
.quiz-result-price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--blue);
  margin-top: 4px;
}
.quiz-retake {
  display: block; width: 100%; margin-top: 24px;
  padding: 14px; border-radius: 50px; border: none;
  background: var(--blue); color: var(--w);
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
}
.quiz-retake:hover { opacity: 0.9; }

@media (min-width: 500px) {
  .quiz-sheet { border-radius: 24px; margin: auto; max-height: 85vh; }
  .quiz-modal { align-items: center; }
}

.menu-tabs {
  position: sticky; top: 0; z-index: 50;
  display: flex; gap: 0; overflow-x: auto;
  background: var(--w); border-bottom: 1px solid rgba(0,0,0,0.06);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto; padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  color: var(--m); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.menu-tab.active {
  color: var(--blue); border-bottom-color: var(--blue);
}

.menu-body {
  background: var(--cream); padding: 0 24px 40px;
  max-width: 600px; margin: 0 auto;
}

.menu-section { padding-top: 32px; }
.menu-section-head { margin-bottom: 20px; }
.menu-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px; font-weight: 900; color: var(--blue);
  letter-spacing: -0.3px; margin-bottom: 4px;
}
.menu-section-sizes {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500; color: var(--m);
  letter-spacing: 0.3px;
}

.menu-subsection { margin-top: 28px; margin-bottom: 16px; }
.menu-subsection-title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px; font-weight: 800; color: var(--blue);
  margin-bottom: 4px;
}

.menu-footer-links {
  text-align: center; padding: 32px 24px 16px;
}
.menu-footer-link {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--blue); text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-item {
  display: flex; align-items: center;
  gap: 16px; padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-decoration: none; color: inherit;
  transition: background .15s;
}
a.menu-item:active { background: rgba(14,78,159,0.04); }
.menu-item:last-child { border-bottom: none; }
.menu-item-arrow {
  width: 18px; height: 18px; color: var(--m);
  flex-shrink: 0;
}
.menu-item-img {
  width: 72px; height: 72px; border-radius: 12px;
  object-fit: cover; flex-shrink: 0;
}
.menu-card-img {
  width: 80px; height: 80px; border-radius: 12px;
  object-fit: cover; flex-shrink: 0;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--blue);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--m);
  line-height: 1.5;
}
.menu-item-var {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 500; font-style: italic;
  color: var(--blue); margin-top: 2px;
}
.menu-item-price {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--blue);
  white-space: nowrap; flex-shrink: 0; padding-top: 1px;
}
.claim-banner {
  display: flex; align-items: center; gap: 12px;
  max-width: 600px; margin: 0 auto 16px; padding: 14px 20px;
  background: #E8F5E9; border: 1px solid #A5D6A7; border-radius: 12px;
}
.claim-banner-icon { flex-shrink: 0; color: #2E7D32; }
.claim-banner-text { font-family: 'Poppins', sans-serif; font-size: 13px; color: #1B5E20; line-height: 1.4; }
.menu-item-claim { background: rgba(46,125,50,0.04); border-left: 3px solid #4CAF50; }
.item-claim-banner { margin: 0 0 16px; }
.menu-item-avail {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 600; color: var(--bl);
  margin-top: 2px;
}
.menu-item.sold-out {
  pointer-events: none; opacity: 0.45;
}
.menu-item.sold-out .menu-item-avail {
  color: #c44;
  font-weight: 700;
}

.menu-item-expandable { cursor: pointer; flex-wrap: wrap; }
.menu-item-expandable .menu-item-name { display: flex; align-items: center; gap: 6px; }
.menu-chevron {
  width: 16px; height: 16px; color: var(--m);
  transition: transform .2s; flex-shrink: 0;
}
.menu-item-expandable.expanded .menu-chevron { transform: rotate(180deg); }
.menu-item-sizes {
  display: none; margin-top: 8px;
}
.menu-item-expandable.expanded .menu-item-sizes { display: flex; flex-direction: column; gap: 4px; }
.menu-size-opt {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--blue);
}

.menu-skel-wrap { padding: 0 20px; }
.menu-skel-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.menu-skel-text { flex: 1; }
.menu-skel-line { height: 14px; border-radius: 7px; background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 200% 100%; animation: locShimmer 1.2s infinite; margin-bottom: 8px; }
.menu-skel-line.w60 { width: 60%; }
.menu-skel-line.w40 { width: 40%; }
.menu-error { text-align: center; padding: 60px 20px; font-family: 'Poppins', sans-serif; color: var(--m); }
.menu-error p { margin-bottom: 16px; }

.store-closed-banner {
  font-family: 'Poppins', sans-serif;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 0 24px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #C53030;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.store-closed-banner svg { flex-shrink: 0; width: 18px; height: 18px; }
.store-closed-warning {
  background: #FFFFF0;
  border-color: #FEFCBF;
  color: #B7791F;
}
.store-open-banner {
  background: #F0FFF4;
  border-color: #C6F6D5;
  color: #276749;
}

/* Pickup time picker */
#pickupSection {
  margin: 20px 0 16px;
  padding: 16px 20px;
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
}
.pickup-helper {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--m);
  margin-bottom: 12px;
  line-height: 1.4;
}
.pickup-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 6px;
}
.pickup-select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--t);
  background: #fff;
  border: 1px solid #CBD5E0;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.pickup-select:focus { outline: none; border-color: var(--blue); }
.pickup-fields {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.pickup-field { flex: 1; }
.pickup-input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--t);
  background: #fff;
  border: 1px solid #CBD5E0;
  border-radius: 10px;
}
.pickup-input:focus { outline: none; border-color: var(--blue); }
.pickup-input::placeholder { color: #A0AEC0; }
.pickup-error {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #C53030;
  margin-top: 10px;
}

/* Item detail page */
/* ── ITEM DETAIL PAGE ── */
.item-page {
  background: var(--w);
  min-height: 100vh;
  padding-bottom: 48px;
}
.item-hero {
  position: relative;
  background: var(--cream);
  padding-top: 64px;
}
.item-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 64px; background: var(--blue);
}
.item-back {
  position: absolute; top: 72px; left: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.item-back svg { color: var(--blue); }
.item-hero-img {
  display: block; width: 100%; height: 380px;
  object-fit: contain; object-position: center center;
}
.item-details {
  padding: 28px 24px 0;
  max-width: 600px; margin: 0 auto;
}
.item-category {
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--bl); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 6px;
}
.item-title {
  font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 900;
  color: var(--blue); letter-spacing: -0.5px; line-height: 1.1;
  margin-bottom: 12px;
}
.item-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 24px;
}
.item-price {
  font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--blue);
}
.item-size-label-inline {
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--m);
}
.item-divider {
  height: 1px; background: rgba(14,78,159,0.08); margin-bottom: 24px;
}
.item-section-label {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--blue); margin-bottom: 12px; text-transform: uppercase;
  letter-spacing: 1px;
}
.item-ingredients {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.item-ing-chip {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--blue); background: rgba(14,78,159,0.06);
  padding: 8px 16px; border-radius: 50px;
}
.item-sizes-section { margin-bottom: 32px; }
.item-sizes-grid {
  display: flex; gap: 12px;
}
.item-size-card {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 18px 12px;
  border: 2px solid rgba(14,78,159,0.1); border-radius: 16px;
  background: var(--w); cursor: pointer;
  transition: all .2s;
}
.item-size-card:hover { border-color: rgba(14,78,159,0.3); }
.item-size-card.active {
  border-color: var(--blue);
  background: var(--blue);
}
.item-size-card.active .item-size-amount,
.item-size-card.active .item-size-price {
  color: #fff;
}
.item-size-amount {
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--blue);
}
.item-size-price {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--m);
}
/* Add-ins */
.item-addins-section { margin-bottom: 32px; }
.item-addins-sub {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--m); margin: -6px 0 14px;
}
.item-addins-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.item-addin-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 16px 10px;
  border: 2px solid rgba(14,78,159,0.1); border-radius: 16px;
  background: var(--w); cursor: pointer;
  transition: all .2s;
}
.item-addin-card:hover { border-color: rgba(14,78,159,0.3); }
.item-addin-card.selected {
  border-color: var(--blue);
  background: rgba(14,78,159,0.04);
}
.item-addin-icon { font-size: 22px; margin-bottom: 2px; }
.item-addin-name {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--blue);
}
.item-addin-price {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 500;
  color: var(--m);
}

@media (min-width: 768px) {
  .menu-header { padding: 24px 48px 26px; }
  .menu-hero-img { height: 400px; }
  .menu-hero-label { font-size: 46px; }
  .menu-hero-sub { font-size: 15px; }
  .menu-body { padding: 0 48px 56px; }
  .menu-tab { padding: 16px 24px; font-size: 13px; }
  .menu-section-title { font-size: 34px; }
  .menu-card-img { width: 100px; height: 100px; }
}

/* ── MENU LOADING STATE ── */
.menu-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 12px;
}
.menu-syncing .menu-section { opacity: 0.5; transition: opacity 0.3s; }
.menu-syncing .menu-loading { display: flex; }
.menu-body:not(.menu-syncing) .menu-loading { display: none; }
.menu-loading-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--blll);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: menuSpin 0.7s linear infinite;
}
.menu-loading-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--m);
}
@keyframes menuSpin { to { transform: rotate(360deg); } }

/* ── BOWL CUSTOMIZATION ── */
.item-customize-section {
  margin-top: 8px;
}
.cater-bowl-customize {
  padding: 12px 0 4px;
}
.bowl-group {
  margin-bottom: 20px;
}
.bowl-group-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.bowl-group-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--m);
}
.bowl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bowl-chip {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: #f5f5f5;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bowl-chip:active { transform: scale(0.97); }
.bowl-chip.selected {
  background: var(--blll);
  border-color: var(--bl);
  color: var(--blue);
  font-weight: 600;
}
.bowl-chip-tag {
  font-size: 10px;
  font-weight: 600;
  color: #4a9;
  background: #e6f7ef;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── ORDER BUTTON ── */
.item-order-section {
  margin-top: 28px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(14,78,159,0.08);
}
.item-order-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.1s;
}
.item-order-btn:hover { opacity: 0.9; }
.item-order-btn:active { transform: scale(0.98); }
.item-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.item-order-status {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #c0392b;
  text-align: center;
  margin-top: 10px;
  min-height: 18px;
}

.item-back-text {
  display: inline-block;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--blue); text-decoration: none;
  margin-bottom: 24px;
}
.item-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; margin-bottom: 16px;
  border-top: 1px solid rgba(14,78,159,0.08);
}
.item-total-label {
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--blue);
}
.item-total-price {
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--blue);
}
.item-product-img {
  display: block; max-width: 280px; width: 100%; margin: 0 auto 24px;
  border-radius: 16px; object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.item-recipe-text {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 400;
  color: #888; line-height: 1.6; margin-bottom: 20px;
}
.item-mod-boost-heading {
  color: #0E4E9F; font-size: 13px; letter-spacing: 1px;
}
.item-mod-list { margin-bottom: 16px; }
.item-mod-list-name {
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--m); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.item-mod-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.item-mod-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 50px;
  border: 1px solid var(--blue); background: var(--w);
  font-family: 'Poppins', sans-serif; font-size: 13px;
  color: var(--blue); cursor: pointer;
  transition: all .15s;
}
.item-mod-pill:hover { background: rgba(14,78,159,0.04); }
.item-mod-pill.active {
  background: var(--blue); color: #fff;
  border-color: var(--blue);
}
.item-mod-pill-name { font-weight: 600; }
.item-mod-pill-price { font-weight: 500; white-space: nowrap; }

/* Item description */
.item-description {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}
/* Loading skeleton */
.item-loading-state .item-hero {
  position: relative;
  background: var(--cream);
  padding-top: 64px;
}
.item-loading-state .item-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 64px; background: var(--blue);
}
.item-skel-img {
  width: 100%; height: 380px;
  background: linear-gradient(110deg, #eee 8%, #f5f5f5 18%, #eee 33%);
  background-size: 200% 100%;
  animation: itemShimmer 1.5s linear infinite;
}
.item-skel-line {
  background: linear-gradient(110deg, #eee 8%, #f5f5f5 18%, #eee 33%);
  background-size: 200% 100%;
  animation: itemShimmer 1.5s linear infinite;
  border-radius: 6px;
}
.item-loading-state .item-details {
  padding: 28px 24px 0;
}
@keyframes itemShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Fallback hero spacer */
.item-hero-fallback {
  width: 100%; height: 200px;
  background: var(--blue);
}

@media (min-width: 768px) {
  .item-hero-img { height: 460px; }
  .item-skel-img { height: 460px; }
  .item-details { padding: 36px 48px 0; }
  .item-loading-state .item-details { padding: 36px 48px 0; }
  .item-title { font-size: 38px; }
  .item-price { font-size: 30px; }
  .item-addins-grid { grid-template-columns: repeat(4, 1fr); }
  .item-order-btn { max-width: 400px; margin: 0 auto; }
  .item-product-img { max-width: 340px; }
}

/* ── OUR STORY PAGE ── */
.story-hero {
  background: var(--blue);
}
.story-hero-img { padding-top: 64px; overflow: hidden; }
.story-hero-cover {
  width: 100%; height: 300px; object-fit: cover; display: block;
}
.story-heading {
  background: var(--blue);
  padding: 20px 24px 22px;
  text-align: center;
}
.story-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--w);
  letter-spacing: -0.5px; line-height: 1; margin: 0 0 8px;
}
.story-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px; margin: 0 0 6px;
}
.story-img-caption {
  text-align: center;
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.story-body {
  padding: 48px 24px 56px;
  background: var(--w);
}
.story-body .story-section,
.story-body .story-divider,
.story-body .story-punch {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.story-section {
  margin-bottom: 36px;
}
.story-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.35;
  margin-bottom: 12px;
}
.story-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}
.story-divider {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 48px auto;
}
p.story-punch {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--bll);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-location {
  font-size: 13px;
  font-weight: 500;
  color: var(--m);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .story-hero-cover { height: 400px; }
  .story-hero-title, .fp-page-label { font-size: 46px; }
  .story-hero-sub { font-size: 15px; }
  .story-img-full img { height: 420px; }
  .story-body { padding: 64px 48px 72px; }
  .story-lead { font-size: 24px; }
  .story-body p { font-size: 16px; }
  p.story-punch { font-size: 16px; }
}

/* ── FIND US PAGE ── */
.findus-hero {
  padding-top: 64px;
  background: var(--blue);
  text-align: center;
  padding-bottom: 40px;
}
.findus-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--w);
  margin: 24px 0 8px;
  letter-spacing: -0.5px;
}
.findus-hero-sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}
.findus-body {
  padding: 48px 24px 56px;
  background: var(--w);
  text-align: center;
}
.findus-location, .findus-map, .findus-info, .findus-punch {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.findus-location { margin-bottom: 32px; }
.findus-name {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.findus-sub-loc {
  font-size: 14px;
  color: var(--m);
}
.findus-map { margin-bottom: 40px; }
.findus-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 16px;
  display: block;
}
.findus-map-link {
  display: inline-block; margin-top: 12px;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--blue); text-decoration: underline;
}
.findus-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.findus-block-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.findus-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.findus-address-link {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid rgba(14,78,159,0.2);
  transition: border-color .2s;
}
.findus-address-link:hover { border-color: var(--blue); }
.findus-contact-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.findus-contact-link:hover { text-decoration: underline; }
.findus-punch {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

@media (min-width: 768px) {
  .findus-hero { padding-bottom: 56px; }
  .findus-hero-title { font-size: 46px; }
  .findus-hero-sub { font-size: 15px; }
  .findus-body { padding: 64px 48px 72px; }
  .findus-name { font-size: 30px; }
  .findus-map iframe { height: 400px; }
  .findus-punch { font-size: 20px; }
}

/* ── CATERING PAGE ── */
.cater-hero {
  padding-top: 64px; overflow: hidden;
  background: var(--blue);
}
.cater-hero-img {
  width: 100%; height: 300px; object-fit: cover;
  object-position: center center;
  display: block;
}
.cater-header {
  background: var(--blue);
  padding: 20px 24px 22px;
  text-align: center;
}
.cater-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--w);
  letter-spacing: -0.5px; line-height: 1; margin-bottom: 8px;
}
.cater-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.65); letter-spacing: 0.3px;
}
.cater-body {
  padding: 56px 24px 56px; background: var(--w);
}
.cater-intro, .cater-section, .cater-cta-section, .cater-details {
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Intro */
.cater-intro { text-align: center; margin-bottom: 16px; }
.cater-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--blue);
  margin-bottom: 12px; line-height: 1.3;
}
.cater-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 400; color: #666;
  line-height: 1.8;
}

.cater-section { margin-bottom: 56px; }
.cater-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--blue);
  text-align: center; margin-bottom: 24px;
}

/* How It Works */
.cater-steps {
  display: flex; flex-direction: column; gap: 16px;
}
.cater-step {
  text-align: center; padding: 28px 24px;
  border-radius: 20px; background: var(--cream);
  border: 1px solid rgba(14,78,159,0.04);
}
.cater-step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--blue); color: var(--w);
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.cater-step-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--blue);
  margin-bottom: 6px;
}
.cater-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #666; line-height: 1.6;
}

/* Menu Grid */
.cater-menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cater-menu-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 16px 20px; border-radius: 20px;
  border: 2px solid rgba(14,78,159,0.08);
  background: var(--w); text-decoration: none;
  transition: all .25s;
}
.cater-menu-card:hover {
  border-color: var(--blue);
  background: rgba(14,78,159,0.02);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,78,159,0.08);
}
.cater-menu-card-full {
  grid-column: 1 / -1;
  background: var(--blue);
  border-color: var(--blue);
}
.cater-menu-card-full .cater-menu-icon svg { stroke: var(--w); }
.cater-menu-card-full .cater-menu-name { color: var(--w); }
.cater-menu-card-full .cater-menu-range { color: rgba(255,255,255,0.6); }
.cater-menu-card-full:hover {
  background: #0b3f82; border-color: #0b3f82;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,78,159,0.25);
}
.cater-menu-icon {
  width: 36px; height: 36px; margin-bottom: 10px;
}
.cater-menu-icon svg {
  width: 100%; height: 100%; stroke: var(--blue);
}
.cater-menu-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--blue);
  margin-bottom: 2px;
}
.cater-menu-range {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500; color: var(--m);
}

/* Order Builder */
.cater-builder-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #666; text-align: center;
  margin-top: -16px; margin-bottom: 28px;
}
.cater-cat { margin-bottom: 24px; }
.cater-cat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--blue);
  padding: 12px 0; border-bottom: 2px solid rgba(14,78,159,0.08);
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.cater-cat-price {
  font-size: 12px; font-weight: 600; color: var(--bl);
}
.cater-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cater-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 500; color: #333;
  flex: 1; min-width: 0;
}
.cater-item-price-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 600; color: var(--bl);
  flex-shrink: 0;
}
.cater-qty {
  display: flex; align-items: center; gap: 0;
  border: 2px solid rgba(14,78,159,0.1); border-radius: 12px;
  overflow: hidden; flex-shrink: 0;
}
.cater-qty-btn {
  width: 36px; height: 36px; border: none; background: none;
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--blue); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .15s;
}
.cater-qty-btn:hover { background: rgba(14,78,159,0.06); }
.cater-qty-input {
  width: 36px; text-align: center; border: none; outline: none;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--blue); background: none;
  -moz-appearance: textfield;
}
.cater-qty-input::-webkit-outer-spin-button,
.cater-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* Sticky Order Bar */
.cater-order-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--blue); color: var(--w);
  padding: 16px 24px; padding-bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translateY(100%); transition: transform .3s cubic-bezier(.32,.72,0,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cater-order-bar.visible { transform: translateY(0); }
.cater-order-summary {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.cater-order-count {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
}
.cater-order-total {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--w);
}
.cater-order-actions {
  display: flex; gap: 10px;
}
.cater-copy-btn {
  flex: 1; padding: 14px; border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.25); background: none;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--w); cursor: pointer; transition: all .2s;
}
.cater-copy-btn:hover { border-color: rgba(255,255,255,0.5); }
.cater-copy-btn.copied { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.cater-send-btn {
  flex: 1; padding: 14px; border-radius: 14px;
  background: var(--w); color: var(--blue);
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none; text-align: center;
  transition: all .2s;
}
.cater-send-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

@media (min-width: 500px) {
  .cater-order-bar {
    left: 50%; right: auto; transform: translateX(-50%) translateY(100%);
    width: 100%; max-width: 500px; border-radius: 20px 20px 0 0;
  }
  .cater-order-bar.visible { transform: translateX(-50%) translateY(0); }
}

/* Event Details */
.cater-details {
  max-width: 600px; margin: 0 auto 24px; padding: 24px;
  background: var(--w); border: 1px solid rgba(14,78,159,0.08);
  border-radius: 16px;
}
.cater-details-title {
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--blue); margin-bottom: 16px;
}
.cater-field { margin-bottom: 14px; }
.cater-field-row { display: flex; gap: 12px; }
.cater-field-row .cater-field { flex: 1; }
.cater-label {
  display: block; font-family: 'Poppins', sans-serif; font-size: 12px;
  font-weight: 600; color: #555; margin-bottom: 6px;
}
.cater-input {
  width: 100%; font-family: 'Poppins', sans-serif; font-size: 16px;
  padding: 12px 14px; border: 1px solid #ddd; border-radius: 10px;
  outline: none; color: #222; background: #fff; box-sizing: border-box;
}
.cater-input:focus { border-color: var(--blue); }
.cater-input.error { border-color: #e55; }

/* Bottom Section */
.cater-bottom {
  max-width: 600px; margin: 0 auto;
}
.cater-minimums {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(14,78,159,0.1); border-radius: 14px;
  overflow: hidden; margin-bottom: 24px;
}
.cater-min-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(14,78,159,0.06);
}
.cater-min-row:last-child { border-bottom: none; }
.cater-min-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--blue);
}
.cater-min-val {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500; color: #666;
}
.cater-cta-section {
  text-align: center; margin-bottom: 20px;
}
.cater-cta-btn {
  display: block; padding: 16px;
  background: var(--blue); color: var(--w);
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: opacity .2s; text-align: center;
}
.cater-cta-btn:hover { opacity: 0.9; }
.cater-cta-email {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; color: var(--m); margin-top: 10px;
}
.cater-cta-email a {
  color: var(--blue); font-weight: 600; text-decoration: underline;
}
.cater-info-strip {
  display: flex; flex-direction: column; gap: 10px;
}
.cater-info-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  background: var(--cream); border: 1px solid rgba(14,78,159,0.04);
}
.cater-info-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  stroke: var(--blue);
}
.cater-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--blue);
}
.cater-info-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; color: #666; line-height: 1.4;
}
.cater-info-desc a {
  color: var(--blue); font-weight: 600; text-decoration: underline;
}

@media (min-width: 768px) {
  .cater-hero-img { height: 400px; }
  .cater-hero-title { font-size: 46px; }
  .cater-hero-sub { font-size: 15px; }
  .cater-body { padding: 72px 48px 72px; }
  .cater-steps { flex-direction: row; }
  .cater-step { flex: 1; }
  .cater-menu-grid { grid-template-columns: repeat(3, 1fr); }
  .cater-menu-card-full { grid-column: 1 / -1; }
  .cater-minimums { flex-direction: row; }
  .cater-min-row { flex: 1; border-bottom: none; border-right: 1px solid rgba(14,78,159,0.06); }
  .cater-min-row:last-child { border-right: none; }
}

/* ── LEGAL PAGES (Terms / Privacy) ── */
.legal-hero {
  padding-top: 64px;
  background: var(--blue);
  text-align: center;
  padding-bottom: 40px;
}
.legal-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--w);
  margin: 24px 0 0;
  letter-spacing: -0.5px;
}
.legal-body {
  background: var(--cream);
  padding: 40px 24px 60px;
  max-width: 680px;
  margin: 0 auto;
}
.legal-updated {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--m);
  margin-bottom: 28px;
}
.legal-section {
  margin-bottom: 28px;
}
.legal-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.legal-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 1.7;
}
.legal-section p a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .legal-hero-title { font-size: 46px; }
  .legal-body { padding: 56px 48px 80px; }
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--w);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  border-radius: 16px 16px 0 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-text {
  font-size: 12px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
}
.cookie-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-got-it {
  background: var(--blue);
  color: var(--w);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cookie-banner { max-width: 540px; left: 50%; transform: translateX(-50%); bottom: 16px; border-radius: 16px; }
  .cookie-banner.hidden { transform: translateX(-50%) translateY(calc(100% + 16px)); }
}

/* ── LOYALTY CHECK ── */
.loyalty-check {
  background: var(--cream);
  text-align: center;
  padding: 48px 24px 64px;
}
.loyalty-check-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.loyalty-check-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-bottom: 20px;
}
.loyalty-check-form {
  display: flex;
  gap: 8px;
  max-width: 340px;
  margin: 0 auto;
}
.loyalty-check-input {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  outline: none;
  color: var(--t);
  transition: border-color 0.2s;
}
.loyalty-check-input:focus { border-color: var(--blue); }
.loyalty-check-input::placeholder { color: #bbb; }
.loyalty-check-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  background: var(--blue);
  color: var(--w);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.loyalty-check-btn:active { opacity: 0.85; }
.loyalty-check-result {
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  min-height: 24px;
}
.loyalty-balance {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.loyalty-pts {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
}
.loyalty-lifetime {
  font-size: 12px;
  font-weight: 400;
  color: var(--m);
  margin-top: 4px;
}
.loyalty-none {
  font-size: 13px;
  color: #888;
}
.loyalty-err {
  font-size: 13px;
  color: #c44;
}
.loyalty-next {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  margin-top: 4px;
}
.loyalty-reward-ready {
  font-size: 13px;
  font-weight: 700;
  color: #2E7D32;
  margin-top: 4px;
}

/* ── FUEL PASS SIGNUP POPUP ── */
.fp-signup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.fp-signup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.fp-signup-modal {
  background: var(--w);
  border-radius: 20px;
  padding: 36px 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.fp-signup-overlay.open .fp-signup-modal {
  transform: translateY(0);
}
.fp-signup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 0;
}
.fp-signup-close svg { width: 20px; height: 20px; }
.fp-signup-logo {
  font-family: 'SaloTest', sans-serif;
  font-size: 24px;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.fp-signup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.fp-signup-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--m);
  margin-bottom: 24px;
}
.fp-signup-error {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #e55;
  margin-bottom: 8px;
  display: none;
}
.fp-signup-input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.fp-signup-input:focus { border-color: var(--blue); }
.fp-signup-email {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.fp-signup-email:focus { border-color: var(--blue); }
.fp-signup-btn {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  background: var(--blue);
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.fp-signup-btn:hover { opacity: 0.9; }
.fp-signup-btn:disabled { opacity: 0.6; cursor: default; }
.fp-signup-note {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--m);
  margin-top: 14px;
  line-height: 1.5;
}
.fp-signup-note a { color: var(--blue); }
.fp-signup-success { display: none; }
.fp-signup-check-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.fp-signup-check-icon svg { width: 28px; height: 28px; }
.fp-signup-success-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.fp-signup-success-msg {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--m);
  line-height: 1.5;
  margin-bottom: 20px;
}
.fp-signup-success-link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

/* ── LOYALTY NAV ── */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-user-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
}
.slide-loy-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px 0 4px;
}
.slide-signin,
.slide-rewards,
.slide-signout {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--w);
  text-decoration: none;
  padding: 10px 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.slide-signin:hover,
.slide-rewards:hover,
.slide-signout:hover { opacity: 1; }
.slide-signin svg,
.slide-rewards svg,
.slide-signout svg { width: 22px; height: 22px; flex-shrink: 0; }
.slide-signout { font-size: 13px; opacity: 0.5; }

/* ── FUEL PASS NAV BACKDROP ── */
.fp-page-hero {
  padding-top: 64px;
  background: var(--blue);
  text-align: center;
  padding-bottom: 40px;
}
.fp-page-label {
  font-family: 'Poppins', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--w);
  margin: 24px 0 8px; letter-spacing: -0.5px;
}
.fp-page-sub {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6); letter-spacing: 1px;
}


/* ── MEMBERSHIP BADGE (paid plan) ── */
.fp-membership-badge {
  background: var(--cream);
  padding: 16px 24px;
  text-align: center;
}
.fp-membership-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background: var(--w);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.fp-membership-label {
  font-weight: 500;
  color: var(--m);
}
.fp-membership-plan {
  font-weight: 700;
  color: var(--blue);
}
.fp-membership-manage {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
  margin-left: 4px;
}

/* ── FUEL PASS REDESIGN (logged-out) ── */
#fpLoggedOut { max-width: 480px; margin: 0 auto; }

.fpr-hero {
  text-align: center; padding: 36px 24px 28px; background: var(--w);
}
.fpr-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  color: #0E4E9F; text-transform: uppercase; margin-bottom: 10px;
}
.fpr-h1 {
  font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 500;
  color: #0A3A75; line-height: 1.2; margin: 0 0 10px;
}
.fpr-sub {
  font-size: 14px; color: #555; margin: 0; line-height: 1.5;
}

.fpr-card-wrap { padding: 0 16px 24px; }
.fpr-card {
  background: var(--w); border: 0.5px solid #d8d8d8;
  border-radius: 12px; padding: 24px 20px;
}
.fpr-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.fpr-card-title {
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 500;
  color: #0A3A75; margin: 0;
}
.fpr-pill {
  background: #E6F0FA; color: #0E4E9F; font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
}
.fpr-card-sub {
  font-size: 13px; color: #666; margin: 0 0 14px; line-height: 1.4;
}
.fpr-perks { margin-bottom: 18px; }
.fpr-perk {
  font-size: 14px; color: #333; line-height: 1.9;
  padding-left: 20px; position: relative;
}
.fpr-perk::before {
  content: '✓'; position: absolute; left: 0;
  color: #0E4E9F; font-weight: 600;
}
.fpr-perk-bold { font-weight: 600; color: #0E4E9F; }

.fpr-btn {
  display: block; width: 100%; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  padding: 13px; border-radius: 999px; text-align: center;
}
.fpr-btn-blue { background: #0E4E9F; color: #fff; }
.fpr-btn-dark { background: #0A3A75; color: #fff; }
.fpr-note {
  font-size: 11px; color: #999; text-align: center; margin: 10px 0 0;
}

.fpr-plus-section {
  padding: 32px 24px 8px; background: var(--w);
  border-top: 6px solid #F5F8FC;
}
.fpr-display {
  font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 500;
  color: #0A3A75; line-height: 1.1; margin: 0 0 12px;
}
.fpr-math-wrap { padding: 0 0 16px; }
.fpr-math {
  background: #0E4E9F; color: #fff; border-radius: 12px;
  padding: 24px 22px;
}
.fpr-math-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 4px 0;
}
.fpr-math-total {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 700; padding: 10px 0 0;
  margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.25);
}
.fpr-math-footer {
  font-size: 11px; opacity: 0.75; margin: 12px 0 0;
}
.fpr-cta-wrap { padding: 8px 0 28px; }

.fpr-family-section {
  padding: 24px; border-top: 6px solid #F5F8FC;
}
.fpr-family-card {
  background: #FAF6EE; border-radius: 12px; padding: 24px 22px;
}
.fpr-eyebrow-warm { color: #8B6914; }
.fpr-family-title {
  font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 500;
  color: #0A3A75; line-height: 1.2; margin: 0 0 10px;
}
.fpr-family-sub {
  font-size: 14px; color: #555; margin: 0 0 16px; line-height: 1.5;
}
.fpr-family-math {
  background: var(--w); border-radius: 10px; padding: 16px 18px;
  margin: 0 0 16px;
}
.fpr-family-math .fpr-math-row { color: #333; }
.fpr-math-total-warm {
  color: #0A3A75; border-top-color: #ddd;
}
.fpr-family-price { margin: 14px 0; }
.fpr-family-amt {
  font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 500;
  color: #0A3A75;
}
.fpr-family-per { font-size: 13px; color: #777; }

.fpr-member-check {
  border-top: 0.5px solid #eee; padding: 24px; text-align: center;
}
.fpr-member-title {
  font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 500;
  color: #0A3A75; margin: 0 0 6px;
}
.fpr-member-sub { font-size: 13px; color: #777; margin: 0 0 14px; }
.fpr-member-form {
  display: flex; gap: 8px; max-width: 340px; margin: 0 auto;
}
.fpr-member-input {
  flex: 1; font-family: 'Poppins', sans-serif; font-size: 14px;
  padding: 12px 14px; border: 1px solid #ddd; border-radius: 12px;
  outline: none; background: var(--w);
}
.fpr-member-input:focus { border-color: #0E4E9F; }
.fpr-member-btn {
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  padding: 12px 20px; border: none; border-radius: 999px; cursor: pointer;
  background: #0E4E9F; color: #fff;
}
.fpr-member-result { margin-top: 12px; font-size: 14px; }

/* ── LOYALTY LOGIN MODAL ── */
.loy-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.loy-login-overlay.open { opacity: 1; pointer-events: auto; }
.loy-login-modal {
  background: var(--w);
  border-radius: 20px;
  padding: 36px 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.loy-login-overlay.open .loy-login-modal { transform: translateY(0); }
.loy-login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 0;
}
.loy-login-close svg { width: 20px; height: 20px; }
.loy-login-logo {
  font-family: 'SaloTest', sans-serif;
  font-size: 24px;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.loy-login-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.loy-login-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--m);
  margin-bottom: 24px;
}
.loy-login-error {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #e55;
  margin-bottom: 8px;
  display: none;
}
.loy-login-input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 1px;
}
.loy-login-input:focus { border-color: var(--blue); }
.loy-login-input::placeholder { color: #bbb; letter-spacing: 0; }
.loy-login-btn {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  background: var(--blue);
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.loy-login-btn:hover { opacity: 0.9; }
.loy-login-btn:disabled { opacity: 0.6; cursor: default; }
.loy-login-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--m);
  margin-top: 16px;
}
.loy-login-note a { color: var(--blue); font-weight: 600; }

/* ── CODE INPUT BOXES ── */
.loy-code-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.loy-code-box {
  width: 44px;
  height: 52px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  color: var(--t);
}
.loy-code-box:focus { border-color: var(--blue); }
.loy-code-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.loy-code-resend,
.loy-code-change {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}
.loy-code-resend { color: var(--blue); }
.loy-code-resend:disabled { color: var(--m); cursor: default; }
.loy-code-change { color: var(--m); }
@keyframes codeShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
.loy-code-shake { animation: codeShake 0.4s ease; }

/* ── LOYALTY DASHBOARD ── */
.loy-dashboard {
  background: var(--cream);
  padding: 24px 0 40px;
  max-width: 480px;
  margin: 0 auto;
}

/* Dashboard header */
.dash-header { text-align: center; padding: 8px 24px 16px; }
.dash-greeting {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 700; color: #0A3A75;
}
.dash-points-line { font-size: 14px; color: #555; margin-top: 4px; }

/* Overall progress bar */
.dash-progress-wrap { padding: 0 16px 20px; }
.dash-progress-label {
  font-size: 13px; color: #555; text-align: center; margin-bottom: 10px;
}
.dash-progress-track {
  height: 8px; background: #eee; border-radius: 999px; overflow: hidden;
}
.dash-progress-fill {
  height: 100%; background: #0E4E9F; border-radius: 999px;
  transition: width 0.4s ease;
}

.dash-section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 500; color: #0A3A75;
  padding: 0 16px; margin-bottom: 12px;
}

/* Active rewards */
.dash-active { padding: 0 0 16px; }
.dash-active-card {
  margin: 0 24px 10px; padding: 14px 16px;
  background: #F0F7FF; border-radius: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.dash-active-name { font-size: 14px; font-weight: 500; color: #0A3A75; }
.dash-active-sub { font-size: 12px; color: #777; margin-top: 2px; }
.dash-active-code {
  font-family: monospace; font-size: 20px; font-weight: 700;
  color: #0E4E9F; letter-spacing: 1px;
}
.dash-active-use {
  font-size: 13px; font-weight: 600; color: #fff; background: #0E4E9F;
  padding: 8px 16px; border-radius: 999px; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.dash-active-use:hover { background: #0A3A75; }

/* Rewards ladder */
.dash-ladder-section { padding: 8px 0 16px; }
.dash-ladder { padding: 0; }
.dash-ladder-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; margin: 0 16px 8px;
  background: #fff; border-radius: 10px; border: 0.5px solid #eee;
}
.dash-ladder-left { flex-shrink: 0; }
.dash-ladder-name { font-size: 15px; font-weight: 500; color: #0A3A75; }
.dash-ladder-sub { font-size: 12px; color: #777; margin-top: 2px; }
.dash-ladder-right { text-align: right; }
.dash-ladder-bar {
  width: 80px; height: 4px; background: #eee;
  border-radius: 2px; overflow: hidden; margin-bottom: 4px; margin-left: auto;
}
.dash-ladder-fill {
  height: 100%; background: #0E4E9F;
  border-radius: 2px; transition: width 0.3s;
}
.dash-ladder-togo { font-size: 12px; color: #777; }
.dash-redeem-btn {
  font-size: 12px; font-weight: 500; color: #fff; background: #0E4E9F;
  border: none; cursor: pointer; padding: 6px 16px; border-radius: 999px;
  transition: background 0.15s;
}
.dash-redeem-btn:hover { background: #0A3A75; }
.dash-redeem-msg {
  font-size: 12px; color: #0E4E9F; font-weight: 500; line-height: 1.4;
  text-align: right; max-width: 180px;
}
.dash-redeem-error { font-size: 11px; color: #d32f2f; margin-top: 4px; }

/* Upgrade nudge */
.dash-nudge-card {
  padding: 16px 18px; background: #F5F8FC;
  border-radius: 12px; margin: 24px 24px;
}
.dash-nudge-title { font-size: 14px; font-weight: 500; color: #222; margin-bottom: 4px; }
.dash-nudge-body { font-size: 13px; color: #555; margin-bottom: 8px; }
.dash-nudge-link {
  font-size: 12px; font-weight: 500; color: #0E4E9F; text-decoration: none;
}
.dash-nudge-link:hover { text-decoration: underline; }
.dash-nudge-status {
  text-align: center; padding: 16px; font-size: 13px; color: #0E4E9F;
}

/* ── REDEEM MODAL ── */
.loy-redeem-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.loy-redeem-overlay.open { opacity: 1; pointer-events: auto; }
.loy-redeem-modal {
  background: var(--w);
  border-radius: 20px;
  padding: 36px 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.loy-redeem-overlay.open .loy-redeem-modal { transform: translateY(0); }
.loy-redeem-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 0;
}
.loy-redeem-close svg { width: 20px; height: 20px; }
.loy-redeem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #E3F0FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loy-redeem-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.loy-redeem-tier-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 4px;
}
.loy-redeem-cost {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--m);
  margin-bottom: 16px;
}
.loy-redeem-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 24px;
}
.loy-redeem-btn {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  background: var(--blue);
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 10px;
}
.loy-redeem-btn:hover { opacity: 0.9; }
.loy-redeem-btn:disabled { opacity: 0.6; cursor: default; }
.loy-redeem-cancel {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--m);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.loy-redeem-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loy-redeem-success-icon svg { width: 32px; height: 32px; }
.loy-redeem-success-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #2E7D32;
  margin-bottom: 12px;
}
.loy-redeem-success-code {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 4px;
  background: #F5F5F5;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.loy-redeem-success-msg {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--m);
  line-height: 1.5;
  margin-bottom: 24px;
}
.loy-redeem-done {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  background: #2E7D32;
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.loy-redeem-done:hover { opacity: 0.9; }
.loy-redeem-use-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--w); background: var(--blue);
  padding: 15px 24px; border-radius: 50px;
  text-decoration: none; text-align: center;
  width: 100%; box-sizing: border-box;
  margin-bottom: 10px; transition: opacity 0.2s;
}
.loy-redeem-use-btn:hover { opacity: 0.9; }

/* ── SIGNUP TAKEOVER (tap-to-crack) ── */
.signup-takeover {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0E4E9F;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
.signup-takeover.open { opacity: 1; pointer-events: auto; }
.signup-takeover.fade-out { opacity: 0; }
.signup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.signup-close svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); }
.crack-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 6vh;
}
.crack-cup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.crack-cup { transition: transform 0.1s; position: relative; }
.crack-cup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: cupGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cupGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.crack-cup.shake { animation: cupShake 0.2s ease; }
@keyframes cupShake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  50% { transform: rotate(-3deg); }
  75% { transform: rotate(1.5deg); }
  100% { transform: rotate(0deg); }
}
.crack-line {
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.4s ease-out;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.6));
}
.crack-branch {
  stroke-width: 1.2;
  transition-delay: 0.12s;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
}
svg.crack-1 .cl1,
svg.crack-2 .cl1, svg.crack-2 .cl2,
svg.crack-3 .cl1, svg.crack-3 .cl2, svg.crack-3 .cl3,
svg.crack-4 .cl1, svg.crack-4 .cl2, svg.crack-4 .cl3, svg.crack-4 .cl4,
svg.crack-5 .cl1, svg.crack-5 .cl2, svg.crack-5 .cl3, svg.crack-5 .cl4, svg.crack-5 .cl5 { stroke-dashoffset: 0; }
.crack-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
  margin-bottom: 14px;
}
.crack-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 10px;
  padding: 0 16px;
}
.crack-subhead {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 28px;
}
.crack-counter {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  min-height: 18px;
}
.crack-chip {
  position: fixed;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  animation: chipFly 0.6s ease-out forwards;
}
@keyframes chipFly {
  0% { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.3); }
}
.crack-boom {
  width: 0;
  height: 0;
  overflow: visible;
}
.crack-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  animation: particleBurst 0.8s ease-out forwards;
}
@keyframes particleBurst {
  0% { opacity: 1; transform: translate(0,0) scale(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.2); }
}
.crack-frag {
  position: absolute;
  pointer-events: none;
  animation: fragFly 0.8s ease-out forwards;
}
@keyframes fragFly {
  0% { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.4); }
}
.crack-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 28vh;
}
.crack-badge-area {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: visible;
}
.crack-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: ringExpand 1.2s ease-out forwards;
}
@keyframes ringExpand {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.crack-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.crack-badge {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  box-shadow: 0 0 50px rgba(255,255,255,0.3), 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  animation: badgeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, badgePulse 2.5s ease-in-out 1.2s infinite;
}
.crack-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14,78,159,0.08), transparent);
  animation: badgeShimmer 1.5s ease 0.8s forwards;
}
@keyframes badgeIn {
  0% { opacity: 0; transform: scale(0.4); }
  70% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes badgeShimmer {
  0% { left: -60%; }
  100% { left: 140%; }
}
.crack-badge-free {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0E4E9F;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.crack-badge-item {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0A3A75;
  margin-top: 2px;
}
.crack-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(var(--sx), var(--sy));
  animation: sparklePop 1.8s ease-in-out var(--sd) infinite;
}
@keyframes sparklePop {
  0%, 100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
  50% { opacity: 1; transform: translate(var(--sx), var(--sy)) scale(1); }
}
.crack-reveal-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
  opacity: 0;
  animation: crackFadeUp 0.5s ease 0.5s forwards;
}
.crack-reveal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-top: 6px;
  opacity: 0;
  animation: crackFadeUp 0.5s ease 0.7s forwards;
}
.crack-reveal-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 6px;
  opacity: 0;
  animation: crackFadeUp 0.5s ease 0.9s forwards;
}
@keyframes crackFadeUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.crack-confetti {
  position: absolute;
  top: -10px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: confettiFall var(--fall-dur) ease-in var(--fall-delay) forwards;
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) translateX(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(100vh) translateX(var(--sway)) rotate(var(--rot)); }
}
.crack-ambient {
  position: absolute;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  pointer-events: none;
  animation: ambientDrift var(--dur) ease-in-out var(--del) infinite alternate;
}
@keyframes ambientDrift {
  0% { transform: translate(0,0); opacity: 0.15; }
  100% { transform: translate(var(--dx), var(--dy)); opacity: 0.55; }
}
.crack-form-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 24px 24px 0 0;
  padding: 32px 24px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  max-width: 480px;
  margin: 0 auto;
}
.crack-form-card.show { transform: translateY(0); }
.crack-form-card.expanded { max-height: none; }
.crack-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0A3A75;
  line-height: 1.2;
  margin-bottom: 8px;
}
.crack-form-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}
.crack-phone {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding: 16px;
  border: 0.5px solid #d0d0d0;
  border-radius: 12px;
  outline: none;
  margin-bottom: 12px;
  color: #222;
  background: #fff;
  box-sizing: border-box;
}
.crack-phone:focus { border-color: #0E4E9F; }
.crack-phone::placeholder { color: #bbb; }
.crack-submit {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  background: #0E4E9F;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.crack-submit:active { transform: scale(0.98); }
.crack-submit:disabled { opacity: 0.6; cursor: default; }
.crack-terms {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.crack-terms a { color: #777; text-decoration: underline; }
.crack-success-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  animation: checkPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes checkPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.crack-success-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #0A3A75;
  text-align: center;
  margin-bottom: 8px;
}
.crack-success-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}
.crack-reward-card {
  border: 1.5px solid #0E4E9F;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.crack-reward-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #0E4E9F;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.crack-reward-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0A3A75;
  margin-bottom: 4px;
}
.crack-reward-hint {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #777;
}
.crack-fuelpass-btn {
  display: block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  background: #0E4E9F;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.crack-fuelpass-btn:hover { opacity: 0.9; }
@media (min-width: 768px) {
  .signup-close { top: 28px; right: 28px; }
  .crack-form-card { left: 50%; right: auto; transform: translateX(-50%) translateY(100%); width: 100%; }
  .crack-form-card.show { transform: translateX(-50%) translateY(0); }
}
