:root {
  --color-mocha-mousse: #A47864; /* Pantone Mocha Mousse (17-1230) */
  --color-mocha-light: #D9B7A0;
  --color-mocha-very-light: #F7EBE4;
  --color-text-main: #2F241F;
  --color-accent-gold: #C7A271;

  --bg: var(--color-mocha-very-light);
  --bg-alt: #F0D8CB;
  --bg-page: var(--color-mocha-very-light);
  --bg-soft: #F0D8CB;
  --bg-elevated: #F9EFE7;

  --accent: var(--color-mocha-mousse);
  --accent-soft: var(--color-mocha-light);
  --accent-strong: #7A4F3C;
  --accent-dark: var(--accent-strong);

  --border: #E1D0C4;
  --text: var(--color-text-main);
  --muted: #6E5244;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-mocha-very-light);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 64px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 22px;
  background: linear-gradient(135deg, var(--color-mocha-mousse), var(--color-mocha-light));
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at top left, rgba(247, 235, 228, 0.85), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
}

.brand-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.brand-name {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 10px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(164, 120, 100, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-gold);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 1);
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
}

/* Hero card */
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.hero-card-sub {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.hero-list li {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.hero-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
}

/* Sections */
.section {
  margin-top: 40px;
}

.section-alt {
  background: var(--bg-alt);
  border-radius: 26px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.section-inner {
  max-width: 780px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.section p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 14px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1rem;
}

/* Launch CTA */
.launch-cta {
  margin: 2.5rem auto 1rem auto;
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #ffffffcc;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.launch-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--color-mocha-mousse);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.launch-text {
  font-size: 0.95rem;
}

/* Our story */
.our-story {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem 1.25rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  border-left: 4px solid var(--color-mocha-mousse);
}

.our-story h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.our-story p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Inside the kitchen – video section */
.kitchen {
  margin-top: 10px;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.kitchen-video-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.kitchen-video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: radial-gradient(circle at top left, rgba(244, 229, 220, 0.95), rgba(0, 0, 0, 0.35));
}

.kitchen-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.kitchen-video-card:hover .kitchen-video {
  transform: scale(1.04);
  opacity: 0.98;
}

.kitchen-video-card figcaption {
  line-height: 1.5;
}

.video-microcopy {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* Bullets + links */
.bullets {
  list-style: disc;
  margin-left: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.inline-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(164, 120, 100, 0.35);
}

.inline-link:hover {
  border-bottom-color: var(--accent);
}

/* Form */
.signup-form {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signup-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.signup-form button {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(164, 120, 100, 0.3);
  transition: background 0.2s ease, transform 0.1s ease;
}

.signup-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.footer-small {
  margin-top: 4px;
}

/* Responsive for main layout */
@media (max-width: 800px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding: 20px 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .kitchen-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Timeline */
.timeline {
  margin-top: 10px;
}

.timeline-steps {
  position: relative;
  margin-top: 18px;
  padding-left: 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
}

.timeline-step {
  position: relative;
  padding-left: 16px;
  margin-bottom: 20px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step-dot {
  position: absolute;
  left: -9px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(164, 120, 100, 0.12);
}

.timeline-step-content {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.timeline-step-content:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: rgba(164, 120, 100, 0.6);
}

.timeline-step-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.timeline-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.timeline-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .timeline-steps {
    padding-left: 14px;
  }

  .timeline-step-content {
    padding: 10px 10px;
  }
}

/* ===========================
   MENU PAGE & BUILDER STYLES
   =========================== */

.menu-page {
  padding: 3.5rem 1.5rem;
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}

.menu-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Background video for menu */
.menu-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(2px);
  transform: scale(1.03);
  z-index: 0;
}

.menu-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(247, 235, 228, 0.9), rgba(0, 0, 0, 0.35));
  mix-blend-mode: soft-light;
  z-index: 1;
}

.menu-page-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.menu-page-header p {
  max-width: 680px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Tabs */
.menu-tabs {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(60, 40, 30, 0.1);
  padding-bottom: 0.75rem;
}

.menu-tab {
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.25);
  padding: 0.45rem 0.95rem;
  background: var(--bg-soft);
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.menu-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.menu-tab.active {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
}

/* Panels */
.menu-panels {
  margin-top: 1.75rem;
  position: relative;
  min-height: 260px;
}

.menu-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Grid / cards */
.menu-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.menu-item-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.menu-item-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.menu-item-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-tagline {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.menu-price {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.3rem 0 0.2rem;
}

/* Subheading inside panels */
.menu-subheading {
  font-size: 1.1rem;
  margin: 0 0 0.8rem;
  font-family: "Playfair Display", serif;
}

/* Builder (pasta) */
.builder {
  margin-top: 0.75rem;
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.builder-header h3 {
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.builder-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Step indicator */
.builder-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.1rem;
}

.builder-step-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.6;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
}

.builder-step-item.active {
  background: var(--accent);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.builder-step-item .step-number {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

/* Steps content */
.builder-body {
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.builder-step {
  display: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.builder-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.builder-step h4 {
  margin-bottom: 0.2rem;
}

.builder-tip {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* Chips */
.builder-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.builder-chip {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(60, 40, 30, 0.25);
  background: var(--bg-soft);
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.builder-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.builder-chip.selected {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
}

/* Add-ons layout */
.builder-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.builder-addon-column h5 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

/* Builder footer */
.builder-footer {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  border-top: 1px solid rgba(60, 40, 30, 0.1);
  padding-top: 1rem;
}

.builder-summary {
  flex: 2 1 260px;
}

.builder-summary h4 {
  margin-bottom: 0.4rem;
}

.builder-summary-line {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.builder-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.builder-controls {
  flex: 1 1 180px;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.builder-nav-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.4);
  background: var(--bg-soft);
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
}

.builder-nav-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.builder-nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Lite builders for salad & focaccia */
.builder-lite {
  margin-top: 1.75rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.builder-lite-row {
  margin-top: 0.75rem;
}

.builder-lite-row h5 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.builder-lite-add {
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.4);
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

/* "Add to selection" buttons in cards */
.menu-add-btn {
  margin-top: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.25);
  background: #fdf6ef;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Dessert extras */
.dessert-extras {
  margin-top: 0.4rem;
}

.dessert-extras-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.3rem 0 0.25rem;
}

/* Responsive for menu page */
@media (max-width: 768px) {
  .menu-page {
    padding: 3rem 1rem;
  }

  .builder {
    padding: 1.25rem 1.2rem;
  }

  .builder-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .builder-controls {
    justify-content: flex-start;
  }
}

/* ===========================
   FLOATING CART (DRAFT SELECTION)
   =========================== */

.menu-cart {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 340px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.96),
      rgba(247, 235, 228, 0.98));
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 40;
}

.menu-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  gap: 0.5rem;
  cursor: move;
  background: linear-gradient(120deg, rgba(164, 120, 100, 0.98), rgba(199, 162, 113, 0.96));
  border-radius: 20px 20px 12px 12px;
  color: #fff;
}

.menu-cart-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-cart-count-badge {
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-cart-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  color: #fff;
}

.menu-cart-body {
  padding: 0.55rem 0.85rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  overflow-y: auto;
  display: none;
}

.menu-cart.menu-cart-open .menu-cart-body {
  display: block;
}

.menu-cart.menu-cart-open .menu-cart-toggle {
  transform: rotate(180deg);
}

/* Cart text + list */
.menu-cart-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.menu-cart-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
}

.menu-cart-empty {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

/* Category grouping */
.menu-cart-category {
  margin-bottom: 0.45rem;
}

.menu-cart-category-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  margin-bottom: 0.1rem;
}

.menu-cart-category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Cart item + extras */
.menu-cart-item {
  margin-bottom: 0.35rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.menu-cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.menu-cart-item-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu-cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.menu-cart-item-type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(164, 120, 100, 0.08);
  color: var(--muted);
  border: 1px solid rgba(164, 120, 100, 0.2);
}

.menu-cart-item-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--muted);
}

.menu-cart-item-price {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.menu-cart-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.menu-cart-tag-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.menu-cart-tag-btn {
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.35);
  background: #fff;
  padding: 0.1rem 0.5rem;
  cursor: pointer;
}

.menu-cart-item-extras {
  margin-top: 0.3rem;
}

.menu-cart-extra {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.15rem;
  padding: 0.12rem 0.32rem;
  border-radius: 999px;
  background: rgba(240, 216, 203, 0.45);
}

.menu-cart-extra-name {
  font-size: 0.8rem;
}

.menu-cart-extra-count {
  font-size: 0.8rem;
  min-width: 2rem;
  text-align: center;
}

.menu-cart-extra-btn {
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.4);
  background: #fff;
  font-size: 0.75rem;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Cart total + actions */
.menu-cart-total {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.15rem 0 0.5rem;
}

.menu-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  align-items: center;
}

.btn-primary-cart {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, var(--accent), var(--color-accent-gold));
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

/* Button style for cart clear */
.btn-secondary {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.3);
  background: var(--bg-soft);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text);
}

/* Responsive for floating cart */
@media (max-width: 768px) {
  .menu-cart {
    width: 92%;
    left: 4%;
    right: auto;
  }
}

/* ===========================
   ENQUIRY SUMMARY MODULE
   =========================== */

.enquiry-summary {
  max-width: 700px;
  margin: 2.5rem auto 0;
  display: none;
}

.enquiry-summary-inner {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.enquiry-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.enquiry-summary-header h3 {
  margin: 0;
  font-size: 1rem;
}

.enquiry-summary-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.5rem 0 0.5rem;
}

#enquiry-text {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.6rem 0.7rem;
  font-size: 0.86rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  background: #fdf8f4;
}

.btn-secondary-small {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.3);
  background: var(--bg-soft);
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text);
}

/* ===========================
   EMPLOYEE TAG MODAL
   =========================== */

.tag-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19, 10, 6, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tag-modal-backdrop.tag-modal-open {
  display: flex;
}

.tag-modal {
  max-width: 360px;
  width: 100%;
  background: radial-gradient(circle at top left,
      #ffffff,
      #f9efe7);
  border-radius: 20px;
  padding: 1.1rem 1.2rem 1rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.tag-modal h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--color-mocha-mousse);
}

.tag-modal-text {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.tag-modal-input {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  outline: none;
}

.tag-modal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(164, 120, 100, 0.2);
}

.tag-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.tag-modal-btn {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border: 1px solid transparent;
  background: #fff;
  color: var(--text);
}

.tag-modal-btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--color-accent-gold));
  color: #fff;
  border-color: transparent;
}

.tag-modal-btn.ghost {
  border-color: rgba(60, 40, 30, 0.3);
  background: var(--bg-soft);
}

.tag-modal-btn.plain {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}
/* ===========================
   CONTACT PAGE
   =========================== */

.contact-page {
  padding: 3.5rem 1.5rem;
  background: var(--bg-page);
}

.contact-page-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.contact-header {
  max-width: 620px;
  margin-bottom: 2rem;
}

.contact-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.contact-header h1 {
  margin: 0 0 0.5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--text);
}

.contact-header p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.contact-badge {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(164, 120, 100, 0.08);
  border: 1px solid rgba(164, 120, 100, 0.22);
  font-size: 0.78rem;
  color: var(--muted);
}

/* Layout */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.contact-form-card h2,
.contact-info-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.contact-card-sub {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Form */
.contact-form {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-field {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-field-small {
  max-width: 160px;
}

.contact-field label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.45rem 0.55rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fdf8f4;
  outline: none;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(164, 120, 100, 0.18);
}

.required {
  color: #c75050;
  margin-left: 0.18rem;
}

/* Consent */
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.contact-consent input {
  margin-top: 0.15rem;
}

/* Actions */
.contact-actions {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-submit-btn {
  font-size: 0.9rem;
}

.contact-small-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* Sidebar content */
.contact-list {
  list-style: disc;
  margin: 0.6rem 0 1rem 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-highlight {
  margin-top: 0.5rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(247, 235, 228, 0.9);
  border: 1px solid rgba(164, 120, 100, 0.25);
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-highlight h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--color-mocha-mousse);
}

.contact-meta-block {
  margin-top: 1.1rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 3rem 1rem;
  }

  .contact-card {
    padding: 1.1rem 1.1rem;
  }
}
/* ===========================
   THANK YOU PAGE
   =========================== */

.thankyou-page {
  padding: 4rem 1.5rem;
  background: var(--bg-page);
}

.thankyou-inner {
  max-width: 960px;
  margin: 0 auto;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.2rem 2.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.thankyou-text {
  flex: 1 1 260px;
  min-width: 0;
}

.thankyou-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.thankyou-text h1 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  color: var(--color-mocha-mousse);
}

.thankyou-text p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.thankyou-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ===== Better Instagram QR Styling ===== */

.qr-instagram-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(164, 120, 100, 0.25); /* warm biscuit border */
  max-width: 220px;
  margin: 0 auto;
}

.qr-instagram-inner {
  border-radius: 18px;
  overflow: hidden;
}

.qr-instagram-image {
  width: 180px;
  height: auto;
  display: block;
}

.qr-caption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem !important;
}


.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .thankyou-page {
    padding: 3rem 1.1rem;
  }

  .thankyou-card {
    padding: 1.7rem 1.6rem;
  }
}
/* ===========================
   PRE-ORDER MODAL
   =========================== */

.preorder-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19, 10, 6, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.preorder-modal-backdrop.preorder-open {
  display: flex;
}

.preorder-modal {
  width: min(900px, 100% - 2rem);
  max-height: calc(100vh - 3rem);
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preorder-header {
  padding: 1rem 1.3rem 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.preorder-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 0.2rem;
}

.preorder-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-mocha-mousse);
}

.preorder-close {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
}

.preorder-body {
  padding: 0.9rem 1.3rem 0.6rem;
  overflow-y: auto;
}

.preorder-step {
  display: none;
}

.preorder-step.active {
  display: block;
}

.preorder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
}

.preorder-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.preorder-field-full {
  grid-column: 1 / -1;
}

.preorder-field label {
  font-size: 0.8rem;
  color: var(--muted);
}

.preorder-field input,
.preorder-field textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.45rem 0.55rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fdf8f4;
  outline: none;
}

.preorder-field textarea {
  resize: vertical;
}

.preorder-field input:focus,
.preorder-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(164, 120, 100, 0.18);
}

.preorder-review-intro {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.preorder-summary {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0.6rem 0.7rem;
  font-size: 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  background: #fdf8f4;
  white-space: pre;
}

.preorder-small-note {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.preorder-footer {
  padding: 0.6rem 1.3rem 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.preorder-status {
  font-size: 0.8rem;
  color: #b05151;
}

.preorder-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Reuse button styles */
.btn-primary,
.btn-secondary,
.btn-ghost {
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-secondary {
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 720px) {
  .preorder-modal {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .preorder-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .preorder-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
