﻿:root {
  color-scheme: light;
  --green-900: #0b2c1d;
  --green-700: #17543a;
  --green-500: #2e8f63;
  --green-300: #87d7a1;
  --mint-100: #f2f9f3;
  --sun-500: #ff9b5f;
  --sun-300: #ffcd8c;
  --berry-500: #f06c6c;
  --berry-300: #ffb6b6;
  --ink-900: #1b1b1f;
  --ink-500: #4c4e57;
  --shadow: 0 18px 40px rgba(12, 30, 20, 0.2);
  --glass-bg: rgba(12, 33, 24, 0.2);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 14px;
  --glass-sat: 130%;
  --glass-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  --glass-surface: var(--glass-overlay), var(--glass-bg);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: #f1f6f2;
  background: #0f2a1f;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(12, 35, 26, 0.92);
  backdrop-filter: blur(14px);
  z-index: 10;
  border-bottom: 1px solid rgba(200, 230, 210, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
}

.logo-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #eef6f0;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
  background: #1a3b2c;
  color: #f0fff5;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-700);
  display: block;
  border-radius: 2px;
}

.hero {
  padding: 72px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #a7d7b4;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: #cfe0d4;
  max-width: 560px;
}

.story-mission p {
  color: #cfe0d4;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  flex-wrap: nowrap;
}

.hero-actions .btn {
  white-space: nowrap;
}

.festive-special {
  padding: 50px 0;
  background: radial-gradient(circle at top right, rgba(191, 231, 184, 0.18), transparent 55%),
    linear-gradient(120deg, #0f2a20 0%, #10231b 100%);
  border-top: 1px solid rgba(140, 192, 155, 0.15);
  border-bottom: 1px solid rgba(140, 192, 155, 0.15);
}

.festive-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.festive-copy h2 {
  margin: 12px 0 10px;
  font-size: 2rem;
}

.festive-copy .lead {
  color: #d7e6dc;
}

.festive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.festive-tag {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(191, 231, 184, 0.35);
  color: #bfe7b8;
  font-size: 0.85rem;
  background: rgba(191, 231, 184, 0.08);
}

.festive-note {
  margin: 0;
  color: #cfe0d4;
  font-size: 0.95rem;
}

.whatsapp-note {
  margin-top: 0;
  padding: 16px 18px;
  background: #0c2118;
  border-radius: 18px;
  border: 1px solid rgba(140, 192, 155, 0.2);
  box-shadow: 0 14px 30px rgba(6, 20, 14, 0.45);
  display: grid;
  gap: 12px;
}

.whatsapp-note p {
  margin: 0;
  color: #cfe0d4;
}

.whatsapp-section {
  padding: 20px 0 40px;
}

.whatsapp-button {
  align-self: flex-start;
  width: auto;
  display: inline-flex;
  justify-self: start;
  gap: 10px;
}

.whatsapp-button img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: var(--shadow);
}

.btn-ghost {
  border-color: var(--green-700);
  color: var(--green-700);
  background: white;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-metrics h3 {
  margin: 0;
  font-size: 1.2rem;
}

.hero-metrics p {
  margin: 4px 0 0;
  color: #cfe0d4;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.dish-card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 420px;
  color: var(--ink-900);
}

.dish-card svg {
  width: 100%;
  height: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.dish-caption h4 {
  margin: 12px 0 6px;
  font-family: "Fraunces", "Georgia", serif;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  right: 12px;
  background: var(--berry-500);
  color: white;
  padding: 14px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.hero-badge h5 {
  margin: 6px 0 0;
  font-size: 0.9rem;
}


.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.features,
.signature,
.testimonials {
  padding: 72px 0;
}

.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.feature-card,
.menu-card,
.quote-card,
.offer-card {
  background: white;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  animation: fadeUp 0.6s ease both;
  animation-delay: var(--delay, 0s);
  color: var(--ink-900);
}

.feature-card h3,
.menu-card h4,
.offer-card h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", "Georgia", serif;
}

.menu-card span,
.offer-card span {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 600;
}

.catering-card {
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catering-card.is-selected {
  border-color: #8cc09b;
  box-shadow: 0 16px 34px rgba(20, 86, 60, 0.18);
}

.catering-checkbox {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  accent-color: #17543a;
}

.catering-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.catering-section .menu-category {
  background: #0c2118;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(140, 192, 155, 0.18);
  box-shadow: 0 18px 40px rgba(6, 20, 14, 0.6);
}

.catering-section .menu-category:first-child {
  margin-top: 20px;
}

.catering-section .menu-category h2 {
  margin: 0 0 16px;
  color: #f1f6f2;
  font-family: "Fraunces", "Georgia", serif;
}

.catering-section .card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 16px;
}

.catering-section .menu-card {
  background: #132f24;
  color: #f1f6f2;
  border: 1px solid rgba(200, 230, 210, 0.15);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
  animation: none;
}

.catering-section .menu-card h4 {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Work Sans", "Helvetica", sans-serif;
}

.catering-section .catering-checkbox {
  position: static;
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}

.catering-section .catering-card.is-selected {
  border-color: #8cc09b;
  box-shadow: 0 0 0 1px rgba(140, 192, 155, 0.4);
}

.cta-band {
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  color: white;
  padding: 54px 0;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band .btn {
  border-color: white;
}

.testimonials {
  padding-top: 24px;
}

.quote-card p {
  font-style: italic;
}

.site-footer {
  background: var(--green-900);
  color: white;
  padding: 46px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-legal {
  margin-top: 24px;
  text-align: center;
  color: #cfe0d4;
  font-size: 0.85rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

.footer-grid a {
  display: block;
  color: white;
  margin-top: 6px;
}

.footer-grid p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.footer-grid .social-icon {
  margin-top: 6px;
}

.footer-time {
  margin-top: 3px;
}

.page-hero {
  padding: 70px 0 40px;
  background: radial-gradient(circle at top, #163828 0%, #0f2a1f 55%, #0c2118 100%);
  border-bottom: 1px solid rgba(200, 230, 210, 0.08);
}

body[data-page="contact"] .page-hero {
  background: radial-gradient(circle at top, #163828 0%, #0f2a1f 55%, #0c2118 100%);
  border-bottom: 1px solid rgba(200, 230, 210, 0.08);
}

.story-grid .container,
.menu-section .container,
.offers-grid .container,
.contact-grid .container {
  display: grid;
  gap: 24px;
}

.story-grid .container {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding-bottom: 70px;
  padding-top: 38px;
}

.story-card {
  background: white;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--ink-900);
}

body[data-page="about"] .story-card {
  padding-top: 34px;
}

.story-card ul {
  padding-left: 18px;
  color: var(--ink-500);
}

.story-card .btn {
  margin-top: 28px;
}

.spacer-why-we-cook {
  height: 22px;
}

.founder-section {
  padding: 10px 0 80px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.founder-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.founder-note {
  background: #0c2118;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(140, 192, 155, 0.18);
  box-shadow: 0 18px 40px rgba(6, 20, 14, 0.6);
}

.founder-note h2 {
  margin: 8px 0 14px;
  font-family: "Fraunces", "Georgia", serif;
}

.founder-note p {
  margin: 0 0 14px;
  color: #cfe0d4;
  line-height: 1.6;
}

.founder-note p:last-child {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.team-grid span {
  display: block;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.menu-section {
  padding-bottom: 70px;
}

.menu-section.dinner-thali {
  margin-top: 40px;
}

.menu-showcase-note {
  margin-top: -20px;
}

.menu-showcase {
  padding: 40px 0 90px;
}

.menu-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.menu-panel {
  background: #0c2118;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(6, 20, 14, 0.6);
  border: 1px solid rgba(140, 192, 155, 0.18);
  display: grid;
  gap: 18px;
}

.menu-panel-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-panel-price {
  margin-left: auto;
  font-weight: 600;
  color: #bfe7b8;
}

.menu-panel-header h2 {
  margin: 0;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.6rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item[hidden] {
  display: none !important;
}

.menu-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 255, 220, 0.2);
}

.menu-item-image-top {
  object-position: center top;
}

.menu-item-image-focus-bowl {
  object-position: left bottom;
}


.menu-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.1rem;
}

.menu-item p {
  margin: 6px 0 0;
  color: #c8d9cd;
  font-size: 0.95rem;
}

.menu-item-note {
  margin-top: 4px;
  color: #d6e4da;
  font-size: 0.92rem;
}

.menu-item-allergen {
  margin-top: 2px;
  color: #a7d7b4;
  font-size: 0.82rem;
}

.menu-item-price {
  font-weight: 700;
  color: #bfe7b8;
}

.menu-item-body {
  display: grid;
  gap: 4px;
}

.menu-item-order {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.thali-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 4px;
}

.thali-order-label {
  font-weight: 600;
  color: #cfe0d4;
}

.thali-order .menu-item-order {
  margin-top: 0;
}

.menu-item-order .dish-qty {
  width: 56px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(200, 230, 210, 0.25);
  background: #17543a;
  color: #f1f6f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.qty-btn:focus-visible {
  outline: 3px solid rgba(191, 231, 184, 0.7);
  outline-offset: 2px;
}

.menu-add-btn {
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140, 192, 155, 0.35);
  background: #1a3b2c;
  color: #f1f6f2;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.menu-add-btn:focus-visible {
  outline: 3px solid rgba(191, 231, 184, 0.7);
  outline-offset: 2px;
}

.menu-order-form {
  display: grid;
  gap: 28px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 4px;
}

.menu-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(140, 192, 155, 0.25);
  background: #132f24;
  color: #f1f6f2;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.menu-tab.is-active {
  background: #1d4b34;
  border-color: #bfe7b8;
  box-shadow: 0 0 0 2px rgba(191, 231, 184, 0.2);
}

.menu-tab:focus-visible {
  outline: 3px solid rgba(191, 231, 184, 0.7);
  outline-offset: 2px;
}

.menu-tab-panel[hidden] {
  display: none;
}

.menu-order-panel {
  display: grid;
  gap: 24px;
}

.menu-basket {
  background: var(--glass-surface);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  display: grid;
  gap: 12px;
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

.menu-basket-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-basket-heading {
  display: grid;
  gap: 4px;
}

.menu-basket-toggle {
  border-radius: 999px;
  border: 1px solid rgba(191, 231, 184, 0.45);
  background: transparent;
  color: #bfe7b8;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-basket-toggle:focus-visible {
  outline: 3px solid rgba(191, 231, 184, 0.7);
  outline-offset: 2px;
}

.menu-basket-icon {
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-basket-body {
  display: grid;
  gap: 12px;
}

.menu-basket.is-minimized .menu-basket-body {
  display: none;
}

.menu-basket-note {
  margin: 0;
  color: #cfe0d4;
  font-size: 0.9rem;
}

.menu-order-note {
  margin-bottom: 10px;
}

.menu-order-note.menu-thali-note {
  margin-top: 0;
  font-style: italic;
  color: #cfe0d4;
}

.thali-status {
  margin: 0;
}

.menu-basket-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.menu-basket-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: #e5efe8;
  align-items: center;
}

.menu-basket-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-basket-amount {
  font-weight: 600;
}

.menu-basket-remove {
  border-radius: 999px;
  border: 1px solid rgba(191, 231, 184, 0.45);
  background: transparent;
  color: #bfe7b8;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.menu-basket-remove:focus-visible {
  outline: 3px solid rgba(191, 231, 184, 0.7);
  outline-offset: 2px;
}

.chat-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1200;
  font-family: "Work Sans", "Helvetica", sans-serif;
}

.chat-toggle {
  border-radius: 999px;
  border: 1px solid rgba(191, 231, 184, 0.5);
  background: #17543a;
  color: #f1f6f2;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(6, 20, 14, 0.45);
}

.chat-panel {
  margin-top: 10px;
  width: 320px;
  max-height: 70vh;
  background: var(--glass-surface);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(6, 20, 14, 0.55);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(140, 192, 155, 0.18);
}

.chat-title {
  font-weight: 700;
  color: #f1f6f2;
}

.chat-subtitle {
  font-size: 0.8rem;
  color: #cfe0d4;
}

.chat-close {
  border: 1px solid rgba(191, 231, 184, 0.5);
  background: transparent;
  color: #bfe7b8;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.chat-messages {
  padding: 14px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.chat-message {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: pre-wrap;
}

.chat-message.is-assistant {
  background: #132f24;
  color: #e5efe8;
  align-self: flex-start;
}

.chat-message.is-user {
  background: #1d4b34;
  color: #f1f6f2;
  align-self: flex-end;
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(140, 192, 155, 0.18);
}

.chat-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(140, 192, 155, 0.35);
  background: #0f2a1f;
  color: #f1f6f2;
  padding: 8px 12px;
}

.chat-send {
  border-radius: 999px;
  border: 1px solid rgba(191, 231, 184, 0.5);
  background: #17543a;
  color: #f1f6f2;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.chat-status {
  padding: 0 16px 14px;
  font-size: 0.8rem;
  color: #cfe0d4;
}

.glass-panel,
.whatsapp-note,
.catering-section .menu-category,
.menu-panel,
.menu-basket,
.chat-panel,
body[data-page="order"] .order-form,
body[data-page="menu"] .order-form,
.contact-form,
.review-card,
.modal,
.contact-panel,
.founder-note,
.share-card,
.review-empty-banner,
.checkout-choice,
.cookie-banner-content {
  background: var(--glass-surface);
  border-color: var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

@media (max-width: 640px) {
  .chat-panel {
    width: min(92vw, 340px);
  }
}

body[data-page="menu"] .menu-basket {
  position: fixed;
  top: auto;
  bottom: 40px;
  right: 40px;
  transform: none;
  width: clamp(260px, 32vw, 380px);
  max-height: min(70vh, 520px);
  overflow: auto;
  z-index: 30;
}

@media (max-width: 960px) {
  body[data-page="menu"] .menu-basket {
    position: static;
    width: auto;
    max-height: none;
  }
}

.thali-intro {
  margin: 0;
  color: #cfe0d4;
}

.thali-form {
  display: grid;
  gap: 20px;
}

.thali-group {
  border: 1px solid rgba(140, 192, 155, 0.2);
  border-radius: 20px;
  padding: 18px;
  margin: 0;
  background: rgba(12, 33, 24, 0.65);
}

.thali-group legend {
  padding: 0 8px;
  font-weight: 600;
  color: #f1f6f2;
}

.thali-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.thali-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #132f24;
  border: 1px solid rgba(200, 230, 210, 0.15);
}

.thali-option input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(200, 230, 210, 0.75);
  border-radius: 4px;
  background: #0a1b14;
  display: grid;
  place-content: center;
  margin: 0;
}

.thali-option input::before {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #bfe7b8;
  border-bottom: 2px solid #bfe7b8;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.15s ease;
}

.thali-option input:checked {
  background: #1d4b34;
  border-color: #bfe7b8;
  box-shadow: 0 0 0 2px rgba(191, 231, 184, 0.2);
}

.thali-option input:checked::before {
  transform: scale(1) rotate(-45deg);
}

.thali-option input:focus-visible {
  outline: 2px solid #bfe7b8;
  outline-offset: 2px;
}

.thali-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: #e5efe8;
  font-size: 0.95rem;
  cursor: pointer;
  justify-content: space-between;
}

.thali-icon {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid rgba(200, 230, 210, 0.25);
  flex-shrink: 0;
}

.thali-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: #bfe7b8;
  background: rgba(28, 76, 53, 0.65);
  padding: 2px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.thali-option input:checked + label .thali-count {
  opacity: 1;
  transform: scale(1);
}

.special-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin: 12px 0;
}

.menu-category {
  margin-bottom: 36px;
}

.menu-category h2 {
  font-family: "Fraunces", "Georgia", serif;
  margin-bottom: 16px;
}

.form-section {
  padding-bottom: 80px;
}

.order-form,
.contact-form {
  background: #0c2118;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: #f1f6f2;
  border: 1px solid rgba(140, 192, 155, 0.18);
}

.order-form {
  background: #e4f2e6;
  color: var(--ink-900);
  border-color: rgba(46, 143, 99, 0.25);
}

body[data-page="order"] .order-form {
  background: #0c2118;
  color: #f1f6f2;
  border-color: rgba(140, 192, 155, 0.18);
}

body[data-page="menu"] .order-form {
  background: #0c2118;
  color: #f1f6f2;
  border-color: rgba(140, 192, 155, 0.18);
}

.form-section {
  padding-top: 24px;
}

.contact-grid {
  padding-top: 24px;
}

body[data-page="contact"] .contact-form {
  background: #0c2118;
  border: 1px solid rgba(140, 192, 155, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.form-block {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(200, 230, 210, 0.2);
  font-family: inherit;
  color: var(--ink-900);
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(200, 230, 210, 0.45);
  box-shadow: 0 0 0 3px rgba(140, 192, 155, 0.18);
  background: #ffffff;
  color: var(--ink-900);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink-900);
  box-shadow: 0 0 0 1000px #ffffff inset;
  transition: background-color 9999s ease-in-out 0s;
}

input::placeholder,
textarea::placeholder {
  color: #a7d7b4;
}

.full {
  grid-column: 1 / -1;
}

.pill-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill-helper {
  font-size: 0.85rem;
  color: #cfe0d4;
}

.pill-qty {
  background: #1a3b2c;
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  width: 100%;
}

.pill-qty-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 140px;
}

.pill-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cfe0d4;
}

.time-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-row select {
  min-width: 180px;
}

.time-helper {
  margin-left: auto;
  font-size: 0.8rem;
  color: #cfe0d4;
  text-align: right;
  white-space: nowrap;
}

.pill-allergen {
  font-size: 0.7rem;
  color: #cfe0d4;
  letter-spacing: 0.02em;
}

.pill-qty-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  background: #0c2118;
  color: #f1f6f2;
  border: 1px solid rgba(200, 230, 210, 0.25);
  margin-top: 10px;
}

.order-total strong {
  font-size: 1.05rem;
}

.checkout-choice {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(140, 192, 155, 0.2);
  background: #132a1d;
}

.checkout-choice legend {
  font-weight: 600;
  padding: 0 6px;
}

.checkout-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(200, 230, 210, 0.2);
  background: #0c2118;
  color: #f1f6f2;
}

.checkout-option input {
  margin-top: 4px;
}

.checkout-option strong {
  display: block;
  font-weight: 600;
}

.checkout-note {
  display: block;
  font-size: 0.85rem;
  color: #cfe0d4;
  margin-top: 4px;
}

.checkout-helper {
  margin: 0;
  font-size: 0.85rem;
  color: #cfe0d4;
}

.review-card {
  background: #0c2118;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: #f1f6f2;
  border: 1px solid rgba(140, 192, 155, 0.18);
}

.review-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-block h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", "Georgia", serif;
}

.review-list,
.review-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.review-list li,
.review-details li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.review-totals {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 230, 210, 0.2);
  display: grid;
  gap: 6px;
}

.review-totals p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.review-choice {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #cfe0d4;
}

.review-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-empty-banner {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(200, 230, 210, 0.3);
  background: #132a1d;
  margin-top: 20px;
}

.review-empty-banner h2 {
  margin: 0;
  font-family: "Fraunces", "Georgia", serif;
}

.review-empty-banner p {
  margin: 0;
  color: #cfe0d4;
  font-size: 0.95rem;
}

.review-empty-banner .btn {
  justify-self: start;
}

.dish-qty {
  width: 64px;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(200, 230, 210, 0.3);
  background: #0f2a1f;
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
}

.dish-qty:focus {
  outline: none;
  border-color: rgba(200, 230, 210, 0.45);
  box-shadow: 0 0 0 3px rgba(140, 192, 155, 0.18);
}

.dish-spice {
  display: none;
  min-width: 120px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(200, 230, 210, 0.3);
  background: #0f2a1f;
  color: #ffffff;
  font-size: 0.85rem;
}

.dish-spice.is-visible {
  display: block;
}

.dish-spice:focus {
  outline: none;
  border-color: rgba(200, 230, 210, 0.45);
  box-shadow: 0 0 0 3px rgba(140, 192, 155, 0.18);
}

@media (max-width: 640px) {
  .pill-qty-info {
    min-width: 120px;
  }

  .pill-qty-controls {
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .dish-spice.is-visible {
    width: 100%;
  }
}

.pill-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 12px 0 4px;
  width: 100%;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 13, 0.7);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 20px;
}

.modal {
  width: min(520px, 92vw);
  background: #0c2118;
  color: #f1f6f2;
  border-radius: 20px;
  border: 1px solid rgba(140, 192, 155, 0.2);
  box-shadow: 0 30px 60px rgba(6, 20, 14, 0.7);
  padding: 22px;
}

.modal h3 {
  margin: 0 0 6px;
  font-family: "Fraunces", "Georgia", serif;
}

.modal-subtitle {
  margin: 0 0 16px;
  color: #cfe0d4;
}

.modal-body {
  background: #132f24;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(200, 230, 210, 0.15);
}

.modal-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.modal-total {
  margin: 12px 0 0;
  font-weight: 600;
  color: #f1f6f2;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1200;
}

.cookie-banner-content {
  background: #0c2118;
  border: 1px solid rgba(200, 230, 210, 0.2);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cookie-banner-text {
  display: grid;
  gap: 6px;
}

.cookie-banner-title {
  margin: 0;
  font-size: 1rem;
  color: #f1f6f2;
  font-weight: 600;
}

.cookie-banner-content p {
  margin: 0;
  color: #cfe0d4;
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn:focus-visible {
  outline: 3px solid #bfe7b8;
  outline-offset: 3px;
}

body.has-cookie-banner df-messenger {
  bottom: 140px;
}

.share-page {
  background: #0f2a1f;
}

.share-section {
  padding: 24px 0 90px;
}

.share-grid {
  display: grid;
  gap: 20px;
}

.share-card {
  background: #0c2118;
  border-radius: 24px;
  border: 1px solid rgba(200, 230, 210, 0.2);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.share-card-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.share-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(135, 215, 161, 0.35);
}

.share-price {
  font-weight: 600;
  color: #cfe0d4;
  margin-top: 8px;
}

.share-description {
  font-size: 1rem;
  color: #e7f2ea;
}

.share-allergens {
  display: grid;
  gap: 8px;
}

.share-allergen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 84, 58, 0.6);
  border: 1px solid rgba(135, 215, 161, 0.35);
  font-size: 0.8rem;
}

.share-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .share-card {
    padding: 22px;
  }

  .share-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.modal-backdrop[hidden] {
  display: none;
}

[data-delivery-address][hidden] {
  display: none;
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  color: var(--green-700);
}

.menu-order-form .form-status,
.order-form .form-status {
  color: #ffffff;
}

.offers-grid {
  padding-bottom: 70px;
}

.offer-card {
  border-left: 8px solid var(--sun-500);
}

.contact-grid {
  padding-bottom: 80px;
}

.contact-layout .container {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-panel {
  background: #0c2118;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(140, 192, 155, 0.18);
  box-shadow: 0 18px 40px rgba(6, 20, 14, 0.6);
  display: grid;
  gap: 16px;
}

.contact-panel h2 {
  margin: 0;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.8rem;
}

.contact-copy {
  margin: 0;
  color: #cfe0d4;
  line-height: 1.6;
}

.contact-details-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.contact-info-card {
  background: #132f24;
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(150, 210, 170, 0.16);
  display: grid;
  gap: 6px;
}

.contact-info-card h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a7d7b4;
}

.contact-info-card a,
.contact-info-card p {
  margin: 0;
  color: #f1f6f2;
  font-weight: 600;
  word-break: break-word;
}

.contact-form h2 {
  margin: 0;
  font-family: "Fraunces", "Georgia", serif;
}

.contact-map {
  padding: 0 0 90px;
}

.map-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(140, 192, 155, 0.18);
  box-shadow: 0 18px 40px rgba(6, 20, 14, 0.6);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (min-width: 861px) {
  .site-header .container {
    gap: 16px;
  }

  .site-nav {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .site-nav a {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    right: 4vw;
    top: 70px;
    background: #0c2118;
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
    border: 1px solid rgba(140, 192, 155, 0.2);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 50px;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }
}
