/* ============================================================
   Sweet & Salao — tropical candy-pop theme
   Palette pulled from the truck wrap + logo:
   hot pink, lime, turquoise, sunshine yellow on warm cream
   ============================================================ */
:root {
  --pink: #ff2e88;
  --pink-deep: #d81b6a;
  --lime: #b6e021;
  --lime-deep: #8cb800;
  --turq: #16c2c2;
  --turq-deep: #0c8f8f;
  --sun: #ffc01e;
  --grape: #6b2d8f;
  --ink: #2a1430;
  --ink-soft: #6a5566;
  --cream: #fff6ec;
  --cream-2: #ffeede;
  --paper: #ffffff;
  --line: #f1dccb;
  --dd: #ff3008;
  --shadow-sm: 0 6px 18px rgba(122, 28, 92, 0.10);
  --shadow: 0 18px 44px rgba(122, 28, 92, 0.16);
  --shadow-lg: 0 30px 70px rgba(122, 28, 92, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --display: "Fraunces", Georgia, serif;
  --body: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --script: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255, 46, 136, 0.07), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(22, 194, 194, 0.08), transparent 40%),
    radial-gradient(circle at 70% 96%, rgba(182, 224, 33, 0.10), transparent 45%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.04; font-family: var(--display); font-weight: 900; }
p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 800; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  letter-spacing: .2px; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; box-shadow: 0 10px 24px rgba(255, 46, 136, .35); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255, 46, 136, .45); }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-secondary:hover { filter: brightness(1.12); }
.btn-dd { background: var(--dd); color: #fff; box-shadow: 0 10px 24px rgba(255, 48, 8, .32); }
.btn-dd:hover { box-shadow: 0 14px 30px rgba(255, 48, 8, .42); }
.btn-block { width: 100%; }
.dd-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.3); }

/* ---------- Top order bar ---------- */
.order-bar {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(90deg, var(--grape), var(--pink-deep), var(--turq-deep));
  color: #fff; font-size: 13.5px; font-weight: 600; padding: 8px 18px; text-align: center;
}
.order-bar-text { opacity: .95; }
.dd-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--dd); color: #fff; font-weight: 800; font-size: 12.5px;
  padding: 5px 13px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.dd-pill:hover { filter: brightness(1.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(255, 246, 236, .82);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); padding-top: 6px; padding-bottom: 6px; }
.brand img { height: 54px; width: auto; object-fit: contain; transition: height .2s ease; filter: drop-shadow(0 4px 10px rgba(122,28,92,.18)); }
.site-header.scrolled .brand img { height: 44px; }
.site-header nav { display: flex; align-items: center; gap: clamp(12px, 2.4vw, 30px); }
.site-header nav a { font-weight: 700; font-size: 15px; color: var(--ink); position: relative; padding: 4px 0; }
.site-header nav a:not(.nav-dd)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--pink), var(--lime)); border-radius: 3px; transition: width .22s ease;
}
.site-header nav a:not(.nav-dd):hover::after { width: 100%; }
.nav-dd { color: var(--dd) !important; font-weight: 800 !important; }
.lang-toggle { display: inline-flex; background: var(--paper); border: 2px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-toggle button { border: none; background: transparent; padding: 6px 12px; font-family: var(--body); font-weight: 800; font-size: 13px; color: var(--ink-soft); cursor: pointer; transition: all .15s; }
.lang-toggle button.active { background: var(--ink); color: #fff; }
.cart-toggle {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); transition: transform .16s ease;
}
.cart-toggle:hover { transform: scale(1.06); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 999px; font-size: 12px; font-weight: 800;
  background: var(--lime); color: var(--ink); border: 2px solid var(--cream);
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); animation: heroZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}
@keyframes heroZoom { to { transform: scale(1.16); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,20,48,.30), rgba(42,20,48,.55) 55%, rgba(42,20,48,.82)),
    linear-gradient(90deg, rgba(255,46,136,.20), transparent 45%, rgba(22,194,194,.18));
}
.hero-fade { position: absolute; left: 0; right: 0; bottom: -1px; height: 120px; background: linear-gradient(180deg, transparent, var(--cream)); z-index: 2; }
.hero-content {
  position: relative; z-index: 3; width: min(100%, var(--maxw)); margin: 0 auto;
  padding: 70px clamp(20px, 5vw, 48px); text-align: center; color: #fff;
}
.hero-logo {
  height: clamp(140px, 22vw, 230px); width: auto; margin: 0 auto 6px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.4));
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.eyebrow {
  text-transform: uppercase; letter-spacing: .26em; font-size: 12.5px; font-weight: 800;
  color: var(--lime); margin-bottom: 10px;
}
.eyebrow.center { color: var(--pink); }
.hero h1 {
  font-size: clamp(48px, 9vw, 104px); font-weight: 900; letter-spacing: -.02em;
  text-shadow: 0 6px 26px rgba(0,0,0,.4); margin-bottom: 12px;
}
.hero-tag { font-size: clamp(17px, 2.4vw, 22px); font-weight: 500; max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.94); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn { padding: 16px 30px; font-size: 16px; }
.hero-verse { margin-top: 26px; font-family: var(--script); font-size: 21px; color: var(--sun); text-shadow: 0 2px 10px rgba(0,0,0,.45); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--ink); color: var(--cream); padding: 12px 0; border-top: 3px solid var(--lime); border-bottom: 3px solid var(--pink); }
.marquee-track { display: flex; gap: 38px; white-space: nowrap; width: max-content; animation: scroll 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 18px; display: inline-flex; align-items: center; gap: 38px; }
.marquee-track span::after { content: "✦"; color: var(--sun); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Info strip ---------- */
.info-strip {
  width: min(100%, var(--maxw)); margin: -10px auto 0; padding: 0 clamp(16px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 4;
}
.info-card {
  display: flex; align-items: center; gap: 14px; background: var(--paper);
  border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.info-icon { font-size: 26px; }
.info-label { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; color: var(--pink); }
.info-value { font-weight: 600; font-size: 15px; }
.info-value a { color: var(--turq-deep); font-weight: 700; }

/* ---------- Sections ---------- */
.section { width: min(100%, var(--maxw)); margin: 0 auto; padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head h2 { font-size: clamp(34px, 5.5vw, 60px); margin: 6px 0 12px; }
.section-sub { color: var(--ink-soft); font-size: 16px; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filters button {
  font-family: var(--body); font-weight: 700; font-size: 14px; cursor: pointer;
  padding: 10px 20px; border-radius: 999px; border: 2px solid var(--line);
  background: var(--paper); color: var(--ink); transition: all .18s ease;
}
.filters button:hover { border-color: var(--pink); color: var(--pink-deep); transform: translateY(-1px); }
.filters button.active { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); border-color: transparent; color: #fff; box-shadow: 0 8px 18px rgba(255,46,136,.3); }

/* ---------- Menu grid ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.menu-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease;
  opacity: 0; transform: translateY(16px); animation: cardIn .5s ease forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.menu-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-media img { transform: scale(1.07); }
.cat-tag {
  position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; padding: 5px 11px; border-radius: 999px;
  color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.cat-Entrees { background: var(--pink); }
.cat-Starters { background: var(--turq); }
.cat-SeafoodCups { background: var(--grape); }
.cat-KidsMenu { background: var(--sun); color: var(--ink) !important; }
.cat-Sweets { background: var(--pink-deep); }
.cat-Drinks { background: var(--turq-deep); }
.cat-Sides { background: var(--lime-deep); }
.fav-star { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.92); color: var(--sun); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; box-shadow: 0 4px 10px rgba(0,0,0,.16); }
.menu-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.menu-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-meta h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }

/* Text-only cards (drinks, flan, sides without photos) */
.menu-card.no-photo { background: linear-gradient(160deg, #fff, var(--cream-2)); border-left: 5px solid var(--lime); }
.menu-card.no-photo .menu-body { padding-top: 20px; }
.cat-tag.inline { position: static; align-self: flex-start; margin-bottom: 10px; }
.price { font-family: var(--display); font-weight: 900; font-size: 20px; color: var(--pink-deep); white-space: nowrap; }
.price.mp { color: var(--turq-deep); font-size: 16px; }
.menu-body p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; margin-top: 8px; }
.menu-note { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--grape); background: rgba(107,45,143,.08); padding: 7px 11px; border-radius: 10px; }
.add-btn {
  margin-top: 14px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 800; font-size: 14px; cursor: pointer;
  padding: 11px 18px; border-radius: 999px; border: 2px solid var(--lime-deep);
  background: linear-gradient(135deg, var(--lime), var(--lime-deep)); color: var(--ink);
  box-shadow: 0 8px 18px rgba(140, 184, 0, .28); transition: all .16s ease;
}
.add-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(140, 184, 0, .4); filter: brightness(1.04); }
.add-btn.added { background: var(--ink); border-color: var(--ink); color: #fff; }
.add-btn[disabled] {
  background: transparent; color: var(--ink-soft); border: 2px dashed var(--line);
  box-shadow: none; opacity: .7; cursor: not-allowed;
}
.add-btn[disabled]:hover { transform: none; }

/* ---------- Order section ---------- */
.order-section { background: linear-gradient(160deg, var(--cream-2), var(--cream)); border-radius: 40px; box-shadow: inset 0 1px 0 #fff; margin-top: 20px; }
.order-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.order-info h2 { font-size: clamp(30px, 4vw, 46px); margin: 6px 0 12px; }
.order-lead { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.fulfillment { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.radio-card { position: relative; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; }
.radio-body { display: flex; flex-direction: column; gap: 2px; padding: 16px; border-radius: var(--radius-sm); border: 2px solid var(--line); background: var(--paper); transition: all .16s ease; }
.radio-body strong { font-size: 16px; }
.radio-body small { color: var(--ink-soft); font-size: 13px; }
.radio-card input:checked + .radio-body { border-color: var(--pink); background: #fff; box-shadow: 0 8px 20px rgba(255,46,136,.18); }
.payment-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); }
.payment-box h3 { font-size: 17px; margin-bottom: 12px; }
.pay-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.pay-row:last-of-type { border-bottom: none; }
.pay-row strong { color: var(--turq-deep); }
.delivery-note { margin-top: 12px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Cart ---------- */
.cart-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); position: sticky; top: 96px; }
.cart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cart-head h3 { font-size: 22px; }
.cart-close { display: none; background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.cart-items { margin: 10px 0; max-height: 360px; overflow-y: auto; }
.cart-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-row strong { font-size: 15px; font-weight: 700; }
.cart-row small { color: var(--ink-soft); font-size: 13px; }
.qty { display: inline-flex; align-items: center; gap: 10px; }
.qty button { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line); background: var(--cream); font-size: 17px; font-weight: 800; cursor: pointer; color: var(--ink); transition: all .14s ease; }
.qty button:hover { border-color: var(--pink); color: var(--pink); }
.qty span { min-width: 18px; text-align: center; font-weight: 800; }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 10px; font-size: 16px; font-weight: 700; }
.cart-total strong { font-family: var(--display); font-size: 26px; color: var(--pink-deep); }

/* In-cart fulfillment choice */
.fulfill-choice { margin: 6px 0 14px; }
.fulfill-q { font-weight: 700; font-size: 14.5px; margin-bottom: 10px; color: var(--ink); }
.dd-panel { display: flex; flex-direction: column; gap: 14px; padding: 4px 0 2px; }
.dd-copy { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.pay-hint { font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 4px; }

/* Payment method choice */
.pay-q { font-weight: 700; font-size: 14px; margin: 4px 0 2px; color: var(--ink); }
.pay-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }

/* WhatsApp buttons */
.btn-wa { background: #25d366; color: #053d23; }
.btn-wa:hover { filter: brightness(1.05); }
.btn-wa-alt { background: #fff; color: var(--ink); border: 2px solid #25d366; }
.btn-wa-alt:hover { background: #eafff3; }
.wa-icon { font-size: 17px; }

/* Pay step (post-submit) */
.pay-step { display: flex; flex-direction: column; gap: 12px; padding: 4px 0 2px; }
.pay-step-head { display: flex; align-items: center; gap: 12px; }
.pay-check { width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 20px; font-weight: 800; flex: none; }
.pay-step-head strong { display: block; font-size: 17px; }
.pay-step-head small { color: var(--ink-soft); font-size: 13px; }
.pay-step-copy { font-size: 14px; color: var(--ink-soft); }
.pay-step-num { font-weight: 800; font-size: 14px; color: var(--pink-deep); margin-top: 4px; }
.pay-block { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.qr-wrap { display: flex; align-items: center; gap: 14px; }
.qr-img { width: 120px; height: 120px; border-radius: 12px; background: #fff; padding: 6px; box-shadow: var(--shadow-sm); flex: none; }
.qr-info { display: flex; flex-direction: column; gap: 3px; font-size: 14px; }
.qr-info .pay-handle { font-family: var(--display); font-weight: 900; font-size: 20px; color: var(--turq-deep); }
a.pay-handle { text-decoration: none; }
a.pay-handle:hover { text-decoration: underline; }
.qr-info small { color: var(--ink-soft); font-size: 12px; }
[hidden] { display: none !important; }
.order-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.order-form input, .order-form textarea {
  font-family: var(--body); font-size: 15px; padding: 13px 15px; border-radius: 12px;
  border: 2px solid var(--line); background: var(--cream); color: var(--ink); width: 100%; transition: border-color .16s ease;
}
.order-form input:focus, .order-form textarea:focus { outline: none; border-color: var(--turq); background: #fff; }
.order-form textarea { min-height: 72px; resize: vertical; }
.fine-print { font-size: 13px; color: var(--ink-soft); margin-top: 10px; line-height: 1.5; }
.fine-print.ok { color: var(--lime-deep); font-weight: 700; }
.fine-print.err { color: var(--pink-deep); font-weight: 700; }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.story-text h2 { font-size: clamp(30px, 4.5vw, 52px); margin: 8px 0 16px; }
.story-text p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; }
.verse-block { display: flex; flex-direction: column; gap: 4px; margin: 22px 0; font-family: var(--script); font-size: 26px; color: var(--grape) !important; line-height: 1.2; }
.verse-block span { font-family: var(--body); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink) !important; }
.story-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
/* ---------- Gallery carousel ---------- */
.carousel { position: relative; max-width: 760px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; border: none; padding: 0; margin: 0; cursor: zoom-in; background: #000; display: block; }
.carousel-slide img { width: 100%; height: clamp(280px, 42vw, 460px); object-fit: cover; display: block; transition: transform .5s ease; }
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.88); color: var(--ink); font-size: 26px; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: background .15s, transform .15s;
}
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.car-prev { left: 14px; }
.car-next { right: 14px; }
.carousel-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.car-dot { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.5); transition: background .2s, transform .2s; padding: 0; }
.car-dot.active { background: var(--pink); transform: scale(1.3); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; background: rgba(20,8,24,.92); backdrop-filter: blur(4px); padding: 40px; }
.lb-figure { margin: 0; max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-figure img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-counter { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.lb-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.15); color: #fff; font-size: 30px; line-height: 1; display: grid; place-items: center; transition: background .15s; }
.lb-close:hover { background: rgba(255,255,255,.3); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.15); color: #fff; font-size: 34px; line-height: 1; display: grid; place-items: center; transition: background .15s, transform .15s; }
.lb-nav:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
@media (max-width: 600px) {
  .lb-nav { width: 44px; height: 44px; font-size: 28px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
  .lightbox { padding: 16px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink); color: var(--cream); padding: 40px clamp(16px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-logo { height: 120px; width: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,.4)); }
.footer-info { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.footer-copy { font-weight: 700; font-size: 15px; }
.footer-credit { font-size: 13px; color: rgba(255,255,255,.7); }
.footer-credit a { color: var(--lime); font-weight: 700; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.footer-admin { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-admin:hover { color: var(--lime); }

/* Back to top */
.back-to-top-wrap { width: min(100%, var(--maxw)); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px) 8px; display: flex; justify-content: flex-end; }
.back-to-top {
  display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px;
  border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff;
  box-shadow: 0 10px 24px rgba(255,46,136,.35); transition: transform .18s ease, box-shadow .18s ease;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255,46,136,.45); }

/* ---------- Sticky mobile cart ---------- */
.sticky-cart {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 20px; border: none; border-radius: 999px; cursor: pointer;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff;
  box-shadow: 0 14px 34px rgba(255,46,136,.45); font-family: var(--body); font-weight: 800; font-size: 15px;
}
.sticky-cart .sticky-cart-go { background: rgba(255,255,255,.2); padding: 5px 12px; border-radius: 999px; font-size: 14px; }

/* ---------- Closed / Away states ---------- */
.no-scroll { overflow: hidden; }
.closed-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(90deg, var(--grape), var(--pink-deep));
  color: #fff; padding: 12px 18px; text-align: center; position: sticky; top: 0; z-index: 55;
}
.closed-icon { font-size: 20px; }
.closed-banner-text { display: flex; flex-direction: column; line-height: 1.25; }
.closed-banner-text strong { font-size: 15px; font-weight: 800; }
.closed-banner-text span { font-size: 13px; opacity: .92; }
.closed-overlay {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px;
  background: rgba(42, 20, 48, .72); backdrop-filter: blur(6px);
}
.closed-modal {
  width: min(460px, 100%); background: var(--paper); border-radius: 26px; padding: 36px 30px; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.4); border: 1px solid var(--line);
}
.closed-logo { height: 110px; margin: 0 auto 14px; filter: drop-shadow(0 8px 18px rgba(122,28,92,.2)); }
.closed-modal h2 { font-size: 28px; color: var(--pink-deep); margin-bottom: 12px; }
.closed-modal p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; }
.closed-back { margin-top: 12px !important; font-weight: 800; color: var(--turq-deep) !important; font-size: 16px !important; }
.closed-modal .btn { margin-top: 22px; }
/* Visual hint that ordering is locked */
body.is-closed .add-btn { filter: grayscale(.4); }
@media (max-width: 880px) {
  .order-grid { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 28px; }
  .info-strip { grid-template-columns: 1fr; }
  .cart-panel {
    position: fixed; inset: 0 0 0 auto; width: min(420px, 92vw); border-radius: 0;
    z-index: 80; transform: translateX(105%); transition: transform .3s ease; overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0,0,0,.25); top: 0; max-height: 100vh;
  }
  .cart-panel.open { transform: translateX(0); }
  .cart-close { display: block; }
  .cart-items { max-height: none; }
  .sticky-cart.show { display: flex; }
  body.cart-open { overflow: hidden; }
}
@media (max-width: 560px) {
  .order-bar-text { display: none; }
  .site-header nav a:not(.nav-dd) { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

/* ---------- Reviews / Testimonials ---------- */
.reviews-section { background: #fff; border-radius: var(--radius); }
.reviews-carousel { position: relative; max-width: 760px; margin: 0 auto; }
.review-viewport { overflow: hidden; border-radius: var(--radius); }
.review-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.review-slide {
  flex: 0 0 100%; margin: 0; padding: clamp(28px, 4vw, 44px);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 8% 4%, rgba(255,46,136,.10), transparent 42%),
    radial-gradient(circle at 92% 4%, rgba(22,194,194,.11), transparent 40%);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.review-stars { color: var(--sun); font-size: 24px; letter-spacing: 3px; }
.review-text { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2.4vw, 24px); line-height: 1.35; color: var(--ink); max-width: 600px; }
.review-name { font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: .04em; color: var(--pink-deep); text-transform: uppercase; }
.review-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--grape); font-size: 24px; line-height: 1;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.review-nav:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow); }
.review-prev { left: -8px; }
.review-next { right: -8px; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.review-dot { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; background: rgba(107,45,143,.25); transition: background .2s, transform .2s; padding: 0; }
.review-dot.active { background: var(--pink); transform: scale(1.3); }
.review-cta { text-align: center; margin-top: 40px; }
.review-cta-text { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.6vw, 26px); color: var(--ink); margin: 0 0 20px; }
.review-cta-row { display: inline-flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center; }
.btn-review { background: var(--turq); color: #fff; box-shadow: 0 12px 28px rgba(22,194,194,.4); font-size: 17px; padding: 16px 30px 16px 54px; position: relative; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' width='22' height='22'%3E%3Cpath fill='%23fff' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/%3E%3Cpath fill='%23fff' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/%3E%3Cpath fill='%23fff' d='M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z'/%3E%3Cpath fill='%23fff' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 22px center; background-size: 22px; }
.btn-review:hover { background-color: var(--turq-deep); box-shadow: 0 16px 34px rgba(22,194,194,.5); transform: translateY(-2px); }
.review-qr { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.review-qr img { width: 110px; height: 110px; border-radius: 14px; background: #fff; padding: 8px; box-shadow: var(--shadow-sm); display: block; }
.review-qr-label { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 520px) {
  .review-nav { width: 36px; height: 36px; font-size: 20px; }
  .review-prev { left: 2px; }
  .review-next { right: 2px; }
}

/* ---------- Hours grid / Address / Social ---------- */
.hours-grid { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.hours-line { display: flex; align-items: baseline; gap: 8px; font-family: var(--body); font-size: 14px; color: var(--ink); white-space: nowrap; }
.hours-line .hours-dow { font-weight: 700; color: var(--ink-soft); }
.hours-line .hours-time { font-weight: 700; color: var(--ink); }
.hours-line.hours-closed .hours-dow,
.hours-line.hours-closed .hours-time { color: var(--ink-soft); font-weight: 500; font-size: 13px; }
.hours-line.is-today .hours-dow { color: var(--pink-deep); }
.hours-line.is-today .hours-time { color: var(--pink-deep); font-weight: 800; }
.info-address { display: inline-block; margin-top: 4px; font-family: var(--body); font-size: 13.5px; font-weight: 600; color: var(--turq-deep); text-decoration: none; line-height: 1.35; }
.info-address:hover { text-decoration: underline; }
.social-row { display: flex; gap: 10px; margin-top: 10px; }
.social-link { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; transition: transform .18s, box-shadow .18s; }
.social-link:hover { transform: translateY(-2px); }
.social-facebook { background: #1877f2; box-shadow: 0 6px 16px rgba(24,119,242,.35); }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); box-shadow: 0 6px 16px rgba(220,39,67,.35); }
.footer-address { font-family: var(--body); font-size: 14px; font-weight: 600; margin: 0 0 8px; opacity: .92; }
.footer .social-row { justify-content: center; margin-bottom: 10px; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-logo, .marquee-track { animation: none; }
  .menu-card { opacity: 1; transform: none; animation: none; }
  .review-track, .carousel-track { transition: none; }
}
