:root {
  --bg: #081014;
  --bg-2: #10191d;
  --panel: #111b20;
  --panel-2: #17252b;
  --paper: #fff9ef;
  --cream: #fff2db;
  --ink: #11171a;
  --muted: #65737a;
  --text: #f7f2e8;
  --salmon: #ff6b5f;
  --salmon-2: #ff8a72;
  --gold: #d9a441;
  --gold-2: #ffe19b;
  --wasabi: #a8d672;
  --nori: #0b1114;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 23, 26, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,107,95,.22), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(217,164,65,.18), transparent 30rem),
    linear-gradient(180deg, #fffaf2 0%, #fff6ea 52%, #fffaf2 100%);
  padding-top: 76px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8,16,20,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,16,20,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 72%);
  z-index: -1;
}

h1, h2, h3, h4, .brand-copy strong { font-family: 'Playfair Display', Georgia, serif; }
a { text-decoration: none; }
img { max-width: 100%; }

.app-navbar {
  min-height: 76px;
  background: rgba(8, 16, 20, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  max-width: calc(100vw - 154px);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  box-shadow: 0 10px 30px rgba(255,107,95,.22), inset 0 0 0 1px rgba(255,255,255,.16);
  padding: 3px;
  flex: 0 0 auto;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-copy strong {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: .03em;
  font-size: clamp(1rem, 3.9vw, 1.35rem);
  white-space: nowrap;
}
.brand-copy small {
  color: rgba(247,242,232,.72);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-navbar .nav-link {
  color: rgba(247,242,232,.82);
  font-weight: 800;
  border-radius: 999px;
  padding: .62rem .95rem !important;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.app-navbar .nav-link:hover, .app-navbar .nav-link:focus {
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.app-toggler { border-color: rgba(255,255,255,.18); border-radius: 14px; padding: .55rem .65rem; }
.app-toggler:focus { box-shadow: 0 0 0 .2rem rgba(255,107,95,.18); }

.nav-action-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: linear-gradient(135deg, rgba(255,107,95,.95), rgba(217,164,65,.95));
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(255,107,95,.22);
  transition: transform .2s ease, filter .2s ease;
}
.nav-action-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 .35rem;
  border-radius: 999px;
  background: var(--wasabi);
  color: #17200f;
  font-size: .72rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,107,95,.32), transparent 22rem),
    radial-gradient(circle at 84% 16%, rgba(217,164,65,.28), transparent 24rem),
    linear-gradient(135deg, #081014 0%, #13252b 52%, #0a1115 100%);
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}
.min-vh-75 { min-height: 75vh; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-2);
  border: 1px solid rgba(255,225,155,.3);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-dark { color: #96651a; border-color: rgba(217,164,65,.28); background: rgba(217,164,65,.1); }
.hero-title {
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: .93;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
  max-width: 980px;
}
.hero-lead {
  max-width: 700px;
  color: rgba(247,242,232,.82);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.5rem; }
.btn-brand {
  border: 0;
  color: #140d05 !important;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 52%, var(--salmon-2));
  box-shadow: 0 16px 36px rgba(217,164,65,.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-brand:hover, .btn-brand:focus { transform: translateY(-2px); filter: brightness(1.02); box-shadow: 0 20px 50px rgba(217,164,65,.35); }
.btn-glass {
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-trust span {
  color: rgba(247,242,232,.78);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: .85rem;
  font-weight: 700;
}
.hero-trust i { color: var(--wasabi); margin-right: .35rem; }

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  padding: .85rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,225,155,.75), rgba(255,107,95,.38), transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-img { width: 100%; height: 335px; object-fit: cover; border-radius: 24px; display: block; }
.hero-card-body { padding: 1.2rem .5rem .45rem; }
.hero-card-body h2 { color: #fff; font-weight: 800; margin: .45rem 0 .2rem; }
.hero-card-body p { color: rgba(247,242,232,.76); }
.badge-hot { color: #200b07; background: var(--salmon-2); border-radius: 999px; padding: .45rem .7rem; }
.hero-price { color: var(--gold-2); font-size: 1.45rem; }

.feature-strip { margin-top: -42px; position: relative; z-index: 2; padding-bottom: 2rem; }
.feature-card {
  height: 100%;
  border-radius: 24px;
  background: rgba(255, 249, 239, .92);
  border: 1px solid rgba(217,164,65,.28);
  box-shadow: 0 18px 50px rgba(17,23,26,.1);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .15rem .9rem;
  align-items: center;
}
.feature-card i { grid-row: span 2; width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; color: #1c1305; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.feature-card strong { font-weight: 900; color: var(--ink); }
.feature-card span { color: var(--muted); font-size: .9rem; }

.menu-section { scroll-margin-top: 100px; }
.section-heading .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: .5rem auto .75rem;
  max-width: 880px;
}
.section-heading p { color: var(--muted); max-width: 720px; margin-inline: auto; }
.filters-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-bottom: 1rem; }
.btn-filter {
  color: #1d1810;
  border: 1px solid rgba(217,164,65,.3);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  font-weight: 900;
  padding: .65rem 1rem;
  box-shadow: 0 10px 24px rgba(17,23,26,.06);
}
.btn-filter:hover, .btn-filter.active { background: var(--bg); color: #fff; border-color: var(--bg); }

.product-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,23,26,.08);
  box-shadow: 0 18px 48px rgba(17,23,26,.08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(17,23,26,.16); border-color: rgba(217,164,65,.5); }
.product-media { position: relative; overflow: hidden; background: #10191d; }
.product-img { width: 100%; height: 240px; object-fit: cover; display: block; transform: scale(1.01); transition: transform .45s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,20,.72), transparent 55%); opacity: .9; }
.product-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  background: linear-gradient(135deg, var(--salmon), var(--gold));
  color: #170c07;
  font-weight: 950;
  border-radius: 999px;
  padding: .38rem .65rem;
  font-size: .74rem;
}
.product-info { padding: 1.2rem; display: flex; flex-direction: column; min-height: 270px; }
.product-title { font-size: 1.35rem; font-weight: 800; margin-bottom: .35rem; color: #101719; }
.product-category { display: inline-flex; width: fit-content; color: #7a500a; background: rgba(217,164,65,.14); border: 1px solid rgba(217,164,65,.22); padding: .25rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .7rem; }
.product-desc { color: var(--muted); line-height: 1.55; margin-bottom: 1rem; font-size: .93rem; }
.product-footer { margin-top: auto; display: grid; gap: .75rem; }
.product-price { color: #9a4c0f; font-weight: 950; font-size: 1.55rem; }
.btn-add-cart {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #11191d, #23343a);
  color: #fff;
  font-weight: 900;
  padding: .82rem 1rem;
  transition: transform .18s ease, filter .18s ease;
}
.btn-add-cart:hover { transform: translateY(-1px); filter: brightness(1.15); }

.reserva-section { background: linear-gradient(180deg, rgba(8,16,20,.04), rgba(217,164,65,.1)); scroll-margin-top: 90px; }
.reservation-card, .checkout-modal {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,23,26,.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(17,23,26,.1);
  padding: clamp(1.25rem, 4vw, 2.4rem);
}
.form-label { font-weight: 900; color: #273236; }
.form-control, .form-select {
  border-radius: 16px;
  border: 1px solid rgba(17,23,26,.14);
  min-height: 48px;
}
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .25rem rgba(217,164,65,.16); }

.footer-section { background: var(--bg); color: rgba(247,242,232,.78); }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; border-radius: 20px; background: rgba(255,255,255,.08); padding: 5px; }
.footer-brand h3 { color: var(--gold-2); margin: 0; font-weight: 800; }
.footer-brand p { margin: 0; }
.footer-links > div { display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.footer-links i { color: var(--gold-2); }
.footer-section hr { border-color: rgba(255,255,255,.14); margin: 2rem 0 1.2rem; }

.app-modal { background: linear-gradient(180deg, #10191d, #0b1114); color: var(--text); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; box-shadow: var(--shadow); }
.main-image-detail { width: 100%; aspect-ratio: 1 / .82; object-fit: cover; border-radius: 24px; }
.thumbnail-grid { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: .8rem; }
.thumbnail-img { width: 74px; height: 74px; object-fit: cover; border-radius: 16px; cursor: pointer; border: 2px solid rgba(255,255,255,.12); opacity: .72; transition: .2s ease; }
.thumbnail-img:hover, .thumbnail-img.active { border-color: var(--gold-2); opacity: 1; transform: translateY(-2px); }
.ingredient-badge { color: #1b170c; background: linear-gradient(135deg, var(--cream), var(--gold-2)); border-radius: 999px; padding: .36rem .65rem; font-size: .78rem; font-weight: 900; }
.modal-price { color: var(--gold-2); font-weight: 950; }

.cart-panel { width: min(100vw, 460px); background: linear-gradient(180deg, #0c1317, #111b20); color: var(--text); }
.cart-panel .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.12); }
.cart-panel small { color: rgba(247,242,232,.62); }
.cart-items { display: grid; gap: .8rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: rgba(247,242,232,.65); }
.cart-empty i { display: block; font-size: 2.7rem; color: rgba(255,225,155,.6); margin-bottom: .85rem; }
.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: .9rem;
  align-items: center;
  padding: .85rem;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.cart-item-img { width: 72px; height: 72px; border-radius: 18px; object-fit: cover; }
.cart-item-title { color: #fff; font-weight: 900; margin: 0; font-size: .98rem; }
.cart-item-meta { color: rgba(247,242,232,.66); font-size: .84rem; }
.qty-control { display: inline-flex; align-items: center; overflow: hidden; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); margin-top: .45rem; }
.qty-control button { width: 32px; height: 32px; border: 0; color: #fff; background: rgba(255,255,255,.08); font-weight: 900; }
.qty-control span { min-width: 34px; text-align: center; font-weight: 900; color: #fff; }
.cart-item-total { color: var(--gold-2); font-weight: 950; white-space: nowrap; }
.btn-trash { border: 0; width: 32px; height: 32px; border-radius: 12px; background: rgba(255,107,95,.16); color: var(--salmon-2); margin-top: .35rem; }
.cart-summary { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
.summary-line { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; color: rgba(247,242,232,.78); }
.summary-line.total { color: #fff; font-size: 1.2rem; font-weight: 950; border-top: 1px dashed rgba(255,255,255,.18); margin-top: .4rem; padding-top: .9rem; }
.summary-line.total strong { color: var(--gold-2); }

.checkout-modal { border-radius: 28px; }
.checkout-preview { border-radius: 20px; background: #fff7e8; border: 1px solid rgba(217,164,65,.25); padding: 1rem; color: #372a14; }
.checkout-preview-row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px dashed rgba(55,42,20,.16); }
.checkout-preview-row:last-child { border-bottom: 0; font-weight: 950; font-size: 1.08rem; }

@media (max-width: 991.98px) {
  .app-navbar .navbar-collapse { background: rgba(8,16,20,.97); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; margin-top: .7rem; padding: .4rem; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
  .app-navbar .nav-link { border-radius: 16px; }
}

@media (max-width: 575.98px) {
  body { padding-top: 70px; }
  .app-navbar { min-height: 70px; }
  .brand-logo { width: 42px; height: 42px; border-radius: 14px; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { font-size: .58rem; max-width: 128px; overflow: hidden; text-overflow: ellipsis; }
  .brand-lockup { gap: .5rem; max-width: calc(100vw - 132px); }
  .nav-action-btn { width: 42px; height: 42px; border-radius: 14px; }
  .hero-section { min-height: auto; padding: 2.4rem 0 5rem; }
  .min-vh-75 { min-height: auto; }
  .hero-card { transform: none; }
  .hero-card-img { height: 260px; }
  .feature-strip { margin-top: -32px; }
  .product-img { height: 218px; }
  .cart-item { grid-template-columns: 64px minmax(0, 1fr); }
  .cart-item-img { width: 64px; height: 64px; }
  .cart-item-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
