/* Tamilicious – helltürkis #6fc3d3 + Live-Glitzer */

:root {
  --brand: #6fc3d3;
  --brand-bright: #8ad6e3;
  --brand-soft: #dff5f9;
  --brand-deep: #2a7f8d;
  --gold: #d4a017;
  --gold-soft: #f7e7b4;
  --gold-deep: #8a6a12;
  --ink: #12343c;
  --muted: #3d5c64;
  --paper: #ffffff;
  --white: #ffffff;
  --line: rgba(42, 127, 141, 0.16);
  --shadow: 0 16px 36px rgba(28, 90, 102, 0.16);
  --radius: 22px;
  --font: "Sora", system-ui, sans-serif;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --header: 72px;
  --cart-dock: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 12px); }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--brand);
  line-height: 1.55;
  padding-bottom: calc(var(--cart-dock) + 1rem);
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}
body.has-cart-dock {
  --cart-dock: 72px;
}
/* Soft static glitter texture (always visible) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 35;
  opacity: 0.55;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,255,255,.95), transparent),
    radial-gradient(1.2px 1.2px at 22% 38%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.8px 1.8px at 41% 18%, rgba(255,252,240,.9), transparent),
    radial-gradient(1px 1px at 58% 62%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.6px 1.6px at 73% 28%, rgba(255,255,255,.9), transparent),
    radial-gradient(1.3px 1.3px at 86% 74%, rgba(255,252,240,.85), transparent),
    radial-gradient(1px 1px at 15% 78%, rgba(255,255,255,.75), transparent),
    radial-gradient(1.4px 1.4px at 33% 88%, rgba(255,255,255,.9), transparent),
    radial-gradient(1.7px 1.7px at 67% 8%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.1px 1.1px at 92% 44%, rgba(255,252,240,.8), transparent),
    radial-gradient(1.5px 1.5px at 48% 48%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.2px 1.2px at 5% 55%, rgba(255,255,255,.8), transparent);
  background-size: 100% 100%;
  animation: glitterShift 12s ease-in-out infinite alternate;
}
@keyframes glitterShift {
  from { transform: translate3d(0, 0, 0); opacity: 0.45; }
  to { transform: translate3d(-1.2%, -1%, 0); opacity: 0.7; }
}
.glitter-page {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 38;
  opacity: 0.85;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
address { font-style: normal; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand-deep); color: #fff; padding: .5rem 1rem;
}
.skip:focus { left: 0; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.kicker {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-deep); margin-bottom: .55rem;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.55rem, 6.2vw, 4.2rem); color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); margin-bottom: .7rem; }
.hero h1 { color: var(--ink); }
.hero.hero-logo h1,
.hero-title { color: #fff; }
.hero h1 em { font-style: italic; font-weight: 700; color: var(--brand-deep); }

.section { padding: 2.4rem 0; position: relative; z-index: 4; }
.panel {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--brand-deep);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 18px 48px rgba(28, 90, 102, 0.14);
}
.section-intro { max-width: 560px; margin-bottom: 1.6rem; }
.section-intro p { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1.25rem; border-radius: 999px; border: 0;
  font-weight: 700; cursor: pointer; transition: transform .18s, box-shadow .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--brand-deep); color: #fff;
  box-shadow: 0 10px 24px rgba(47, 122, 136, 0.28);
}
.btn-light { background: #fff; color: var(--brand-deep); }
.btn-dark { background: var(--brand-deep); color: #fff; }
.btn-ghost { background: #fff; border: 1.5px solid rgba(42, 127, 141, 0.28); color: var(--muted); }
.btn-whatsapp { background: #25D366; color: #fff; }

/* Unified product image frame */
.img-frame {
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(42, 127, 141, 0.12);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.is-solid {
  box-shadow: 0 8px 24px rgba(42, 127, 141, 0.1);
  background: #fff;
}
.header-bar {
  height: var(--header);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-logo { height: 32px; width: auto; }
.nav { display: flex; gap: 1.1rem; }
.nav a { color: var(--muted); font-weight: 600; font-size: .92rem; }
.nav a:hover { color: var(--brand-deep); }
.nav a.nav-order {
  color: var(--brand-deep);
  font-weight: 800;
}
.header-right { display: flex; align-items: center; gap: .55rem; }
.cart-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--brand-deep); color: #fff; border: 0;
  border-radius: 999px; padding: .55rem .95rem; font-weight: 700; cursor: pointer;
}
.cart-count {
  min-width: 1.35rem; height: 1.35rem; border-radius: 999px;
  background: #fff; color: var(--brand-deep);
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}
.burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span { width: 18px; height: 2px; background: var(--ink); }

/* Hero – circular logo on turquoise + glitter */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: 5rem 0 3.5rem;
  background: var(--brand);
}
.hero-logo {
  justify-content: center;
}
#glitterCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.hero-layout {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-circle {
  width: min(340px, 78vw);
  height: auto;
  border-radius: 50%;
  background: #fff;
  padding: 0.6rem;
  box-shadow: 0 20px 50px rgba(28, 90, 102, 0.22);
  margin-bottom: 1.35rem;
  border: 2px solid var(--brand-deep);
}
.hero-title {
  margin: 0 0 0.65rem;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 10px rgba(28, 90, 102, 0.28);
}
.lead {
  max-width: 34ch;
  margin: 0 auto 1.4rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.02rem;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(28, 90, 102, 0.25);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.hero-actions .btn {
  min-width: min(100%, 16.5rem);
}
.hero .btn-light {
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.hero .btn-dark {
  box-shadow: 0 10px 30px rgba(42, 127, 141, 0.28);
}
.hero .btn-whatsapp {
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Reviews */
.rating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--brand-soft);
  border: 1px solid rgba(42, 127, 141, 0.14);
  border-radius: 999px;
  padding: .38rem .75rem;
  font-weight: 700;
  font-size: .8rem;
  color: var(--ink);
}
.hero-halal {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.origin-line {
  display: inline-block;
  margin: -.35rem 0 1rem !important;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), #fff6d6);
  border: 1px solid rgba(212, 160, 23, 0.45);
  color: var(--gold-deep) !important;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.faq-list {
  display: grid;
  gap: .55rem;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(42, 127, 141, 0.16);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: .9rem 1rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--brand-deep);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.faq-item a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--cart-dock) + 1rem);
  z-index: 56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 100, 55, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18, 100, 55, 0.42);
  color: #fff;
}
.wa-float svg { display: block; flex-shrink: 0; }
.review-cta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.review-cta p {
  width: 100%;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}
.review-card {
  background: #f7fbfc;
  border: 1px solid rgba(42, 127, 141, 0.12);
  border-radius: 14px;
  padding: .75rem .9rem;
}
.review-card .stars { color: #e6a100; letter-spacing: 1px; margin-bottom: .2rem; font-size: .78rem; }
.review-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: .35rem;
  font-size: .84rem;
  line-height: 1.4;
}
.review-card cite {
  font-style: normal;
  font-size: .72rem;
  color: var(--brand-deep);
  font-weight: 700;
}

/* Specials – equal cards, swipe rail */
.specials-wrap {
  position: relative;
}
.specials-rail {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: .15rem;
  padding: .15rem .15rem .45rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.specials-rail::-webkit-scrollbar {
  display: none;
}
.specials-card {
  position: relative;
  flex: 0 0 calc((100% - 1.7rem) / 3);
  min-width: 0;
  aspect-ratio: 3 / 4;
  height: auto;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--brand-deep);
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  isolation: isolate;
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 28px rgba(28, 90, 102, 0.16);
}
.specials-rail[data-count="1"] .specials-card {
  flex-basis: min(300px, 100%);
}
.specials-rail[data-count="2"] .specials-card {
  flex-basis: calc((100% - .85rem) / 2);
}
.specials-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28, 90, 102, 0.22);
  color: #fff;
}
.specials-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .4s ease;
}
.specials-card:hover > img {
  transform: scale(1.06);
}
.specials-card-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2a7f8d, #6fc3d3);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.specials-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 52, 60, 0.1) 0%, rgba(18, 52, 60, 0.15) 40%, rgba(18, 52, 60, 0.92) 100%);
  z-index: 1;
}
.specials-card-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: .95rem .9rem 1rem;
  display: grid;
  gap: .18rem;
  min-height: 8.6rem;
  align-content: end;
}
.specials-card-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: .15rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.specials-card-meta strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}
.specials-card-note {
  font-size: .8rem;
  opacity: .9;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.specials-card-price {
  margin-top: .25rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.specials-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 127, 141, 0.28);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-deep);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(28, 90, 102, 0.16);
  display: grid;
  place-items: center;
}
.specials-nav:hover:not(:disabled) {
  background: #fff;
  border-color: var(--brand);
}
.specials-nav:disabled {
  opacity: .35;
  cursor: default;
}
.specials-nav--prev { left: -.35rem; }
.specials-nav--next { right: -.35rem; }

.price { color: var(--brand-deep); font-weight: 800; }
.add-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.add-pill span {
  display: block;
  transform: translateY(-1px);
}

/* Spice + menu */
.spice-bar {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  background: #fff; border: 1px solid rgba(255,255,255,.55); border-radius: 16px;
  padding: .8rem 1rem; margin-bottom: 1.15rem;
}
.chili {
  color: var(--ink); font-size: .75rem; font-weight: 800;
  padding: .3rem .55rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent;
}
.chili.mild,
.chili.mid,
.chili.hot,
.chili.xhot { background: transparent; }
.chili-icon {
  width: 1.45rem;
  height: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.spice-options .option span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.spice-options .chili-icon {
  width: 1.5rem;
}
.tabs {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.15rem;
  position: sticky; top: var(--header); z-index: 20;
  padding: .5rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 70%, transparent);
}
.tab {
  border: 1px solid var(--line); background: rgba(255,255,255,.88); color: var(--muted);
  border-radius: 999px; padding: .5rem .9rem; font-weight: 700; font-size: .86rem; cursor: pointer;
}
.tab.active, .tab:hover { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }

.menu-group { margin-bottom: 1.8rem; }
.menu-group h3 { color: var(--brand-deep); font-size: 1.28rem; margin-bottom: .75rem; }
.menu-list { display: grid; gap: .7rem; }

.menu-item {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: .9rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  padding: .7rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.menu-item:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.thumb {
  width: 104px;
  height: 104px;
  border-radius: 14px;
  background: #fff;
  padding: .35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(42, 127, 141, 0.08);
}
.thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.thumb.placeholder {
  color: var(--brand-deep);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
}
.menu-item h4 { font-family: var(--font); font-size: 1.02rem; margin-bottom: .2rem; }
.menu-item p { color: var(--muted); font-size: .88rem; }
.tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .35rem; }
.tags span {
  font-size: .68rem; font-weight: 800; color: var(--brand-deep);
  background: var(--brand-soft); padding: .15rem .4rem; border-radius: 6px;
}
.item-side { display: grid; justify-items: end; gap: .5rem; }

/* About */
.story-copy p {
  color: var(--muted);
  margin-bottom: 0.9rem;
  max-width: 48ch;
}
.story-copy strong {
  color: var(--ink);
  font-weight: 700;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: center;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 1.15rem;
}
.check-list li {
  font-weight: 700;
  padding-left: 1.35rem;
  position: relative;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-deep);
}

.story-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  background: transparent;
}
.story-logo {
  width: min(320px, 100%);
  height: auto;
  display: block;
  border-radius: 50%;
}
.team-sign {
  margin-top: 1.5rem !important;
  font-family: "Caveat", cursive;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Media */
.media-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem;
}
.media-card {
  display: flex; align-items: center; gap: .8rem;
  background: #f7fbfc; border: 1px solid rgba(42, 127, 141, 0.12); border-radius: 16px; padding: 1rem;
  transition: border-color .2s, transform .2s;
}
.media-card:hover { border-color: var(--brand); transform: translateX(3px); }
.media-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}
.media-card p { color: var(--muted); font-size: .84rem; }
.arrow { margin-left: auto; color: var(--muted); font-size: 1.2rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.4rem; }
.contact-links { margin: .9rem 0; }
.contact-links a { color: var(--brand-deep); font-weight: 700; }
.delivery-note {
  list-style: none;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  padding: .85rem 1rem;
  border-radius: 12px;
  margin: 0 0 1rem;
  font-size: .92rem;
  border: 1px solid rgba(42, 127, 141, 0.14);
  display: grid;
  gap: .35rem;
}
.delivery-note li {
  margin: 0;
  padding: 0;
}
.hours { width: 100%; border-collapse: collapse; margin: .4rem 0 1.1rem; font-size: .92rem; }
.hours td { padding: .42rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 700; }
.hours tr.today td { color: var(--brand-deep); }
.hours .closed { color: #c0392b; }
.open-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 800;
  margin: .35rem 0 .55rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: #f7fbfc;
  border: 1px solid rgba(42, 127, 141, 0.18);
  color: var(--brand-deep);
}
.open-status.is-closed {
  color: #9b2c2c;
  background: #fff5f5;
  border-color: rgba(155, 44, 44, 0.2);
}
.open-status::before {
  content: '';
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: currentColor;
}
.map {
  border-radius: var(--radius); overflow: hidden; min-height: 360px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* Footer */
.site-footer {
  background: transparent;
  color: var(--ink);
  padding: 1.6rem 0 calc(2rem + var(--cart-dock));
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr auto auto; align-items: center;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  padding: 1.1rem 1.3rem;
  border: 2px solid var(--brand-deep);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: flex-start;
}
.footer-logo { height: 32px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.footer-links a { color: var(--brand-deep); font-weight: 700; }
.footer-copy { font-size: .85rem; color: var(--muted); }
.footer-copy { font-size: .85rem; }

/* Floating cart dock – only when cart has items */
.cart-dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(47,122,136,.12);
  padding: .65rem 0;
}
.cart-dock[hidden] {
  display: none !important;
}
.cart-dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}
.cart-dock-info { display: flex; flex-direction: column; gap: .1rem; }
.cart-dock-info strong { color: var(--brand-deep); font-size: 1.05rem; }
.cart-dock-info span { color: var(--muted); font-size: .82rem; }
.cart-dock .btn {
  padding: .7rem 1.05rem;
  gap: .45rem;
}
.cart-dock .cart-count {
  min-width: 1.35rem; height: 1.35rem; border-radius: 999px;
  background: #fff; color: var(--brand-deep);
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}

/* Drawer / Modal */
.overlay {
  position: fixed; inset: 0; background: rgba(12, 28, 32, .45);
  z-index: 60; border: 0; cursor: pointer;
}
.drawer {
  position: fixed; top: 0; right: 0; width: min(420px, 100%);
  height: 100%; height: 100dvh; max-height: 100%; max-height: 100dvh;
  background: #fff; z-index: 70; transform: translateX(100%);
  transition: transform .28s ease; display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.drawer.open { transform: translateX(0); }
.drawer-head, .drawer-foot { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.drawer-foot {
  border-bottom: 0; border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -8px 24px rgba(47, 122, 136, .08);
}
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.drawer-body { padding: 0 1.1rem; }
.drawer-fields {
  padding: .8rem 1.1rem; display: grid; gap: .55rem; border-top: 1px solid var(--line);
}
.drawer-meta {
  padding: .35rem 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
}
.drawer-foot .total-row { margin-bottom: .55rem; }
.drawer-foot .btn-ghost { margin-top: .35rem; }
.drawer-fields label {
  display: grid; gap: .25rem; font-size: .8rem; font-weight: 700; color: var(--muted);
}
.drawer-fields input, .drawer-fields select, .drawer-fields textarea {
  width: 100%; border: 1px solid rgba(42, 127, 141, 0.18); border-radius: 12px;
  padding: .65rem .75rem; background: #fff; color: var(--ink);
}
.drawer-fields input:focus, .drawer-fields select:focus, .drawer-fields textarea:focus {
  outline: 2px solid rgba(42, 127, 141, 0.25);
  border-color: var(--brand-deep);
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.empty { text-align: center; color: var(--muted); padding: 2rem .5rem; }
.cart-line {
  display: grid; grid-template-columns: 1fr auto; gap: .3rem .6rem;
  padding: .75rem 0; border-bottom: 1px solid var(--line);
}
.cart-line .meta { color: var(--muted); font-size: .82rem; }
.cart-line .sum { font-weight: 800; color: var(--brand-deep); }
.line-controls { display: inline-flex; align-items: center; gap: .35rem; }
.line-controls button {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line);
  background: #f7fbfc; cursor: pointer;
}
.total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .7rem; font-size: 1.05rem;
}
.total-row strong { font-size: 1.35rem; color: var(--brand-deep); }
.total-row.sub {
  font-size: .95rem;
  margin-bottom: .35rem;
}
.total-row.sub strong { font-size: 1rem; color: var(--ink); }
.delivery-distance {
  font-size: .82rem;
  line-height: 1.4;
  margin: -.15rem 0 .15rem;
  padding: .55rem .7rem;
  border-radius: 10px;
  background: #f7fbfc;
  border: 1px solid rgba(42, 127, 141, 0.14);
  color: var(--muted);
}
.delivery-distance.is-ok {
  color: var(--brand-deep);
  border-color: rgba(42, 127, 141, 0.28);
  background: var(--brand-soft);
  font-weight: 600;
}
.delivery-distance.is-wait { color: var(--muted); }
.delivery-distance.is-err {
  color: #9b2c2c;
  background: #fff5f5;
  border-color: rgba(155, 44, 44, 0.2);
  font-weight: 600;
}
.cart-policy {
  font-size: .8rem;
  color: var(--muted);
  margin: .35rem 0 0;
  line-height: 1.4;
}
.min-order-warn {
  font-size: .85rem;
  font-weight: 700;
  color: #9b2c2c;
  background: #fff5f5;
  border: 1px solid rgba(155, 44, 44, 0.2);
  border-radius: 10px;
  padding: .55rem .7rem;
  margin: .15rem 0 .55rem;
  line-height: 1.35;
}
#sendOrder:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.allergen-note {
  margin-top: 1.1rem;
  padding: .75rem .95rem;
  background: var(--brand-soft);
  border: 1px solid rgba(42, 127, 141, 0.14);
  border-radius: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.allergen-note strong { color: var(--brand-deep); }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1;
}

[hidden] { display: none !important; }
.modal {
  position: fixed; inset: 0; z-index: 80; display: grid; place-items: center;
  padding: 1rem; background: rgba(12, 28, 32, .5);
}
.modal-card {
  width: min(480px, 100%); max-height: min(92vh, 860px);
  background: #fff; border-radius: 24px; position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal-scroll {
  overflow: auto;
  max-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
}
.modal-close {
  position: absolute; top: .7rem; right: .7rem; z-index: 5;
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.modal-media {
  background: #fff;
  min-height: 200px; max-height: 260px;
  padding: 1rem 1.2rem 0.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid rgba(42, 127, 141, 0.08);
}
.modal-media img {
  max-width: 100%; max-height: 220px;
  object-fit: contain;
}
.modal-content { padding: 1rem 1.2rem 1.3rem; }
.modal-content h2 { font-size: 1.4rem; }
.modal-content > p { color: var(--muted); margin: .4rem 0 .6rem; }
.modal-price { color: var(--brand-deep) !important; font-weight: 800; font-size: 1.2rem; }
.modal-price-hint, .modal-tip, .modal-allergens, .modal-included {
  font-size: .82rem;
  color: var(--muted);
  margin: .25rem 0 .55rem;
  line-height: 1.4;
}
.modal-allergens, .modal-included {
  font-weight: 600;
  color: var(--brand-deep);
}
.allergen-nums {
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-deep);
}
.modal-block { margin: 1rem 0; }
.modal-block h3 { font-family: var(--font); font-size: .95rem; margin-bottom: .5rem; }
.modal-block small { color: var(--muted); font-weight: 500; }
.check {
  display: flex !important; align-items: center; gap: .55rem;
  background: #f7fbfc; border: 1px solid var(--line); border-radius: 12px; padding: .7rem .8rem;
}
.check em { color: var(--brand-deep); font-style: normal; font-weight: 800; }
.option-grid { display: grid; gap: .4rem; }
.option {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: 12px; padding: .6rem .75rem;
  cursor: pointer; background: #fff;
}
.option.selected { border-color: var(--brand); background: var(--brand-soft); }
.spice-options {
  grid-template-columns: 1fr 1fr;
}
.option input { accent-color: var(--brand-deep); }
.qty-row { display: flex; justify-content: space-between; align-items: center; }
.qty { display: inline-flex; align-items: center; gap: .55rem; }
.qty button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: #f7fbfc; cursor: pointer; font-size: 1.1rem;
}
.qty span { min-width: 1.4rem; text-align: center; font-weight: 800; }

.fab { display: none; }
.toast {
  position: fixed; left: 50%; bottom: calc(var(--cart-dock) + 1rem);
  transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: .7rem 1.05rem;
  border-radius: 999px; z-index: 90; font-size: .9rem;
}

.legal {
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
}
.legal-panel {
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--brand-deep);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 18px 48px rgba(28, 90, 102, 0.14);
}
.legal h1 { margin-bottom: 1rem; color: var(--ink); }
.legal h2 {
  font-size: 1.2rem; margin: 1.4rem 0 .5rem; font-family: var(--font);
  color: var(--ink);
}
.legal .kicker { color: var(--brand-deep); }
.legal p, .legal li { color: var(--muted); margin-bottom: .55rem; }
.legal a { color: var(--brand-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal a.btn {
  text-decoration: none;
  margin: .25rem .35rem .25rem 0;
  display: inline-flex;
}
.legal a.btn-primary {
  color: #fff;
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}
.legal a.btn-primary:hover {
  color: #fff;
}
.legal a.btn-ghost {
  color: var(--brand-deep);
  background: #fff;
  border: 1.5px solid rgba(42, 127, 141, 0.35);
}
.legal a.btn-ghost:hover {
  color: var(--brand-deep);
  background: var(--brand-soft);
}
.legal a.btn-light {
  color: var(--brand-deep);
}
.legal ul, .legal ol { padding-left: 1.2rem; margin-bottom: .85rem; }
.legal ol { list-style: decimal; }
.legal li { margin-bottom: .45rem; }
.legal em { font-style: italic; color: var(--muted); }
.cart-legal-note {
  font-size: .78rem;
  color: var(--muted);
  margin: 0 0 .55rem;
  line-height: 1.35;
}
.cart-legal-note a,
.cart-policy a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: calc(var(--cart-dock) + 1rem);
  z-index: 95; max-width: 440px; margin-inline: auto;
  background: #fff; color: var(--ink);
  border: 2px solid var(--brand-deep); border-radius: 22px;
  padding: 1.2rem 1.25rem 1.15rem; box-shadow: 0 18px 40px rgba(28, 90, 102, 0.22);
}
.cookie-banner h2 { font-size: 1.12rem; margin-bottom: .4rem; color: var(--ink); }
.cookie-banner p { color: var(--muted); font-size: .88rem; margin-bottom: 1rem; line-height: 1.45; }
.cookie-banner a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.cookie-actions .btn {
  width: 100%;
  justify-content: center;
  padding: .72rem 1rem;
  font-size: .9rem;
}
.cookie-actions .btn-ghost {
  background: #fff;
  color: var(--brand-deep);
  border: 1.5px solid rgba(42, 127, 141, 0.4);
}
.cookie-actions .btn-light {
  background: #f3fafb;
  color: var(--brand-deep);
  border: 1.5px solid rgba(42, 127, 141, 0.22);
}
.cookie-actions-row {
  flex-direction: row;
  flex-wrap: wrap;
}
.cookie-actions-row .btn {
  width: auto;
  flex: 1 1 auto;
  min-width: 7.5rem;
}
.cookie-panel {
  position: fixed; inset: 0; z-index: 96; display: grid; place-items: center;
  padding: 1rem; background: rgba(12, 28, 32, .5);
}
.cookie-card {
  width: min(420px, 100%); background: #fff; border-radius: 22px;
  padding: 1.3rem 1.2rem; border: 2px solid var(--brand-deep);
  box-shadow: var(--shadow);
}
.cookie-card h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.cookie-card > p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.cookie-card a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-opt {
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
  padding: .75rem 0; border-top: 1px solid var(--line);
}
.cookie-opt strong { display: block; font-size: .92rem; }
.cookie-opt span { display: block; font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.cookie-opt input { width: 1.1rem; height: 1.1rem; accent-color: var(--brand-deep); }
.map-consent {
  min-height: 360px; display: grid; place-items: center; text-align: center;
  padding: 1.5rem; background: #f7fbfc; border-radius: var(--radius);
  border: 1px dashed rgba(42, 127, 141, 0.35);
}
.map-consent p { color: var(--muted); margin-bottom: .9rem; max-width: 28ch; }

@media (max-width: 960px) {
  .hero-layout, .story-grid, .contact-grid, .media-grid, .footer-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .specials-rail[data-count="3"] .specials-card,
  .specials-rail:not([data-count="1"]):not([data-count="2"]) .specials-card {
    flex-basis: calc((100% - .85rem) / 2);
  }
  .specials-nav--prev { left: .15rem; }
  .specials-nav--next { right: .15rem; }
  .story-brand {
    order: -1;
  }
  .story-logo {
    width: min(300px, 88%);
  }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header);
    background: #fff; border-bottom: 1px solid rgba(42, 127, 141, 0.12);
    flex-direction: column; padding: 1rem;
  }
  .nav.open { display: flex; }
  .burger { display: flex; }
  .cart-btn-label { display: none; }
  .menu-item { grid-template-columns: 78px 1fr auto; }
  .thumb { width: 78px; height: 78px; }
}

@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .menu-item p {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .specials-rail[data-count="1"] .specials-card {
    flex-basis: min(280px, 86%);
  }
  .specials-rail[data-count="2"] .specials-card,
  .specials-rail[data-count="3"] .specials-card,
  .specials-rail:not([data-count="1"]):not([data-count="2"]) .specials-card {
    flex-basis: 78%;
  }
  .specials-card-meta {
    min-height: 8.2rem;
  }
  .specials-nav {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }
  .cart-dock-info span { display: none; }
  .wa-float {
    right: .85rem;
  }
}
