:root {
  --bg-main: #050509;
  --bg-elevated: #111118;
  --bg-elevated-soft: #14141f;
  --accent: #d9a441;
  --accent-soft: rgba(217, 164, 65, 0.15);
  --text-main: #f5f5f5;
  --text-muted: #9b9bb0;
  --border-subtle: #252535;
  --error: #ff6b6b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151520 0, #050509 55%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

@media (min-width: 900px) {
  .section {
    padding: 5.5rem 0;
  }
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.96),
    rgba(5, 5, 9, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 3.2rem;
  width: auto;
  border-radius: 0.3rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.logo-location {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 1px;
  transform-origin: center;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.24s ease-out;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.25rem;
  height: 1px;
  border-radius: 999px;
  background-color: #ffffff;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}

.nav-toggle.open span:first-child {
  transform: translateY(0.2rem) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-0.2rem) rotate(-45deg);
  width: 1.25rem;
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

@media (min-width: 780px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-links.open {
  position: absolute;
  inset-inline: 0;
  top: 3.4rem;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  background: rgba(5, 5, 9, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 780px) {
  .nav-links.open {
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.75rem;
}

.lang-switch-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.lang-switch-btn.is-active {
  background: var(--accent);
  color: #050509;
  border-color: transparent;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 3.3rem);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: url("https://images.pexels.com/photos/958545/pexels-photo-958545.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: grayscale(0.5);
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 0,
      rgba(217, 164, 65, 0.25),
      transparent 55%
    ),
    linear-gradient(to bottom right, rgba(5, 5, 9, 0.95), #050509 60%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3.2rem;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  max-width: 34rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.hero-note {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-card {
  justify-self: stretch;
}

.hero-card-inner {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 31, 0.92),
    rgba(10, 10, 18, 0.98)
  );
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  padding: 1.6rem 1.5rem;
  max-width: 22rem;
  backdrop-filter: blur(18px);
}

@media (min-width: 880px) {
  .hero-card-inner {
    margin-left: auto;
  }
}

.hero-card-inner h2 {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.hero-card-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card-inner li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

.hero-card-footer {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 1.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.35rem;
  opacity: 0.9;
}

.scroll-indicator span {
  width: 0.13rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  animation: scrollDot 1.4s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0.9rem);
    opacity: 0;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #e1b457, #c79033);
  color: #050509;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(5, 5, 9, 0.5);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(217, 164, 65, 0.12);
}

/* Sections */

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  margin: 0.15rem 0 0.4rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-inline: auto;
}

.section-header.align-left .section-subtitle {
  margin-inline: 0;
}

/* USP */

.section-usp {
  padding: 2.6rem 0 3.4rem;
  background: radial-gradient(circle at 70% 0, rgba(217, 164, 65, 0.12), transparent 55%),
    radial-gradient(circle at 0 100%, rgba(217, 164, 65, 0.08), transparent 55%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.usp-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .usp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.usp-card {
  background: rgba(17, 17, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.1rem;
  padding: 1.25rem 1.2rem;
}

.usp-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.usp-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Menu */

.section-menu {
  background: radial-gradient(circle at 0 0, #151520, #050509 65%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.menu-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 780px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu-card {
  background: radial-gradient(
      circle at top left,
      rgba(217, 164, 65, 0.12),
      transparent 60%
    ),
    var(--bg-elevated);
  border-radius: 1.1rem;
  padding: 1.4rem 1.35rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-card h3 {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.menu-item-name {
  font-size: 0.96rem;
}

.menu-item-price {
  font-size: 0.9rem;
  color: var(--accent);
}

.menu-item-desc {
  margin: 0.1rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.menu-photos {
  margin-top: 2rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
}

.menu-photos img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gallery */

.section-gallery {
  background: radial-gradient(circle at 100% 0, #151520, #050509 65%);
}

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

@media (min-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #151520;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.45)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Contact */

.section-contact {
  background: #050509;
}

.contact-layout {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-details {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 600px) {
  .contact-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-details h3 {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-details p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-main);
}

.opening-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
}

.opening-hours-day {
  margin-right: 0.75rem;
  white-space: nowrap;
}

.opening-hours-time {
  white-space: nowrap;
}

.contact-details a {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-map {
  max-height: 420px;
}

.map-wrapper {
  height: 100%;
  min-height: 260px;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.map-wrapper iframe {
  display: block;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050509;
  padding: 1.6rem 0 1.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 680px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-meta {
  margin: 0;
}

.site-footer p {
  margin: 0;
}

/* Language visibility */

.lang-nl,
.lang-ar {
  display: none;
}

html[data-lang="nl"] .lang-en {
  display: none;
}

html[data-lang="nl"] .lang-nl {
  display: inline;
}

html[data-lang="ar"] .lang-en,
html[data-lang="ar"] .lang-nl {
  display: none;
}

html[data-lang="ar"] .lang-ar {
  display: inline;
}

/* Utilities */

@media (max-width: 480px) {
  .hero {
    padding-top: 3.6rem;
  }

  .hero-card-inner {
    max-width: 100%;
  }
}

/* Menu price as add button */
.menu-price-btn {
  font: inherit;
  cursor: pointer;
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  color: var(--accent);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.menu-price-btn:hover {
  background: rgba(217, 164, 65, 0.22);
  border-color: var(--accent);
}

.menu-price-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Order floating bar */
.order-floating {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.order-toggle {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.55);
  background: rgba(5, 5, 9, 0.92);
  color: var(--text-main);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-toggle-total {
  color: var(--accent);
  font-weight: 600;
}

.order-toggle-badge {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #050509;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Order panel (drawer) */
.order-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.order-panel.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.order-panel-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.order-panel-inner {
  position: relative;
  width: min(440px, 100%);
  max-height: min(85vh, 640px);
  overflow-y: auto;
  background: linear-gradient(165deg, #14141f, #0a0a12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem 1.2rem 0 0;
  padding: 1.1rem 1.15rem 1.35rem;
  box-shadow: 0 -12px 50px rgba(0, 0, 0, 0.9);
}

.order-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.order-panel-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cart-line {
  padding: 0.75rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-line-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.cart-line-name {
  font-size: 0.92rem;
}

.cart-line-sub {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cart-line-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.cart-qty-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 9, 0.6);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.cart-qty-num {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.cart-remove-btn {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.cart-empty {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

#cart-total-value {
  color: var(--accent);
  font-size: 1.05rem;
}

.cart-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-table-input {
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 9, 0.65);
  color: var(--text-main);
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
}

.cart-pay {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 0.75rem 0.85rem;
  margin: 0 0 1rem;
}

.cart-pay legend {
  padding: 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.cart-pay-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  cursor: pointer;
}

.cart-pay-hint {
  margin: 0 0 0.6rem 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Summary modal */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.75);
}

.order-modal[hidden] {
  display: none;
}

.order-modal-inner {
  width: min(480px, 100%);
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.order-modal-inner h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.cart-summary-pre {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  max-height: 40vh;
  overflow: auto;
}

.order-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Customize dish modal */
.customize-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.78);
}

.customize-modal[hidden] {
  display: none;
}

.customize-modal-inner {
  width: min(440px, 100%);
  max-height: min(92vh, 640px);
  overflow: auto;
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.customize-modal-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.customize-dish-name {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 500;
}

.customize-section {
  margin-bottom: 1rem;
}

.customize-section[hidden] {
  display: none;
}

.customize-field-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.customize-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.customize-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.4;
  cursor: pointer;
}

.customize-checklist input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.customize-radios {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.customize-radios label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.customize-radios input {
  accent-color: var(--accent);
}

.customize-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.customize-preview strong {
  color: var(--accent);
  font-size: 1rem;
}

.customize-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cart-line-detail {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 100%;
}

@media (min-width: 780px) {
  .order-panel-inner {
    border-radius: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

