/* =====================================================================
   CASA ESEMPIO — MEDITERRANEAN RESTAURANT STYLES
   Inspired by and matching https://casa-esempio-demo.netlify.app/
   Pure CSS3 + Bootstrap 5.3 utilities + Tabler Icons + Google Fonts
   ===================================================================== */

:root {
  /* Requested Exact Dark System Tokens */
  --bg-primary: #0b0b0b;
  --bg-secondary: #111111;
  --bg-card: #151515;
  --bg-input: #181818;
  --border-color: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b5b5b5;
  --text-muted: #777777;
  --accent-color: #d6b27a;
  --accent-hover: #e5c58f;

  /* Mapped restaurant variables */
  --color-primary: #d6b27a;
  --color-primary-contrast: #0b0b0b;
  --color-bg: #0b0b0b;
  --color-surface: #111111;
  --color-surface-2: #151515;
  --color-text: #ffffff;
  --color-muted: #b5b5b5;
  --color-hero-text: #ffffff;
  --color-wa: #25d366;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Derived tokens */
  --color-border: #2a2a2a;
  --color-footer: #070707;
  --color-shell: #151515;
  --color-hairline: #242424;
  --highlight: inset 0 1px 0 rgba(255, 255, 255, 0.05);

  --radius: 26px;
  --bezel: 6px;
  --radius-inner: calc(var(--radius) - var(--bezel));
  --radius-sm: 12px;
  --shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.95);

  --banner-h: 32px;
  --header-h: calc(66px + var(--banner-h));
  --container: 1200px;
  --section-y: clamp(72px, 10vw, 130px);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --control-h: 40px;
}

/* =====================================================================
   BOOTSTRAP 5.3 DARK THEME OVERRIDES — STRICT ENFORCEMENT
   No white backgrounds, no default blue outlines, 100% dark theme
   ===================================================================== */
.form-control,
.form-select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="number"],
select {
  background-color: #181818 !important;
  color: #ffffff !important;
  border: 1px solid #2a2a2a !important;
}

.form-control::placeholder,
textarea::placeholder,
input::placeholder {
  color: #777777 !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
select:focus {
  background-color: #1c1c1c !important;
  color: #ffffff !important;
  border-color: #d6b27a !important;
  box-shadow: 0 0 0 0.15rem rgba(214, 178, 122, 0.15) !important;
  outline: none !important;
}

.form-label {
  color: #ffffff !important;
}

.order-panel,
.drawer {
  background: #0b0b0b !important;
  color: #ffffff !important;
}

.order-item,
.cart-item {
  background: #151515 !important;
  border: 1px solid #292929 !important;
}

.order-total {
  border-top: 1px solid #292929 !important;
}

/* Bootstrap Button Overrides */
.btn-primary {
  background: #d6b27a !important;
  border-color: #d6b27a !important;
  color: #0b0b0b !important;
  font-weight: 600 !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #e5c58f !important;
  border-color: #e5c58f !important;
  color: #0b0b0b !important;
}

.btn-outline-light {
  border-color: #3a3a3a !important;
  color: #ffffff !important;
  background: transparent !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* Bootstrap Card, Modal, List & Dropdown Dark Overrides */
.card {
  background-color: #151515 !important;
  border-color: #2a2a2a !important;
  color: #ffffff !important;
}

.modal-content {
  background-color: #0b0b0b !important;
  border: 1px solid #2a2a2a !important;
  color: #ffffff !important;
}

.modal-header,
.modal-footer {
  border-color: #2a2a2a !important;
}

.dropdown-menu {
  background-color: #151515 !important;
  border: 1px solid #2a2a2a !important;
  color: #ffffff !important;
}

.dropdown-item {
  color: #b5b5b5 !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #1c1c1c !important;
  color: #d6b27a !important;
}

.alert {
  background-color: #151515 !important;
  border-color: #2a2a2a !important;
  color: #ffffff !important;
}

/* ---------- Global Reset & Body ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

/* Film grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 85;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Headings & Text */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  color: var(--color-text);
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--color-primary);
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.container-custom {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .container-custom {
    padding-inline: 28px;
  }
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 90;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform 0.3s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Demo Announcement Banner */
.demo-banner {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 51;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  background: #0b0a08;
  border-bottom: 1px solid var(--color-hairline);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.demo-banner::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ---------- Typography & Eyebrow Badges ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 106, 0.35);
  background: rgba(201, 169, 106, 0.08);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
}

.section-sub {
  color: var(--color-muted);
  margin-top: 16px;
  max-width: 60ch;
  font-size: 16.5px;
  line-height: 1.65;
}

.section-head {
  margin-bottom: 44px;
}

.section-head.text-center .eyebrow {
  margin-inline: auto;
}
.section-head.text-center .section-sub {
  margin-inline: auto;
}

/* ---------- Buttons & Interactive Controls ---------- */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease), filter 0.3s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.btn-custom:active {
  transform: scale(0.97);
}

.btn-primary-custom {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  box-shadow: 0 8px 24px rgba(201, 169, 106, 0.28);
}

.btn-primary-custom:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: var(--color-primary-contrast);
}

.btn-outline-custom {
  border-color: var(--color-border);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-custom:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(201, 169, 106, 0.06);
  transform: translateY(-2px);
}

.btn-ghost-custom {
  color: var(--color-hero-text);
  background: none;
  border-color: transparent;
  padding-inline: 12px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-custom:hover {
  text-decoration-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-wa-custom {
  background: var(--color-wa);
  color: #052e16;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-wa-custom:hover {
  filter: brightness(1.06);
  color: #042411;
  transform: translateY(-2px);
}

.btn-sm-custom {
  padding: 8px 16px;
  font-size: 13.5px;
}

.btn-lg-custom {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-block-custom {
  width: 100%;
}

/* Arrow inside button */
.btn-arrow-custom {
  gap: 12px;
  padding: 6px 6px 6px 22px;
}

.btn-arrow-custom .arrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  font-size: 16px;
  transition: transform 0.4s var(--ease);
}

.btn-arrow-custom:hover .arrow-badge {
  transform: translate(2px, -2px) scale(1.06);
}

.btn-arrow-custom.is-next:hover .arrow-badge {
  transform: translateX(3px) scale(1.06);
}

.btn-arrow-custom.btn-block-custom {
  justify-content: space-between;
}

.icon-btn-custom {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.icon-btn-custom:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: scale(1.04);
}

/* ---------- Header & Navigation ---------- */
.site-header {
  position: fixed;
  top: calc(10px + var(--banner-h));
  left: 0;
  right: 0;
  z-index: 50;
  width: min(calc(100% - 24px), 1080px);
  height: 58px;
  margin-inline: auto;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: rgba(15, 14, 12, 0.72);
  border: 1px solid var(--color-hairline);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--highlight), 0 18px 40px -20px rgba(10, 6, 2, 0.9);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.scrolled::before,
.site-header.nav-open::before {
  background: rgba(15, 14, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  padding: 0 10px 0 22px;
}

.brand {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--color-text);
  white-space: nowrap;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
}

.brand:hover {
  color: var(--color-primary);
}

/* Nav Links: Mobile Fullscreen Blur Drawer */
.nav-links {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: calc(var(--header-h) + 24px) 32px 48px;
  background: rgba(15, 14, 12, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease), visibility 0s;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: clamp(30px, 8vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding: 8px 0;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s var(--ease);
}

.nav-links.open a {
  opacity: 1;
  transform: none;
}

.nav-links.open a:nth-child(1) { transition-delay: 0.04s; }
.nav-links.open a:nth-child(2) { transition-delay: 0.08s; }
.nav-links.open a:nth-child(3) { transition-delay: 0.12s; }
.nav-links.open a:nth-child(4) { transition-delay: 0.16s; }
.nav-links.open a:nth-child(5) { transition-delay: 0.20s; }

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.mobile-close-btn {
  display: flex;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.mobile-close-btn:hover {
  background: #242424;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (min-width: 900px) {
  .mobile-close-btn {
    display: none !important;
  }
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 55;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #151515;
  border: 1px solid #2a2a2a;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #0b0b0b;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

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

.nav-order-btn {
  position: relative;
}

.nav-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  transition: background-color 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Desktop Nav */
@media (min-width: 900px) {
  :root {
    --header-h: calc(76px + var(--banner-h));
  }

  .site-header {
    top: calc(16px + var(--banner-h));
    height: 60px;
    width: min(calc(100% - 48px), 1080px);
  }

  .nav-links {
    position: static;
    inset: auto;
    z-index: auto;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 8px 2px;
    position: relative;
    opacity: 1;
    transform: none;
    color: rgba(245, 240, 232, 0.75);
    transition: color 0.3s var(--ease);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1.5px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-text);
  }

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

  .nav-toggle {
    display: none;
  }
}

/* ---------- Hero Section (Home Page) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 88px;
  overflow: hidden;
  color: var(--color-hero-text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--color-surface);
  transform: scale(1.05);
  animation: heroZoom 16s var(--ease) forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) contrast(1.05);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(85% 60% at 5% 95%, rgba(201, 169, 106, 0.18), transparent 65%),
    radial-gradient(60% 40% at 85% 15%, rgba(201, 169, 106, 0.10), transparent 60%),
    linear-gradient(to top, var(--color-bg) 0%, transparent 12%),
    linear-gradient(to top, rgba(15, 14, 12, 0.86) 0%, rgba(15, 14, 12, 0.52) 50%, rgba(15, 14, 12, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  background: rgba(15, 14, 12, 0.5);
  border-color: rgba(201, 169, 106, 0.45);
  animation: rise 0.8s var(--ease) both;
}

.hero-title {
  font-size: clamp(44px, 11vw, 108px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  max-width: 14ch;
  animation: rise 0.9s 0.08s var(--ease) both;
}

.hero-tagline {
  font-size: clamp(17px, 2.3vw, 21px);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 22px;
  max-width: 42ch;
  font-weight: 300;
  line-height: 1.6;
  animation: rise 0.9s 0.16s var(--ease) both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 36px;
  animation: rise 0.9s 0.24s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: none;
}

.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--color-primary);
  animation: hint 1.8s infinite;
}

@keyframes hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

@media (min-width: 640px) {
  .scroll-hint { display: block; }
}

@media (min-width: 900px) {
  .hero {
    align-items: center;
    padding-bottom: 70px;
  }
}

/* Page Header Hero (for Menu, Gallery, About, Visit, Contact) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 52px) 0 48px;
  background: radial-gradient(70% 50% at 50% 0%, rgba(201, 169, 106, 0.08), transparent 70%),
              linear-gradient(to bottom, #14120f, var(--color-bg));
  border-bottom: 1px solid var(--color-hairline);
  text-align: center;
}

.page-hero .section-title {
  font-size: clamp(36px, 7vw, 64px);
}

.page-hero .section-sub {
  margin-inline: auto;
}

/* ---------- Sections Layout ---------- */
.section {
  padding: var(--section-y) 0 calc(var(--section-y) + 8px);
  position: relative;
}

.section-alt {
  background: var(--color-surface);
}

/* Subtle ambient amber glow */
.has-glow-right {
  background: radial-gradient(60% 45% at 100% 0%, rgba(201, 169, 106, 0.06), transparent 70%);
}

.has-glow-left {
  background: radial-gradient(60% 45% at 0% 100%, rgba(201, 169, 106, 0.05), transparent 70%);
}

/* Highlights Banner Bar */
.highlights-bar {
  padding: 30px 0;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
  background: rgba(255, 255, 255, 0.015);
}

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

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 169, 106, 0.1);
  border: 1px solid rgba(201, 169, 106, 0.2);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.highlight-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.highlight-desc {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ---------- Category Navigation & Filters ---------- */
.category-bar {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  overflow-x: auto;
  padding: 6px;
  margin-bottom: 38px;
  border-radius: 999px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  box-shadow: var(--highlight);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

@media (max-width: 639px) {
  .category-bar {
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 30px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 30px), transparent);
  }
}

.chip {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  white-space: nowrap;
  background: transparent;
  border: 0;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.chip:hover {
  color: var(--color-text);
}

.chip.active,
.chip[aria-pressed="true"] {
  background: var(--color-surface-2);
  color: var(--color-text);
  box-shadow: 0 8px 18px -10px rgba(10, 6, 2, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-hairline);
}

/* Filter Tools (Search & Dietary Toggles on Menu Page) */
.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 18px;
}

.search-box input {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 16px 10px 42px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.search-box input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, 0.16);
}

.dietary-toggles {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dietary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  transition: all 0.25s var(--ease);
}

.dietary-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.dietary-btn.active {
  background: rgba(201, 169, 106, 0.12);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

/* ---------- Menu Cards (Double-Bezel) ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (min-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.menu-category-title {
  grid-column: 1 / -1;
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: -0.02em;
  margin-top: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-hairline);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.menu-category-title small {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-muted);
  font-weight: 400;
}

.menu-category-title:first-child {
  margin-top: 0;
}

.menu-card {
  display: flex;
  flex-direction: column;
  padding: var(--bezel);
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius);
  box-shadow: var(--highlight);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--highlight), var(--shadow);
  border-color: rgba(201, 169, 106, 0.28);
}

.menu-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--color-surface-2);
}

.menu-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(12, 10, 8, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-veg {
  color: #7fdc9c;
  border-color: rgba(127, 220, 156, 0.3);
}

.tag-spicy {
  color: #ff8a6c;
  border-color: rgba(255, 138, 108, 0.3);
}

.tag-popular {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  border-color: var(--color-primary);
}

.menu-card-body {
  padding: 18px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.menu-card-name {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  font-size: 20px;
  font-variant-numeric: lining-nums tabular-nums;
}

.menu-card-desc {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.menu-card-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  min-height: var(--control-h);
}

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--control-h);
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.add-btn:hover {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}

.add-btn:active {
  transform: scale(0.96);
}

.stepper {
  display: inline-flex;
  align-items: center;
  height: var(--control-h);
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(201, 169, 106, 0.3);
}

.stepper button {
  width: var(--control-h);
  height: var(--control-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.2s var(--ease);
}

.stepper button:hover {
  background: rgba(0, 0, 0, 0.15);
}

.stepper output {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

/* ---------- Real Restaurant Photography & Overlay System ---------- */
.restaurant-image,
.menu-card-img,
.gallery-img,
.hero-image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-img {
  transition: transform 0.65s var(--ease);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.gallery-img {
  transition: transform 0.65s var(--ease);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 11, 0.72) 0%,
    rgba(11, 11, 11, 0.18) 45%,
    rgba(11, 11, 11, 0.04) 100%
  );
  pointer-events: none;
}

.cart-item-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox Modal Image */
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
  border: 1px solid var(--border-color);
}

/* Map & Location Card */
.map-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-inner);
  height: 100%;
  min-height: 390px;
}

.map-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  z-index: 2;
}

.map-pin-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(214, 178, 122, 0.18);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 14px;
}

.map-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #ffffff;
}

.map-address {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 320px;
}

.art-caption-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(11, 11, 11, 0.78);
  backdrop-filter: blur(8px);
  color: var(--accent-color);
  border: 1px solid rgba(214, 178, 122, 0.35);
}

/* ---------- Gallery Page & Bento Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 16px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-surface-2);
  box-shadow: 0 0 0 5px var(--color-shell), 0 0 0 6px var(--color-hairline);
  cursor: zoom-in;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}

.gallery-item:hover {
  box-shadow: 0 0 0 5px var(--color-shell), 0 0 0 6px rgba(201, 169, 106, 0.4), var(--shadow);
  transform: translateY(-2px);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

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

.gallery-item-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 16px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: none;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0s;
}

.lightbox-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 70vh;
  border-radius: var(--radius);
  border: 1px solid var(--color-hairline);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  background: var(--color-surface);
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 80;
}

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-caption {
  margin-top: 18px;
  text-align: center;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 19px;
  max-width: 600px;
}

/* ---------- About Page & Story ---------- */
.about-wrap {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .about-wrap {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 84px;
  }
}

.about-media {
  position: relative;
  padding: 8px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: 32px;
  box-shadow: var(--highlight), var(--shadow);
}

.about-media-inner {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: var(--color-surface-2);
  overflow: hidden;
  position: relative;
}

.about-copy p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-copy p.lead-para {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-hairline);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1;
  font-variant-numeric: lining-nums;
}

.stat-label {
  font-size: 13.5px;
  color: var(--color-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 28px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-inner);
  box-shadow: var(--highlight);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 106, 0.3);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.value-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ---------- Visit / Hours Page ---------- */
.visit-wrap {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .visit-wrap {
    grid-template-columns: 1fr 1.35fr;
    gap: 32px;
  }
}

.hours-card, .map-card, .info-card {
  background: var(--color-bg);
  border-radius: var(--radius-inner);
  box-shadow: 0 0 0 6px var(--color-shell), 0 0 0 7px var(--color-hairline), var(--shadow);
}

.hours-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hours-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hours-head h3 {
  font-size: 26px;
  letter-spacing: -0.01em;
}

.status-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill.open {
  color: #4fbf74;
  background: rgba(79, 191, 116, 0.14);
}

.status-pill.closed {
  color: #e8694a;
  background: rgba(232, 105, 74, 0.14);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-hairline);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list li.today {
  color: var(--color-primary);
  font-weight: 600;
}

.hours-list li .closed-text {
  color: var(--color-muted);
  font-weight: 400;
}

.hours-address {
  display: flex;
  gap: 10px;
  color: var(--color-muted);
  font-size: 15px;
}

.hours-address i {
  color: var(--color-primary);
  margin-top: 3px;
  font-size: 18px;
}

/* Map Card Placeholder */
.map-card {
  overflow: hidden;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: grayscale(0.4) sepia(0.15) contrast(1.05);
}

.map-placeholder-art {
  position: absolute;
  inset: 0;
  background: #141310;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: 40px 40px;
  background-image: linear-gradient(to right, #c9a96a 1px, transparent 1px),
                    linear-gradient(to bottom, #c9a96a 1px, transparent 1px);
}

/* Visit Policies & Tips */
.visit-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.tip-card {
  padding: 24px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 16px;
}

.tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 106, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.tip-content p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ---------- Contact Page & Form ---------- */
.contact-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  padding: 24px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-inner);
  box-shadow: var(--highlight);
  display: flex;
  gap: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 106, 0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 106, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-card-info p {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-card-info a {
  color: var(--color-text);
  font-weight: 500;
}
.contact-card-info a:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-form-card {
  padding: 36px 28px;
  background: var(--color-shell);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius);
  box-shadow: var(--highlight), var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.form-label .required {
  color: #e8694a;
}

.form-control-custom {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--color-text);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.form-control-custom:focus {
  border-color: var(--color-primary);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(201, 169, 106, 0.18);
}

.form-control-custom.is-invalid {
  border-color: #e8694a;
}

.form-feedback {
  font-size: 13px;
  color: #e8694a;
  margin-top: 5px;
  display: none;
}

.form-feedback.show {
  display: block;
}

/* ---------- Order Drawer (Interactive Cart) ---------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 62;
  max-height: 92vh;
  max-height: 92dvh;
  background: var(--color-surface);
  border-radius: 28px 28px 0 0;
  border: 1px solid var(--color-hairline);
  box-shadow: var(--highlight), 0 -30px 60px -30px rgba(10, 6, 2, 0.85);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
}

.drawer.open {
  transform: none;
  visibility: visible;
  transition: transform 0.45s var(--ease), visibility 0s;
}

@media (min-width: 900px) {
  .drawer {
    left: auto;
    top: 14px;
    right: 14px;
    bottom: 14px;
    width: 440px;
    max-height: none;
    border-radius: 28px;
    transform: translateX(calc(100% + 24px));
  }
  .drawer.open {
    transform: none;
  }
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-head h3 {
  font-size: 26px;
  letter-spacing: -0.015em;
}

.drawer-sub {
  color: var(--color-muted);
  font-size: 13px;
  margin-top: 2px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  scrollbar-width: thin;
}

.cart-empty {
  text-align: center;
  padding: 36px 0;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cart-empty i {
  font-size: 44px;
  color: var(--color-muted);
  opacity: 0.6;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-hairline);
}

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

.cart-item-thumb {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-surface-2);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 2px;
}

.cart-item-price strong {
  color: var(--color-primary);
  font-weight: 600;
}

.order-form {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
}

.field-label .optional {
  font-weight: 400;
  opacity: 0.8;
}

.field-error {
  font-size: 13px;
  color: #e8694a;
}

.segmented {
  display: flex;
  background: var(--color-bg);
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.segmented button {
  flex: 1;
  padding: 9px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-muted);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.segmented button[aria-pressed="true"] {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-weight: 600;
}

.drawer-foot {
  padding: 16px 22px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: var(--color-surface);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  font-size: 15px;
  color: var(--color-muted);
}

.total-row strong {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-variant-numeric: lining-nums;
}

.link-btn {
  color: var(--color-muted);
  font-size: 13.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 12px;
}

.link-btn:hover {
  color: var(--color-text);
}

/* ---------- Sticky Cart Bar ---------- */
.cart-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 7px 7px 22px;
  background: rgba(36, 32, 25, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  box-shadow: var(--highlight), var(--shadow);
  animation: barIn 0.5s var(--ease) both;
}

@keyframes barIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cart-bar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.cart-bar-info strong {
  font-size: 14px;
  font-weight: 600;
}

.cart-bar-info span {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-primary);
  font-variant-numeric: lining-nums;
}

@media (min-width: 640px) {
  .cart-bar {
    left: auto;
    right: 20px;
    bottom: 20px;
    min-width: 320px;
  }
}

@media (min-width: 900px) {
  .cart-bar {
    right: 28px;
    bottom: 28px;
  }
}

body.has-cart {
  padding-bottom: 84px;
}

/* ---------- Floating WhatsApp Button ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), bottom 0.3s var(--ease);
  font-size: 28px;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-wa);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

body.has-cart .wa-float {
  bottom: 92px;
}

@media (min-width: 900px) {
  .wa-float {
    right: 28px;
    bottom: 28px;
  }
  body.has-cart .wa-float {
    bottom: 104px;
  }
}

/* ---------- Toast Notification ---------- */
.toast-notice {
  position: fixed;
  left: 50%;
  top: calc(var(--header-h) + 12px);
  transform: translate(-50%, -14px);
  z-index: 80;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  max-width: calc(100vw - 32px);
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.toast-notice.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Reusable Site Footer ---------- */
.site-footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-hairline);
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .brand {
  font-size: 24px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--color-muted);
  font-size: 14.5px;
  max-width: 32ch;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-hairline);
  color: var(--color-muted);
  font-size: 18px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--color-muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--color-hairline);
  font-size: 13px;
  color: var(--color-muted);
}

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

/* Reveal on Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-bg, .wa-float::before, .scroll-hint span {
    animation: none;
  }
}
