:root {
  --bg: #f5eadb;
  --surface: #fffaf3;
  --surface-strong: #fffdf8;
  --surface-dark: #2d1d16;
  --text: #231712;
  --muted: #725c51;
  --line: rgba(78, 52, 39, 0.12);
  --accent: #c4511c;
  --accent-strong: #8c2f0c;
  --accent-soft: #ffe1c7;
  --gold: #f3bf5a;
  --shadow: 0 22px 60px rgba(83, 42, 18, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 81, 28, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(243, 191, 90, 0.2), transparent 26%),
    linear-gradient(180deg, #fff5e8 0%, #f5eadb 52%, #f1e3d2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 10px 0;
  backdrop-filter: blur(14px);
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
}

.admin-toggle {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(78, 52, 39, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(83, 42, 18, 0.14);
  cursor: pointer;
  display: none;
}

.admin-fab.visible {
  display: flex !important;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(196, 81, 28, 0.08);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.menu-section {
  padding: 12px 0 24px;
}

.hero-grid,
.highlight-grid,
.featured-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy,
.hero-visual,
.highlight-card,
.featured-card,
.menu-category,
.about-copy,
.info-card,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.highlight-card,
.featured-card,
.menu-category,
.about-copy,
.info-card,
.contact-card,
.map-card,
.footer-grid {
  padding: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--accent-strong);
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1,
h2 {
  font-family: "Noto Serif", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  max-width: 12ch;
}

.hero-text,
.section-text,
.highlight-card p,
.about-copy p,
.map-placeholder p,
.site-footer p,
.menu-category-header p,
.featured-card p,
.menu-item-en {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #db6a28);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.full-width {
  width: 100%;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  font-weight: 800;
  margin-right: 10px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top, rgba(243, 191, 90, 0.25), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(255, 252, 246, 0.96));
}

.hero-plate {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(140, 47, 12, 0.15);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 240, 216, 0.96), rgba(255, 225, 199, 0.9) 42%, rgba(141, 79, 40, 0.16) 43%, transparent 44%),
    linear-gradient(135deg, rgba(196, 81, 28, 0.2), rgba(243, 191, 90, 0.18)),
    linear-gradient(180deg, #fff6ea, #ffe8d2);
}

.hero-plate::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(177, 65, 15, 0.2), transparent 52%),
    radial-gradient(circle at 40% 44%, rgba(112, 59, 31, 0.22), transparent 18%),
    radial-gradient(circle at 60% 58%, rgba(125, 84, 37, 0.18), transparent 16%),
    radial-gradient(circle at 56% 40%, rgba(118, 62, 26, 0.17), transparent 13%);
}

.floating-chip {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  color: var(--accent-strong);
}

.floating-chip.accent {
  top: auto;
  bottom: 24px;
  left: auto;
  right: 20px;
  background: rgba(45, 29, 22, 0.9);
  color: #fff1dd;
}

.plate-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 250px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(45, 29, 22, 0.88);
  color: #fff;
}

.plate-copy p {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.plate-copy h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.plate-copy strong {
  font-size: 1.15rem;
  color: #ffd58a;
}

.hero-note {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-dark);
  color: #fff;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.72);
}

.highlight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.icon {
  font-size: 1.5rem;
}

.highlight-card h3 {
  margin: 12px 0 10px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-text {
  max-width: 56ch;
}

.featured-grid {
  grid-template-columns: repeat(4, 1fr);
}

.featured-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 239, 220, 0.9)),
    linear-gradient(135deg, rgba(196, 81, 28, 0.08), transparent 60%);
}

.featured-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.featured-card strong,
.menu-price {
  color: var(--accent-strong);
}

.menu-categories {
  display: grid;
  gap: 18px;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-soft);
  font-size: 1.55rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.menu-item {
  display: grid;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(78, 52, 39, 0.09);
  border-radius: 18px;
  background: var(--surface-strong);
}

.menu-item-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.menu-item-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196, 81, 28, 0.1), rgba(243, 191, 90, 0.15));
}

.menu-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.menu-item-en {
  display: block;
  font-size: 0.88rem;
}

.menu-item-description {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.admin-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100vh;
  padding: 20px;
  background: rgba(255, 250, 243, 0.98);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(83, 42, 18, 0.16);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 100;
}

.admin-panel.open {
  transform: translateX(0);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.admin-panel-actions {
  position: sticky;
  top: -20px; /* Offset because of parent padding */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: rgba(255, 250, 243, 0.98);
  border-bottom: 1px solid var(--line);
  margin: 0 0 20px;
}

.admin-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.admin-help {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-auth {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-auth-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
}

.admin-user-box p {
  margin: 0;
  color: var(--muted);
}

.admin-status {
  min-height: 24px;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-weight: 700;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-category {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf8;
}

.admin-category h3 {
  margin-bottom: 14px;
}

.admin-login-screen {
  padding: 40px 20px;
  text-align: center;
  display: grid;
  gap: 20px;
}

.admin-login-screen p {
  color: var(--muted);
  font-weight: 700;
}

.admin-item {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(78, 52, 39, 0.1);
}

.admin-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.admin-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.admin-field {
  display: grid;
  gap: 6px;
}

.admin-field label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(78, 52, 39, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.admin-input-group {
  display: flex;
  gap: 8px;
}

.admin-upload-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(78, 52, 39, 0.14);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 180ms ease;
  font-size: 1.2rem;
}

.admin-upload-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.admin-item-title {
  font-weight: 800;
}

.admin-upload-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-upload-input {
  max-width: 100%;
}

.admin-image-preview {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 12px;
  border: 1px dashed rgba(78, 52, 39, 0.18);
  border-radius: 14px;
  background: #fffaf3;
  color: var(--muted);
  text-align: center;
}

.admin-image-preview img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.hidden {
  display: none !important;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.footer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background: linear-gradient(160deg, #2d1d16, #4d2e22);
  color: #fff;
}

.info-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd58a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 700;
}

.map-card {
  display: grid;
}

.map-placeholder {
  min-height: 320px;
  border-radius: 22px;
  border: 1px dashed rgba(140, 47, 12, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 241, 222, 0.7), rgba(255, 248, 238, 0.95)),
    linear-gradient(135deg, rgba(196, 81, 28, 0.08), transparent 55%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.footer-grid {
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(45, 29, 22, 0.96);
  color: #fff;
}

.footer-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .quick-header-card,
  .hero-grid,
  .highlight-grid,
  .featured-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .menu-items {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .hero-plate {
    min-height: 320px;
  }

  .plate-copy h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 16px, 1120px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

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

  .quick-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-note,
  .menu-item-main {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* OVERRIDES FOR DRAFT */
body {
  background: #f0f2f5 !important;
}
body::before {
  display: none !important;
}

.draft-wrapper {
  max-width: 760px;
  margin: 0 auto;
  min-height: 100vh;
  background: #f0f2f5;
  padding-bottom: 80px;
}

.draft-header {
  height: 280px;
  background: url('https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&q=80') center/cover;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.draft-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

/* Header is now pure background image */



/* Categories View */
#categories-view {
  display: grid;
  gap: 16px;
  padding: 24px;
}

@media (min-width: 600px) {
  #categories-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.category-card:active {
  transform: scale(0.98);
}

.cat-content h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-family: "Manrope", sans-serif;
  color: #1a1a1a;
}

.cat-content p {
  margin: 0;
  color: #6d6d6d;
  font-size: 0.85rem;
}

.cat-icon {
  font-size: 2rem;
  background: #f8f9fa;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

/* Items View */
#items-view {
  padding: 24px;
}

.back-btn {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  cursor: pointer;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 0.95rem;
  transition: background 0.1s ease;
}

.back-btn:active {
  background: #f0f0f0;
}

.category-header-title {
  margin-bottom: 24px;
}

.category-header-title h2 {
  margin: 0;
  font-size: 1.7rem;
  font-family: "Manrope", sans-serif;
  color: #1a1a1a;
}

.category-header-title p {
  margin: 6px 0 0;
  color: #6d6d6d;
}

.items-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Draft Item Component */
.draft-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.02);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.draft-item:active {
  transform: scale(0.98);
}

.item-content {
  flex: 1;
}

.item-content h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-family: "Manrope", sans-serif;
  color: #1a1a1a;
}

.item-en {
  display: block;
  color: #6d6d6d;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.item-desc {
  margin: 0 0 14px;
  color: #6d6d6d;
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-price {
  background: #f0f2f5;
  color: #1a1a1a;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: inline-block;
}

.item-image-wrap {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden {
  display: none !important;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  padding-bottom: 4px;
}
.modal-close:hover { background: rgba(0,0,0,0.8); }
.modal-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.modal-body {
  padding: 24px;
}
.modal-body h3 {
  margin: 0 0 4px;
  font-size: 1.3rem;
  color: #1a1a1a;
  font-family: 'Manrope', sans-serif;
}
.modal-body span {
  display: block;
  color: #6d6d6d;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.modal-body p {
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 0.95rem;
}

/* WOLT-STYLE MENU OVERHAUL */

.category-nav-wrapper {
  position: sticky;
  top: 0; 
  z-index: 40;
  background: rgba(255, 250, 243, 0.98); /* Matching background surface */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 24px;
}

.category-nav {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 12px 16px;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.category-pill.active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-section-container {
  padding: 0 16px 40px;
}

.menu-section-header {
  margin-bottom: 18px;
}

.menu-section-header h2 {
  font-size: 1.7rem;
  font-family: inherit; /* Unset the serif font if you want Wolt style, though keeping current serif might be nice */
  margin-bottom: 4px;
  color: var(--text);
}

.menu-section-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.items-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* WOLT-STYLE CARDS */
.draft-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 140px;
}

.draft-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 16px;
}

.item-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text);
  line-height: 1.3;
}

.item-en {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.3;
}

.item-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines like Wolt */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-price {
  margin-top: auto;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-strong);
}

.item-image-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(196, 81, 28, 0.05), rgba(243, 191, 90, 0.08));
  align-self: center;
}

.item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.draft-item:hover .item-image-wrap img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .items-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER STYLES */
.site-footer {
  background: var(--surface-dark);
  color: #fff;
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.footer-info h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-address, .footer-phone, .footer-review {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 1rem;
}

.footer-address a, .footer-phone a, .footer-review a {
  color: #dadada;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-address a:hover, .footer-phone a:hover, .footer-review a:hover {
  color: var(--gold);
}

.footer-address svg, .footer-phone svg, .footer-review svg {
  color: var(--gold);
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f3bf5a; /* Gold color for stars */
}

.review-link {
  font-weight: 700;
  border-bottom: 1px dashed var(--gold);
  padding-bottom: 2px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.98);
  border-top: 1px solid var(--gold);
  z-index: 9999;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  color: #dadada;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.cookie-content .button {
  padding: 10px 24px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content .button {
    width: 100%;
  }
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-slogan {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.footer-sub-header {
  font-size: 0.95rem;
  font-weight: 800;
  color: #dadada;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* ================================
   Cart & Quantity Controls UI
   ================================ */

.item-buy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.item-price-wrap {
  font-weight: 800;
  color: var(--accent-strong);
  font-size: 1.15rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(83, 42, 18, 0.05);
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-strong);
  cursor: pointer;
  transition: background 180ms ease;
}

.qty-btn:active {
  background: rgba(196, 81, 28, 0.1);
}

.qty-val {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

/* Cart FAB */
.cart-fab {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 95;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #db6a28);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(196, 81, 28, 0.4);
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 200ms ease;
  position: fixed;
}

.cart-fab:hover,
.cart-fab:focus-visible {
  transform: translateX(-50%) translateY(-3px) scale(1.08);
}

.cart-fab.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(30px);
}

.cart-fab-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Cart Modal Specifics */
.cart-modal-content {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-modal-header h3 {
  font-family: "Noto Serif", serif;
  font-size: 1.6rem;
  color: var(--accent-strong);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: grid;
  gap: 16px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(78, 52, 39, 0.15);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
}

.cart-item-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.cart-modal-footer {
  padding: 24px;
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-total-row span {
  font-weight: 500;
  color: var(--muted);
}

.cart-total-row strong {
  font-weight: 800;
  color: #c4511c;
  font-size: 1.5rem;
}

.cart-waiter-note {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 16px;
  background: var(--accent-soft);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(196, 81, 28, 0.2);
}
