/* ================================================================
   FUEGO STREET — style.css (Master Stylesheet)
   All pages: index, menu, about, location, order, gallery,
              events, contact, reviews, 404, privacy
   ✓ Sticky navbar all devices  ✓ High-contrast nav
   ✓ Hamburger works            ✓ Real image support
   ✓ Coloured hero on all pages ✓ Separated CSS/JS/HTML
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Caveat:wght@500;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --fire: #FF4500;
  --ember: #FF7A00;
  --gold: #FFB800;

  --bg: #111111;
  --bg-alt: #0a0a0a;
  --char: #161616;
  --ash: #1e1e1e;

  --steel: #2c2c2c;
  --text: #f0ece4;
  --text-muted: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --radius: 16px;
  --radius-sm: 8px;

  --nav-h: 68px;
  --nav-bg: #111111;
  --nav-border: rgba(255, 255, 255, 0.10);
  --nav-logo: #ffffff;
  --nav-link: rgba(255, 255, 255, 0.88);
  --nav-active: #FF4500;
  --ease: 0.28s cubic-bezier(.4, 0, .2, 1);
  --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="light"] {
  --bg: #f4f0e8;
  --bg-alt: #ece7de;
  --char: #e8e3da;
  --ash: #ddd8cf;
  --steel: #cbc6bc;
  --text: #181818;
  --text-muted: #666666;
  --border: rgba(0, 0, 0, 0.09);
  --card-bg: rgba(0, 0, 0, 0.04);
  --card-hover: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --nav-bg: #ffffff;
  --nav-border: rgba(0, 0, 0, 0.10);
  --nav-logo: #111111;
  --nav-link: rgba(0, 0, 0, 0.82);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--ease), color var(--ease);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ─── RTL ───────────────────────────────────────────────────── */
[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .float-btn,
[dir="rtl"] .toast {
  right: auto;
  left: 24px;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 54px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 10px;
  margin-top: 10px;
  ;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: .02em;
  line-height: 1.05;
  margin-bottom: 18px;
  padding-top: 20px;
}

.section-title span {
  color: var(--fire);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

.fire-divider {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  border-radius: 2px;
  margin: 12px 0 26px;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .2s;
  border-radius: inherit;
}

/* Highly specific selector for the header login button */
nav .nav-actions .btn-login-header {
  padding: 8px 24px !important;
  font-size: 0.8rem !important;
  background: linear-gradient(135deg, var(--fire), var(--ember)) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

nav .nav-actions .btn-login-header:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.45) !important;
  opacity: 0.9 !important;
}

.btn:hover::after {
  opacity: .08;
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 69, 0, .4);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 69, 0, .55);
}

.btn-outline {
  border: 2px solid var(--fire);
  color: var(--fire);
  background: transparent;
}

.btn-outline:hover {
  background: var(--fire);
  color: #fff;
  transform: translateY(-2px);
}

.btn-login {
  border: 2px solid #d6d4d4;
  color: #FF4500;
  background: var(--card-bg);
}

.btn-ghost {
  border: 2px solid white;
  color: white;
  background: var(--card-bg);
}

.btn-ghost:hover {
  border-color: var(--fire);
  color: var(--fire);
}

.btn-login:hover {
  border-color: var(--fire);
  color: var(--fire);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  transform: scale(0);
  animation: ripple-anim .6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--ease);
}

.card:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 69, 0, .2);
}

/* ─── TAGS ──────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.tag-veg {
  background: rgba(34, 197, 94, .14);
  color: #4ade80;
}

.tag-nveg {
  background: rgba(255, 69, 0, .14);
  color: var(--fire);
}

.tag-spicy {
  background: rgba(255, 184, 0, .14);
  color: var(--gold);
}

.tag-hot {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
}

.stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
}

/* ─── FORMS ─────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text) !important;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text) !important;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, .14);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: .7;
}

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

.form-select option {
  background: var(--ash);
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── CONTACT FORM SPECIFIC ────────────────────────────────── */
.contact-form-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-form-card {
  width: 100%;
  max-width: 680px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form-title {
  color: #ff4500;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-align: center;
}

.form-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-submit-btn {
  width: auto;
  min-width: 220px;
  padding: 14px 44px;
  justify-content: center;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Validation Styles */
.form-input:invalid:not(:placeholder-shown) {
  border-color: var(--border);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 24px;
  }

  .contact-submit-btn {
    width: 100%;
  }

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

/* ─── IMAGE BOX ─────────────────────────────────────────────── */
/*
  Usage with real photo:
    <div class="img-box" style="height:300px;">
      <img src="images/your-photo.jpg" alt="Description">
    </div>
  Placeholder (no image yet):
    <div class="img-box img-placeholder" data-label="Food Photo" style="height:300px;"></div>
*/
.img-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--steel);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

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

.img-placeholder {
  background: linear-gradient(135deg, var(--ash), var(--steel));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
}

.img-placeholder::before {
  content: attr(data-label);
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .5;
}

/* ================================================================
   ★  NAVBAR — STICKY ON ALL DEVICES  ★
   position:fixed + translateZ(0) for iOS Safari GPU compositing.
   Always opaque background. High-contrast tokens for logo/links.
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: box-shadow;
  transition: box-shadow var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .55);
}

[data-theme="light"] .navbar.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  padding: 0 16px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: .06em;
  color: var(--nav-logo);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  z-index: 1003;
}

.nav-logo .logo-fire {
  color: var(--fire);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nav-link);
  padding: 7px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nav-active);
  background: rgba(255, 69, 0, .10);
}

/* Dropdowns */
.dropdown-parent {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-parent>a {
  padding-right: 4px;
}

.dropdown-arrow {
  font-size: 0.65rem;
  padding: 0 6px;
  color: var(--nav-link);
  transition: transform 0.2s ease;
}

.dropdown-parent:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--fire);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 1005;
}

.dropdown-parent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -6px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent var(--border) transparent;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0;
  color: var(--text);
  text-align: left;
}

.dropdown-menu a:hover {
  background: rgba(255, 69, 0, 0.1);
  color: var(--fire);
  padding-left: 24px;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  z-index: 1003;
}

/* Icon Buttons */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--nav-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  color: var(--text) !important;
  font-size: .92rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 69, 0, 0.3);
  border-color: rgba(255, 69, 0, 0.4);
}

.icon-btn:hover {
  background: var(--ash);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
  transform: scale(1.1);
}

.icon-btn.rtl-btn {
  font-size: 1.1rem;
  color: var(--fire) !important;
  border-color: rgba(255, 69, 0, 0.4) !important;
  box-shadow: 0 0 8px rgba(255, 69, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.icon-btn.rtl-btn:hover {
  border-color: var(--fire) !important;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.6) !important;
  transform: scale(1.1) !important;
  background: var(--ash) !important;
}

[data-theme="light"] .icon-btn {
  background: rgba(0, 0, 0, .05);
}

[data-theme="light"] .icon-btn:hover {
  background: rgba(0, 0, 0, .10);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--nav-border);
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1003;
  transition: background .2s, border-color .2s;
  padding: 0;
}

[data-theme="light"] .hamburger {
  background: rgba(0, 0, 0, .05);
}

.hamburger:hover {
  background: rgba(255, 69, 0, .12);
  border-color: rgba(255, 69, 0, .4);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--nav-logo);
  border-radius: 2px;
  transition: transform .32s ease, opacity .22s ease;
  pointer-events: none;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
/* ── Mobile Nav Overlay ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(10, 10, 10, .98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding-bottom: 40px;
  overflow-y: auto;
  align-items: flex-start;
}

.mobile-nav-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.mobile-nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--fire);
  letter-spacing: 0.05em;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  transition: color 0.2s;
}

.mobile-nav-close:hover {
  color: var(--fire);
}

[data-theme="light"] .mobile-nav {
  background: rgba(244, 240, 232, .99);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Items */
.mobile-nav-item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

[data-theme="light"] .mobile-nav-item {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.mobile-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color 0.2s;
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--fire);
}

/* Mobile Dropdown */
.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0 6px 16px;
  animation: slide-down 0.3s ease;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-item.active .mobile-dropdown-content {
  display: flex;
}

.mobile-nav-item.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--fire);
}

.mobile-sub-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: block;
}

.mobile-sub-link:hover {
  color: var(--fire);
  padding-left: 6px;
}

/* Mobile Login Btn */
.mobile-login-btn {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  padding: 10px;
  border-radius: var(--radius);
  background: #ff4500;
  border: 1px solid var(--border);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  font-size: var(--nav-link);
}

.mobile-login-btn:hover {
  background: var(--fire);
  color: white;
  border-color: var(--fire);
}


/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width:1200px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-order-btn {
    display: flex;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  nav .nav-actions .btn-login-header {
    display: none !important;
  }

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

@media (max-width:768px) {
  .section-pad {
    padding: 60px 0;
  }

  .section-pad-sm {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width:480px) {
  .nav-logo {
    font-size: 1.4rem;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }

  .hamburger {
    width: 36px;
    height: 36px;
  }

  .container {
    padding: 0 16px;
  }

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

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

/* ════════════════════════════════════════════════════════════════
   NAVBAR — Small mobile fix  (300px – 400px)
   Root cause: nav-actions holds theme-btn + rtl-btn + login + hamburger
   all in one row — too many items to fit → hamburger overflows container.
   Fix: progressively hide non-essential items and shrink sizes so the
   hamburger ALWAYS stays visible inside the container.
════════════════════════════════════════════════════════════════ */

/* ── ≤ 430px: shrink container padding + icon buttons ── */
@media (max-width: 430px) {

  /* Tighter container edges */
  .container {
    padding: 0 8px;
  }

  /* Navbar container: no gap so items pack tightly */
  .navbar .container {
    gap: 4px;
  }

  /* Logo: smaller so it takes less horizontal space */
  .nav-logo {
    font-size: 1.15rem;
    gap: 2px;
  }

  /* Shrink Order Now button specifically */
  .nav-order-btn {
    padding: 8px 10px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0;
  }

  /* Ensure Login is hidden if it ever reappears in header on smallest screens */
  nav .nav-actions .btn-login-header {
    display: none !important;
  }

  /* Icon buttons: even smaller */
  .icon-btn {
    width: 30px;
    height: 30px;
    font-size: .7rem;
  }

  /* Hamburger: always visible, correct size */
  .hamburger {
    display: flex !important;
    width: 32px;
    height: 32px;
    padding: 0;
  }

  /* nav-actions: prevent any overflow */
  .nav-actions {
    gap: 3px;
    flex-shrink: 0;
    flex-wrap: nowrap;
    min-width: 0;
  }
}

/* ── ≤ 360px: hide RTL button too, only keep theme + hamburger ── */
@media (max-width: 360px) {

  .container {
    padding: 0 10px;
  }

  .navbar .container {
    gap: 6px;
  }

  /* Hide RTL btn at very small widths — accessible via settings */
  .icon-btn.rtl-btn {
    display: none !important;
  }

  /* Theme button: minimum touch size */
  .icon-btn {
    width: 30px;
    height: 30px;
    font-size: .72rem;
  }

  /* Logo: tightest size */
  .nav-logo {
    font-size: 1.15rem;
    gap: 2px;
  }

  /* Hamburger: always visible + correct touch target */
  .hamburger {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  /* nav-actions tight row */
  .nav-actions {
    gap: 4px;
  }
}

/* ─── LOADER ────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: opacity .5s ease, visibility .5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-icon {
  font-size: 3rem;
  animation: bounce-up .8s ease-in-out infinite alternate;
}

@keyframes bounce-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .3em;
  color: var(--text-muted);
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  animation: fill-bar 1.4s ease-in-out;
}

@keyframes fill-bar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ─── TOAST ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  max-width: 340px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

.toast.show {
  transform: none;
  opacity: 1;
}

.toast-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal,
.reveal-l,
.reveal-r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-l {
  transform: translateX(-30px);
}

.reveal-r {
  transform: translateX(30px);
}

.reveal.on,
.reveal-l.on,
.reveal-r.on {
  opacity: 1;
  transform: none;
}

/* ─── FLOAT ORDER BUTTON ────────────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(255, 69, 0, .5);
  transition: var(--ease);
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 69, 0, .7);
}

.cart-badge {
  background: #fff;
  color: var(--fire);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: .72rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ─── PAGE TRANSITION ───────────────────────────────────────── */
.page-in {
  animation: page-in .4s ease;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   ★  PAGE HERO (all sub-pages)
   Always fire-colored — never white or blank.
   Dark gradient with orange radial glow.
================================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 70px) 0 70px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 69, 0, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 120, 0, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #1a0800 0%, #0d0d0d 50%, #0a0a0a 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent,
      transparent 80px,
      rgba(255, 69, 0, 0.015) 80px,
      rgba(255, 69, 0, 0.015) 81px),
    repeating-linear-gradient(90deg, transparent,
      transparent 80px,
      rgba(255, 69, 0, 0.015) 80px,
      rgba(255, 69, 0, 0.015) 81px);
  pointer-events: none;
}

/* Real image background support for page heroes */
.page-hero.has-image {
  background: none;
}

.page-hero.has-image .page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero.has-image .page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.has-image .page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 5, 0, .88) 0%, rgba(0, 0, 0, .65) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--fire);
}

.breadcrumb span {
  opacity: .4;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 14px;
  color: #ffffff;
}

.page-hero-title span {
  color: var(--fire);
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  max-width: 540px;
  line-height: 1.7;
}

/* Decorative fire accent line under title */
.page-hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  border-radius: 2px;
  margin: 14px 0 20px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════
   FOOTER  —  Newsletter · 4-col grid · Social media · Legal bar
   Breakpoints:  >1024px = 4 col  |  ≤1024px = 2 col  |  ≤640px = 1 col
══════════════════════════════════════════════════════════════════ */

/* ── Newsletter strip ──────────────────────────────────────────── */
.footer-newsletter {
  background: linear-gradient(135deg, #130400 0%, #0a0200 100%);
  border-top: 1px solid rgba(255, 69, 0, .22);
  border-bottom: 1px solid rgba(255, 69, 0, .12);
  padding: 40px 0;
}

.footer-newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.fnl-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 4px;
}

.fnl-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  color: #fff;
  line-height: 1;
}

.fnl-form {
  display: flex;
  flex: 1;
  max-width: 460px;
  min-width: 260px;
}

.fnl-input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-right: none;
  border-radius: 50px 0 0 50px;
  padding: 13px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}

.fnl-input::placeholder {
  color: rgba(255, 255, 255, .32);
}

.fnl-input:focus {
  border-color: rgba(255, 69, 0, .55);
}

.fnl-btn {
  background: linear-gradient(135deg, var(--fire) 0%, var(--ember) 100%);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 13px 26px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}

.fnl-btn:hover {
  opacity: .88;
}

.fnl-btn:active {
  transform: scale(.97);
}

/* ── Main footer shell ──────────────────────────────────────────── */
.footer {
  background: #080808;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

/* Top fire line */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--fire) 35%, var(--gold) 65%, transparent 100%);
  opacity: .6;
}

/* Giant ghost word */
.footer-bg-word {
  position: absolute;
  bottom: -10px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 1;
  letter-spacing: .04em;
  color: rgba(255, 69, 0, .028);
  pointer-events: none;
  user-select: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

/* ── 4-column grid ──────────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.1fr;
  gap: 48px 40px;
  padding-bottom: 60px;
}

/* ① Brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-logo:hover {
  opacity: .85;
}

.footer-logo-accent {
  color: var(--fire);
  margin-left: 2px;
}

.footer-tagline {
  font-size: .86rem;
  color: white;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 270px;
}

/* ── Social media buttons ───────────────────────────────────────── */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

/* Each platform button */
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .65);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color .22s, transform .22s, box-shadow .22s, border-color .22s;
}

/* Coloured fill revealed on hover */
.soc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .22s;
  border-radius: inherit;
}

.soc-btn:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.soc-btn:hover::before {
  opacity: 1;
}

.soc-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.soc-btn span {
  position: relative;
  z-index: 1;
}

/* Platform brand colours */
.soc-ig::before {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.soc-ig:hover {
  box-shadow: 0 6px 22px rgba(253, 29, 29, .3);
}

.soc-tt::before {
  background: #000;
}

.soc-tt:hover {
  box-shadow: 0 6px 22px rgba(105, 201, 208, .25);
}

.soc-fb::before {
  background: #1877f2;
}

.soc-fb:hover {
  box-shadow: 0 6px 22px rgba(24, 119, 242, .3);
}

.soc-x::before {
  background: #111;
}

.soc-x:hover {
  box-shadow: 0 6px 22px rgba(255, 255, 255, .1);
}

.soc-yt::before {
  background: #ff0000;
}

.soc-yt:hover {
  box-shadow: 0 6px 22px rgba(255, 0, 0, .3);
}

.soc-wa::before {
  background: #25d366;
}

.soc-wa:hover {
  box-shadow: 0 6px 22px rgba(37, 211, 102, .3);
}

/* ② ③  Nav columns ─────────────────────────────────────────────── */
.footer-col-heading {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 69, 0, .14);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: .86rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color .2s, padding-left .2s;
}

.footer-links a:hover {
  color: var(--fire);
  padding-left: 4px;
}

[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 4px;
}

.footer-links span {
  font-size: .82rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ④  Contact column ─────────────────────────────────────────────── */
.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.fci-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 69, 0, .1);
  border: 1px solid rgba(255, 69, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  line-height: 1;
}

.fci-label {
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2px;
}

.fci-value {
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
  display: block;
}

a.fci-value:hover {
  color: var(--fire);
}

/* ── Bottom legal bar ───────────────────────────────────────────── */
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .055);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.footer-fire {
  animation: dot-pulse 2.5s ease-in-out infinite;
}

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

.footer-legal a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .22);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: color .2s, border-color .2s, background .2s;
}

.footer-legal a:hover {
  color: var(--fire);
  border-color: rgba(255, 69, 0, .28);
  background: rgba(255, 69, 0, .06);
}

.footer-legal span {
  color: rgba(255, 255, 255, .1);
  font-size: .7rem;
}

/* ── Responsive breakpoints ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-newsletter .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .fnl-form {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 52px 0 0;
  }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bg-word {
    font-size: 7rem;
  }
}

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

  .footer-socials {
    gap: 7px;
  }

  /* Icon-only on very small screens */
  .soc-btn span {
    display: none;
  }

  .soc-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .fnl-form {
    flex-direction: column;
    gap: 10px;
  }

  .fnl-input {
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
  }

  .fnl-btn {
    border-radius: 50px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .footer-legal {
    gap: 6px;
  }

  .footer-legal a {
    font-size: .72rem;
    padding: 3px 9px;
  }
}


/* ================================================================
   HOME PAGE
================================================================ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 40% 60%, #1a0a00 0%, #0a0a0a 70%);
}

[data-theme="light"] .hero {
  background: radial-gradient(ellipse at 40% 60%, #2a0e00 0%, #1a0800 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 69, 0, .18) 0%, transparent 65%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: .8;
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 10, 10, .8) 0%, transparent 100%);
}

.food-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.food-float {
  position: absolute;
  animation: float-food linear infinite;
  opacity: 0;
}

@keyframes float-food {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: .6;
  }

  90% {
    opacity: .6;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  padding-top: var(--nav-h);

}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 69, 0, .12);
  border: 1px solid rgba(255, 69, 0, .3);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 24px;
  animation: fade-up .8s ease .3s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .5;
  }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: .02em;
  line-height: .95;
  color: white;
  animation: fade-up .9s ease .5s both;
}

.hero-title .fire-word {
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .55);
  margin: 24px 0 0;
  line-height: 1.7;
  max-width: 420px;
  animation: fade-up .9s ease .7s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up .9s ease .9s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 10px;
  justify-content: center;
  animation: fade-up .9s ease 1.1s both;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'Oswald', sans-serif;
  margin-top: 2px;
}

/* Reduced margin for hero visual in desktop */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: visual-in 1.2s ease .4s both;
  margin-top: 40px;
  gap: 30px;
}

.hero-truck-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@keyframes visual-in {
  from {
    opacity: 0;
    transform: scale(.9) translateX(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-truck-img {
  width: clamp(280px, 40vw, 560px);
  height: clamp(200px, 28vw, 400px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 80px rgba(255, 69, 0, .3), 0 0 0 1px rgba(255, 255, 255, .06);
  animation: truck-float 4s ease-in-out infinite;
}

.hero-truck-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.truck-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a00, #2a1000);
  border: 2px dashed rgba(255, 69, 0, .3);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.truck-ph-icon {
  font-size: 4rem;
  opacity: .6;
}

.truck-ph-label {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
}

.truck-ph-label small {
  font-family: 'DM Sans', sans-serif;
  color: var(--fire);
  opacity: .7;
  font-size: .75rem;
  text-transform: none;
}

@keyframes truck-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 69, 0, .2);
  animation: ring-expand 3s ease-in-out infinite;
}

.hero-ring:nth-child(1) {
  width: 300px;
  height: 300px;
}

.hero-ring:nth-child(2) {
  width: 400px;
  height: 400px;
  animation-delay: .5s;
  opacity: .7;
}

.hero-ring:nth-child(3) {
  width: 500px;
  height: 500px;
  animation-delay: 1s;
  opacity: .4;
}

@keyframes ring-expand {

  0%,
  100% {
    transform: scale(1);
    opacity: .3;
  }

  50% {
    transform: scale(1.05);
    opacity: .6;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  animation: fade-up 1s ease 1.5s both;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 69, 0, .5);
  border-bottom: 2px solid rgba(255, 69, 0, .5);
  transform: rotate(45deg);
  animation: arrow-bounce 1.5s ease infinite;
}

@keyframes arrow-bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* Location Strip */
.location-strip {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  padding: 20px 0;
}

.location-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.loc-icon {
  font-size: 1.3rem;
}

.loc-label {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
}

.loc-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: dot-pulse 1.5s ease infinite;
}

/* Dish Cards (home featured) */
.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, .3);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .5);
}

.dish-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--steel);
}

.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.dish-card:hover .dish-img img {
  transform: scale(1.08);
}

.dish-img-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: radial-gradient(circle at center, rgba(255, 69, 0, .08) 0%, transparent 70%);
}

.dish-card-body {
  padding: 20px;
}

.dish-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.dish-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--fire);
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.add-btn:hover {
  transform: scale(1.15) rotate(90deg);
}

.badge-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

[dir="rtl"] .badge-popular {
  right: auto;
  left: 14px;
}

/* Combos */
.combos-section {
  background: var(--char);
}

.combo-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.combo-card:hover {
  border-color: rgba(255, 184, 0, .3);
  background: var(--card-hover);
  transform: translateX(6px);
}

[dir="rtl"] .combo-card:hover {
  transform: translateX(-6px);
}

.combo-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--steel);
}

.combo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.combo-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: radial-gradient(circle, rgba(255, 69, 0, .1), transparent);
  flex-shrink: 0;
}

.combo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.combo-items {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.combo-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
}

.combo-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.combo-original {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.combo-save {
  background: rgba(255, 184, 0, .15);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  padding: 3px 8px;
  border-radius: 4px;
}

/* About Teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 60%, rgba(255, 69, 0, .12) 0%, rgba(26, 26, 26, .8) 70%);
  font-size: 8rem;
}

.about-year-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: var(--radius);
  padding: 16px 24px;
  color: white;
}

[dir="rtl"] .about-year-badge {
  left: auto;
  right: 30px;
}

.about-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.about-year-label {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

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

.mission-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 69, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 69, 0, .2);
}

.mission-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mission-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
}

/* Testimonials */
.testimonials-section {
  background: var(--char);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-track {
  overflow: hidden;
  padding: 20px 0 40px;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  transition: transform .7s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  padding: 35px;
  border-radius: 24px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: var(--card-hover);
  border-color: rgba(255, 69, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.test-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.test-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--fire);
  padding: 2px;
  background: var(--bg-alt);
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.test-info {
  flex: 1;
}

.test-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.stars {
  color: #ffb400;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.test-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.test-text {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.85;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.test-text::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: -15px;
  color: var(--fire);
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  opacity: 0.2;
  z-index: -1;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
  transform: scale(1.1);
  color: white;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--steel);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 35px;
  border-radius: 5px;
  background: var(--fire);
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

/* RESPONSIVE TESTIMONIALS */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials-slider {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 25px;
  }

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

/* Home Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ash);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: radial-gradient(circle, rgba(255, 69, 0, .06), var(--ash));
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 69, 0, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: .85rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  gap: 6px;
}

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

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

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a0800, #0f0500);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 69, 0, .2) 0%, transparent 65%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: white;
  margin-bottom: 16px;
}

.cta-title span {
  color: var(--fire);
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width:768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding-top: calc(var(--nav-h) + 20px);
  }

  .hero-content {
    padding: 0;
  }

  .hero-visual {
    margin-top: 0;
    gap: 20px;
  }

  .hero-visual {
    order: 0;
  }

  .hero-truck-img {
    width: 100%;
    max-width: 380px;
    height: 220px;
  }

  .hero-ctas,
  .hero-stats {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-ring {
    display: none;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

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

  .about-visual {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-card {
    min-width: 85%;
  }
}

@media (max-width:480px) {
  .gallery-grid {
    grid-auto-rows: 140px;
  }
}

/* ================================================================
   GALLERY PAGE
================================================================ */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--fire);
  color: white;
  border-color: var(--fire);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

/* Social Insta Grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ash);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.insta-item:hover img {
  transform: scale(1.1);
}

/* Gallery CTA */
.gallery-cta {
  padding: 80px 0;
  text-align: center;
}

.gallery-cta-card {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 122, 0, 0.05));
  padding: 60px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--nav-border);
  backdrop-filter: blur(10px);
}

.gallery-cta-card h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.gallery-cta-card h2 span {
  color: var(--fire);
}

.gallery-cta-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .gallery-cta-card {
    padding: 40px 20px;
  }

  .gallery-cta-card h2 {
    font-size: 2.2rem;
  }
}

/* ================================================================
   MENU PAGE
================================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: white;
}

.filter-btn.active {
  background: var(--fire);
  border-color: var(--fire);
  color: white;
}

.category-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.cat-tab {
  padding: 14px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  background: none;
  border-radius: 0;
}

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

.cat-tab.active {
  color: var(--fire);
  border-bottom-color: var(--fire);
}

.menu-category {
  display: block;
  margin-bottom: 20px;
}

.menu-category.visible {
  display: block;
}

.menu-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: .02em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

/* ─── FILTER BUTTONS (menu page) ─────────────────────────────── */
.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: white;
}

.filter-btn.active {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
}

/* ─── ABOUT PAGE — INTRO 2-COL GRID ─────────────────────────── */
@media (max-width: 768px) {
  .about-intro-two-col {
    grid-template-columns: 1fr !important;
  }
}

/* Inline about grid — stack on mobile */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .menu-section-title {
    font-size: 1.7rem;
  }

  .menu-grid {
    gap: 14px;
  }
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, .3);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .4);
}

.menu-card[data-hidden="true"] {
  display: none;
}

.menu-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--steel);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.menu-card-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: radial-gradient(circle, rgba(255, 69, 0, .07) 0%, transparent 70%);
}

.menu-card-body {
  padding: 18px;
}

.menu-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.menu-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.menu-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--fire);
}

.menu-price-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

[dir="rtl"] .menu-price-badge {
  left: auto;
  right: 12px;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--ash);
  z-index: 1100;
  border-left: 1px solid var(--border);
  transition: right .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .4);
}

.cart-sidebar.open {
  right: 0;
}

[dir="rtl"] .cart-sidebar {
  right: auto;
  left: -400px;
  border-left: none;
  border-right: 1px solid var(--border);
}

[dir="rtl"] .cart-sidebar.open {
  left: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

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

.cart-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .05em;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--fire);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.cart-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.cart-item-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: .95rem;
}

.cart-item-price {
  font-size: .85rem;
  color: var(--fire);
  margin-top: 2px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s;
  border: none;
  color: var(--text);
}

.qty-btn:hover {
  background: var(--fire);
}

.qty-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total-label {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-total-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--fire);
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

.cart-empty-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width:768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  [dir="rtl"] .cart-sidebar {
    right: auto;
    left: -100%;
  }

  .category-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .cat-tab {
    white-space: nowrap;
  }
}

/* ================================================================
   ABOUT PAGE
================================================================ */
.parallax-section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-bg {
  position: absolute;
  inset: -80px 0;
  background: radial-gradient(ellipse at center, rgba(255, 69, 0, .25), transparent 60%), linear-gradient(160deg, #1a0800, #0a0a0a);
  will-change: transform;
}

.parallax-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

.parallax-quote {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  max-width: 800px;
  line-height: 1.3;
}

.parallax-quote span {
  color: var(--fire);
}

.parallax-author {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   ZIG-ZAG TIMELINE  — zz-* prefix
   Desktop: alternating left/right cards around a central spine
   Tablet (≤900px): same zig-zag but narrower
   Mobile (≤640px): single-column left-spine layout
═══════════════════════════════════════════════════════════════ */

/* ── WRAPPER ── */
.zz-section {
  overflow: hidden;
}

.zz-timeline {
  position: relative;
  padding: 20px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── VERTICAL SPINE ── */
.zz-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--fire) 8%,
      var(--ember) 50%,
      var(--fire) 92%,
      transparent 100%);
  border-radius: 2px;
  z-index: 0;
}

[dir="rtl"] .zz-spine {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

/* ── ROW ITEM (flex row: card · node · ghost OR ghost · node · card) ── */
.zz-item {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* ── CARD ── */
.zz-card {
  flex: 1;
  background-color: var(--bg);
  background-image: linear-gradient(var(--card-bg), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px 26px;
  position: relative;
  z-index: 1;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  overflow: hidden;
}

.zz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 69, 0, .06), transparent 65%);
  pointer-events: none;
}

.zz-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 69, 0, .35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}

/* "Future" card gets a subtle ember glow */
.zz-card-future {
  border-color: rgba(255, 184, 0, .2);
  background-color: var(--bg);
  background-image: linear-gradient(135deg, rgba(255, 69, 0, .04), rgba(255, 184, 0, .04));
}

.zz-card-future:hover {
  border-color: rgba(255, 184, 0, .4);
}

/* ── CONNECTOR ARROW  (CSS pseudo-element triangle) ── */
/* Left card → points right toward the spine */
.zz-left .zz-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  border-width: 12px 0 12px 12px;
  border-style: solid;
  border-color: transparent transparent transparent var(--border);
}

.zz-left .zz-card:hover::after {
  border-left-color: rgba(255, 69, 0, .35);
}

/* Right card ← points left toward the spine */
.zz-right .zz-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  border-width: 12px 12px 12px 0;
  border-style: solid;
  border-color: transparent var(--border) transparent transparent;
}

.zz-right .zz-card:hover::after {
  border-right-color: rgba(255, 69, 0, .35);
}

/* ── CARD ICON  (large bg emoji) ── */
.zz-card-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.6rem;
  opacity: .12;
  pointer-events: none;
  line-height: 1;
}

[dir="rtl"] .zz-card-icon {
  right: auto;
  left: 20px;
}

/* ── TAG ── */
.zz-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255, 69, 0, .12);
  color: var(--fire);
  border: 1px solid rgba(255, 69, 0, .2);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.zz-tag-gold {
  background: rgba(255, 184, 0, .1);
  color: var(--gold);
  border-color: rgba(255, 184, 0, .2);
}

.zz-tag-fire {
  background: linear-gradient(135deg, rgba(255, 69, 0, .15), rgba(255, 184, 0, .1));
  color: var(--ember);
  border-color: rgba(255, 120, 0, .25);
}

/* ── YEAR ── */
.zz-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  color: var(--fire);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 2px;
}

/* ── CARD TITLE ── */
.zz-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: .02em;
}

/* ── CARD TEXT ── */
.zz-card-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── NODE (centre dot on the spine) ── */
.zz-node {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(255, 69, 0, .15), 0 6px 20px rgba(255, 69, 0, .3);
  transition: transform var(--ease), box-shadow var(--ease);
  margin: 0 -26px;
  /* overlap the spine so node sits ON the line */
}

.zz-item:hover .zz-node {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(255, 69, 0, .2), 0 10px 30px rgba(255, 69, 0, .4);
}

/* Pulse animation for last/future node */
.zz-node-pulse {
  animation: zz-pulse 2.5s ease-in-out infinite;
}

@keyframes zz-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(255, 69, 0, .15), 0 6px 20px rgba(255, 69, 0, .3);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(255, 69, 0, .08), 0 6px 28px rgba(255, 69, 0, .5);
  }
}

.zz-node-emoji {
  display: block;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ── GHOST (empty flex placeholder on the empty side) ── */
.zz-ghost {
  flex: 1;
}

/* ── RTL FLIP ── */
[dir="rtl"] .zz-left {
  flex-direction: row-reverse;
}

[dir="rtl"] .zz-right {
  flex-direction: row-reverse;
}

[dir="rtl"] .zz-left .zz-card::after {
  right: auto;
  left: -12px;
  border-width: 12px 12px 12px 0;
  border-color: transparent var(--border) transparent transparent;
}

[dir="rtl"] .zz-left .zz-card:hover::after {
  border-right-color: rgba(255, 69, 0, .35);
  border-left-color: transparent;
}

[dir="rtl"] .zz-right .zz-card::after {
  left: auto;
  right: -12px;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--border);
}

[dir="rtl"] .zz-right .zz-card:hover::after {
  border-left-color: rgba(255, 69, 0, .35);
  border-right-color: transparent;
}


/* ═══════════════════════════════════════════════════════════════
   TABLET  ≤ 900px  — compress spine gap, same zig-zag
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  .zz-node {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin: 0 -22px;
  }

  .zz-card {
    padding: 22px 22px 20px;
  }

  .zz-year {
    font-size: 2.8rem;
  }

  .zz-card-title {
    font-size: 1.1rem;
  }

  .zz-item {
    margin-bottom: 44px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE  ≤ 640px  — single column, spine moves to left edge
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Spine shifts to left */
  .zz-spine {
    left: 22px;
    transform: none;
  }

  [dir="rtl"] .zz-spine {
    left: auto;
    right: 22px;
    transform: none;
  }

  /* All rows become the same: node left, card right */
  .zz-item,
  .zz-left,
  .zz-right {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 32px;
  }

  .zz-node {
    order: 1;
  }

  .zz-card {
    order: 2;
  }

  /* Ghost always hidden on mobile */
  .zz-ghost {
    display: none;
  }

  /* Node shrinks, sits on left spine */
  .zz-node {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    flex-shrink: 0;
    margin: 0;
    margin-right: 18px;
    position: relative;
    z-index: 2;
  }

  [dir="rtl"] .zz-node {
    margin-right: 0;
    margin-left: 18px;
  }

  /* Card fills remaining width */
  .zz-card {
    flex: 1;
    padding: 18px 16px 16px;
    min-width: 0;
  }

  .zz-year {
    font-size: 2.4rem;
  }

  .zz-card-title {
    font-size: 1.05rem;
  }

  .zz-card-text {
    font-size: .85rem;
  }

  /* Reset ALL connector arrows to point LEFT (← card points to node) */
  .zz-left .zz-card::after,
  .zz-right .zz-card::after {
    top: 22px;
    transform: none;
    right: auto;
    left: -11px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--border) transparent transparent;
  }

  .zz-left .zz-card:hover::after,
  .zz-right .zz-card:hover::after {
    border-right-color: rgba(255, 69, 0, .35);
    border-left-color: transparent;
  }

  /* RTL: arrows point right */
  [dir="rtl"] .zz-left .zz-card::after,
  [dir="rtl"] .zz-right .zz-card::after {
    left: auto;
    right: -11px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--border);
  }

  [dir="rtl"] .zz-left .zz-card:hover::after,
  [dir="rtl"] .zz-right .zz-card:hover::after {
    border-left-color: rgba(255, 69, 0, .35);
    border-right-color: transparent;
  }

  /* RTL: row direction flip */
  [dir="rtl"] .zz-item,
  [dir="rtl"] .zz-left,
  [dir="rtl"] .zz-right {
    flex-direction: row-reverse !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   EXTRA SMALL  ≤ 400px
═══════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {

  .zz-spine {
    left: 18px;
  }

  .zz-node {
    width: 36px;
    height: 36px;
    font-size: .85rem;
    margin-right: 14px;
  }

  .zz-card {
    padding: 14px 12px 12px;
  }

  .zz-year {
    font-size: 2rem;
  }

  .zz-card-icon {
    font-size: 1.8rem;
    right: 10px;
  }

  .zz-card-title {
    font-size: .95rem;
  }

  .zz-card-text {
    font-size: .8rem;
  }

  .zz-item {
    margin-bottom: 24px;
  }
}

/* ── Light theme ── */
[data-theme="light"] .zz-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

[data-theme="light"] .zz-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

[data-theme="light"] .zz-card-future {
  background: linear-gradient(135deg, #fff9f7, #fffbf0);
}

.value-card {
  padding: 32px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, .3);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-text {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.chef-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.chef-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, .3);
}

.chef-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 69, 0, .2);
  background: var(--steel);
}

.chef-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(255, 69, 0, .2), rgba(255, 120, 0, .1));
}

.chef-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.chef-role {
  font-size: .82rem;
  color: var(--fire);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 12px;
}

.chef-bio {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hygiene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hygiene-badge {
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hygiene-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hygiene-label {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--steel);
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  background: radial-gradient(circle at 30% 60%, rgba(255, 69, 0, .12) 0%, rgba(26, 26, 26, .8) 70%);
}

@media (max-width:768px) {
  .hygiene-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-img {
    height: 340px;
  }
}

/* ================================================================
   LOCATION PAGE
================================================================ */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  height: 420px;
  background: var(--ash);
}

.map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 69, 0, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 69, 0, .02) 1px, transparent 1px), linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

[data-theme="light"] .map-bg {
  background: linear-gradient(0deg, rgba(255, 69, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 69, 0, .04) 1px, transparent 1px), linear-gradient(145deg, #c8d6e5 0%, #d5e0ec 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

.map-road-h,
.map-road-v {
  position: absolute;
  background: rgba(255, 255, 255, .08);
}

[data-theme="light"] .map-road-h,
[data-theme="light"] .map-road-v {
  background: rgba(255, 255, 255, .7);
}

.map-road-h {
  height: 10px;
  left: 0;
  right: 0;
}

.map-road-v {
  width: 10px;
  top: 0;
  bottom: 0;
}

.map-pin-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}

.map-pin {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 69, 0, .5);
  animation: pin-bounce 2s ease-in-out infinite;
  border: 2px solid white;
}

.map-pin-icon {
  font-size: 1.1rem;
  transform: rotate(45deg);
}

.map-pin-shadow {
  width: 16px;
  height: 6px;
  background: rgba(0, 0, 0, .3);
  border-radius: 50%;
  margin-top: 2px;
  animation: shadow-pulse 2s ease-in-out infinite;
}

@keyframes pin-bounce {

  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}

@keyframes shadow-pulse {

  0%,
  100% {
    transform: scaleX(1);
    opacity: .3;
  }

  50% {
    transform: scaleX(.7);
    opacity: .1;
  }
}

.map-info-bubble {
  position: absolute;
  bottom: 60px;
  background: var(--char);
  border: 1px solid rgba(255, 69, 0, .3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.map-info-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255, 69, 0, .3);
  border-bottom: 0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  vertical-align: middle;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: var(--card-hover);
}

.today-row {
  background: rgba(255, 69, 0, .05) !important;
}

.day-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.closed-label {
  color: var(--text-muted);
  font-size: .85rem;
}

.event-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.event-card:hover {
  border-color: rgba(255, 69, 0, .3);
  background: var(--card-hover);
}

.event-date-box {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}

.event-date-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: white;
}

.event-date-month {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

.event-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.event-loc {
  font-size: .82rem;
  color: var(--fire);
  margin-bottom: 8px;
}

.event-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Event image in event cards */
.event-card-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--steel);
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.city-card:hover {
  border-color: rgba(255, 69, 0, .3);
  transform: translateY(-4px);
}

.city-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.city-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.city-freq {
  font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width:768px) {
  .map-container {
    height: 300px;
  }

  .event-card {
    flex-direction: column;
  }
}

/* ================================================================
   ORDER PAGE
================================================================ */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.order-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.order-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.order-card-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-card-head-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.order-category {
  margin-bottom: 36px;
}

.order-cat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .02em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  margin-bottom: 10px;
  transition: var(--transition);
}

.order-item:hover {
  border-color: rgba(255, 69, 0, .2);
  background: var(--card-hover);
}

.order-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--steel);
}

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

.order-item-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 3px;
}

.order-item-desc {
  font-size: .8rem;
  color: var(--text-muted);
}

.order-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--fire);
  flex-shrink: 0;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-c-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--steel);
  border: none;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.qty-c-btn:hover {
  background: var(--fire);
}

.qty-c-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  min-width: 22px;
  text-align: center;
}

.cart-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}

.cart-s-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-s-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.time-slot {
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--card-bg);
}

.time-slot:hover {
  border-color: var(--fire);
  color: var(--fire);
}

.time-slot.selected {
  background: var(--fire);
  border-color: var(--fire);
  color: white;
}

.time-slot.unavailable {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.order-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--text-muted);
}

.order-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.order-grand-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.order-grand-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--fire);
}

.order-success {
  display: none;
  text-align: center;
  padding: 60px 24px;
}

.success-icon {
  font-size: 5rem;
  animation: bounce-up .8s ease infinite alternate;
  margin-bottom: 20px;
}

.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.success-sub {
  color: var(--text-muted);
  line-height: 1.6;
}

.success-order-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--fire);
  margin-top: 16px;
}

@media (max-width:1024px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-sticky {
    position: static;
  }

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

@media (max-width:480px) {
  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================
   GALLERY PAGE
================================================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-masonry {
  columns: 4;
  column-gap: 14px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ash);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-masonry-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  z-index: 2;
}

.gallery-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle, rgba(255, 69, 0, .07) 0%, var(--ash) 70%);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

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

.gallery-tile-emoji {
  font-size: 4rem;
  transition: transform .4s ease;
  position: absolute;
}

.gallery-masonry-item:hover .gallery-tile-emoji {
  transform: scale(1.2);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 69, 0, .8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-masonry-item:hover .gallery-tile-overlay {
  opacity: 1;
}

.gallery-tile-caption {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  color: white;
  letter-spacing: .05em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 700px;
  width: 90%;
  text-align: center;
  transform: scale(.9);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-media {
  width: 100%;
  max-height: 60vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ash);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}

.lightbox-emoji {
  font-size: 8rem;
  padding: 40px 0;
}

.lightbox-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: white;
}

.lightbox-desc {
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  margin-top: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lightbox-close:hover {
  background: var(--fire);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lightbox-nav:hover {
  background: var(--fire);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width:1024px) {
  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width:640px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width:400px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* ================================================================
   EVENTS PAGE
================================================================ */
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.event-type-card {
  padding: 0;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}

.event-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, .3);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .3);
}

.event-type-img {
  height: 160px;
  overflow: hidden;
  background: var(--steel);
  position: relative;
}

.event-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.event-type-card:hover .event-type-img img {
  transform: scale(1.08);
}

.event-type-img-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: radial-gradient(circle, rgba(255, 69, 0, .08), var(--steel));
}

.event-type-body {
  padding: 24px;
}

.et-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.et-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.et-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--fire);
}

.et-price-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.booking-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.info-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text {
  color: var(--text-muted);
  line-height: 1.5;
}

.info-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.package-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--fire);
  background: rgba(255, 69, 0, .05);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.package-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.package-guests {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.package-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--fire);
  line-height: 1;
}

.package-price-note {
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.package-features {
  text-align: left;
}

.package-features li {
  font-size: .82rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  color: #4ade80;
  flex-shrink: 0;
}

@media (max-width:1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width:640px) {
  .event-type-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  border-color: rgba(255, 69, 0, .3);
  background: var(--card-hover);
  transform: translateX(6px);
}

[dir="rtl"] .contact-method:hover {
  transform: translateX(-6px);
}

.contact-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-icon-box.fire {
  background: rgba(255, 69, 0, .15);
  border: 1px solid rgba(255, 69, 0, .25);
}

.contact-icon-box.green {
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74, 222, 128, .25);
}

.contact-icon-box.blue {
  background: rgba(96, 165, 250, .12);
  border: 1px solid rgba(96, 165, 250, .25);
}

.contact-icon-box.gold {
  background: rgba(255, 184, 0, .12);
  border: 1px solid rgba(255, 184, 0, .25);
}

.contact-method-label {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-method-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-method-sub {
  font-size: .82rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.socials-section {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .06em;
  transition: var(--transition);
  color: var(--text-muted);
}

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

.social-link-icon {
  font-size: 1.1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s;
}

.faq-question:hover {
  background: var(--card-hover);
}

.faq-arrow {
  transition: transform .3s;
  font-size: .8rem;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width:768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   REVIEWS PAGE
================================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stat-box {
  text-align: center;
  padding: 28px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-box:hover {
  border-color: rgba(255, 69, 0, .3);
  transform: translateY(-4px);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--fire);
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 69, 0, .2);
  box-shadow: var(--shadow);
}



.review-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--fire), var(--ember));
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.review-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 2px;
}

.review-meta {
  font-size: .78rem;
  color: var(--text-muted);
}

.review-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--fire);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
  opacity: .6;
}

.review-dish {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 69, 0, .1);
  color: var(--fire);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
}

.review-form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.star-rating {
  display: flex;
  gap: 6px;
  margin: 12px 0;
}

.star-btn {
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform .2s;
  line-height: 1;
}

.star-btn:hover,
.star-btn.active {
  transform: scale(1.2);
}

@media (max-width:1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ================================================================
   404 PAGE
================================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a0800 0%, #0a0a0a 70%);
  padding: 40px 20px;
}

.error-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--fire) 0%, rgba(255, 69, 0, .2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .05em;
}

.error-emoji {
  font-size: 3rem;
  animation: truck-float 3s ease-in-out infinite;
  margin: -20px 0;
  display: block;
}

.error-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: .05em;
  margin-bottom: 16px;
  color: white;
}

.error-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .45);
  max-width: 440px;
  line-height: 1.7;
  margin: 0 auto 36px;
}

.error-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 69, 0, .4);
  margin: 20px auto;
  border-radius: 2px;
}

/* ================================================================
   PRIVACY / LEGAL PAGES
================================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--fire);
}

.legal-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-updated {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}




/*-------------------------------
               Home 2
---------------------------------*/
/* ================================================================
   FUEGO STREET — index3.css
   Homepage v3 — split hero, horizontal dish track, bento combos,
   mosaic gallery, accent-border reviews, location block, events
   Uses all design tokens from style.css (--fire, --ember, --gold,
   --bg, --text, --radius, --ease, --nav-h, etc.)
================================================================ */

/* ────────────────────────────────────────────────────────────────
   HERO ENTRY ANIMATIONS
────────────────────────────────────────────────────────────────── */
.h3-anim-fade {
  opacity: 0;
  animation: h3-fade-in 0.6s ease forwards;
}

.h3-anim-up {
  opacity: 0;
  transform: translateY(28px);
  animation: h3-up-in 0.7s ease forwards;
}

@keyframes h3-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes h3-up-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/* staggered delays driven by data-delay on elements */
[data-delay="0"] {
  animation-delay: 0.1s;
}

[data-delay="80"] {
  animation-delay: 0.28s;
}

[data-delay="160"] {
  animation-delay: 0.44s;
}

[data-delay="180"] {
  animation-delay: 0.46s;
}

[data-delay="240"] {
  animation-delay: 0.54s;
}

[data-delay="260"] {
  animation-delay: 0.56s;
}

[data-delay="300"] {
  animation-delay: 0.62s;
}

[data-delay="340"] {
  animation-delay: 0.68s;
}


/* ────────────────────────────────────────────────────────────────
   SPLIT HERO
────────────────────────────────────────────────────────────────── */
.h3-hero {
  display: flex;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: #0a0a0a;
}

/* ── Image pane ── */
.h3-hero-img-pane {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  background: var(--char);
  min-height: 480px;
  margin-right: -2px;
  /* Forced overlap to hide gap */
  z-index: 1;
}

.h3-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
  animation: h3-ken-burns 12s ease infinite alternate;
}

@keyframes h3-ken-burns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06) translate(1%, 1%);
  }
}

/* dark gradient overlay on photo */
.h3-hero-img-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(8, 8, 8, 0.45) 0%,
      rgba(255, 69, 0, 0.08) 60%,
      rgba(8, 8, 8, 0.6) 100%);
  pointer-events: none;
}

/* Diagonal stripe decor on right edge of photo pane */
.h3-hero-stripe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: radial-gradient(ellipse at 40% 60%, #1a0a00 0%, #0a0a0a 70%);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 3;
}

/* Stamp overlay */
.h3-hero-stamp {
  position: absolute;
  bottom: 32px;
  left: 28px;
  z-index: 4;
  background: rgba(255, 69, 0, 0.9);
  border-radius: 8px;
  padding: 10px 16px;
  backdrop-filter: blur(6px);
}

.h3-stamp-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: #fff;
  line-height: 1;
}

.h3-stamp-label {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

/* fallback */
.h3-hero-photo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 560px;
  background: linear-gradient(135deg, #1a0a00, #0d0d0d);
  color: var(--text-muted);
  font-size: .8rem;
  text-align: center;
  padding: 40px;
}

.h3-hero-photo-fallback span {
  font-size: 5rem;
  opacity: 0.4;
}

/* ── Content pane ── */
.h3-hero-content-pane {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 70px;
  background: radial-gradient(ellipse at 40% 60%, #1a0a00 0%, #0a0a0a 70%);
  position: relative;
  z-index: 2;
}

/* Background ambient glow behind content */
.h3-hero-content-pane::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.08), transparent 65%);
  pointer-events: none;
}

/* Live tag */
.h3-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.25);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fire);
  width: fit-content;
  margin-bottom: 22px;
}

.h3-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire);
  animation: h3-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes h3-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.7);
    opacity: 0.5;
  }
}

/* Hero title */
.h3-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: .03em;
  color: white;
  margin-bottom: 22px;
}

.h3-fire-text {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.h3-hero-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 430px;
  margin-bottom: 32px;
}

/* CTA row */
.h3-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stats bar */
.h3-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  margin-bottom: 36px;
}

.h3-stat {
  flex: 1;
  text-align: center;
}

.h3-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
  letter-spacing: .03em;
}

.h3-stat-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.h3-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll cue */
.h3-scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.h3-scroll-track {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  flex-shrink: 0;
}

.h3-scroll-thumb {
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background: var(--fire);
  animation: h3-scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes h3-scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

/* ── Floating particles ── */
.h3-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.h3-particle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: h3-float-up linear infinite;
}

@keyframes h3-float-up {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }

  10% {
    opacity: 0.35;
  }

  85% {
    opacity: 0.35;
  }

  100% {
    opacity: 0;
    transform: translateY(-15vh) rotate(400deg);
  }
}


/* ────────────────────────────────────────────────────────────────
   MARQUEE TICKER
────────────────────────────────────────────────────────────────── */
.h3-ticker {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.h3-ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: h3-ticker-scroll 28s linear infinite;
  will-change: transform;
}

.h3-ticker-track span {
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

.h3-ticker-track span:nth-child(even) {
  color: rgba(255, 255, 255, 0.4);
}

@keyframes h3-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.h3-ticker:hover .h3-ticker-track {
  animation-play-state: paused;
}


/* ────────────────────────────────────────────────────────────────
   SECTION HEADER UTILITY
────────────────────────────────────────────────────────────────── */
.h3-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}

.h3-see-all {
  flex-shrink: 0;
  margin-bottom: 4px;
}


/* ────────────────────────────────────────────────────────────────
   SIGNATURE DISHES — horizontal scroll track
────────────────────────────────────────────────────────────────── */
.h3-dishes-section {
  background: var(--bg-alt);
}

.h3-dish-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
}

.h3-dish-track {
  display: flex;
  gap: 22px;
  padding: 0 28px 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Better mobile scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* extend to edges */
  max-width: 1280px;
  margin: 0 auto;
}

.h3-dish-track::-webkit-scrollbar {
  display: none;
}

/* ── Dish card ── */
.h3-dish-card {
  flex: 0 0 260px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  cursor: pointer;
}

.h3-dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 69, 0, 0.08);
}

.h3-dish-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
}

.h3-dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.h3-dish-card:hover .h3-dish-img img {
  transform: scale(1.07);
}

.h3-dish-img-ph {
  font-size: 4.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.07), transparent 70%);
}

/* When img fails, show placeholder */
.h3-dish-img img[style*="none"]+.h3-dish-img-ph {
  display: flex;
}

.h3-dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
}

.h3-badge-new {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.h3-dish-body {
  padding: 18px;
}

.h3-dish-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 6px;
  color: var(--text);
}

.h3-dish-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.h3-dish-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h3-dish-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  color: var(--fire);
  letter-spacing: .04em;
}

.h3-add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}

.h3-add-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}

.h3-add-btn:hover {
  transform: scale(1.18) rotate(90deg);
  box-shadow: 0 4px 16px rgba(255, 69, 0, 0.45);
}

/* ── Track scroll arrows ── */
.h3-track-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.h3-track-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.h3-track-arrow:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.h3-track-prev {
  left: 20px;
}

.h3-track-next {
  right: 20px;
}


/* ────────────────────────────────────────────────────────────────
   ABOUT SPLIT — full-bleed two columns
────────────────────────────────────────────────────────────────── */
.h3-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* ── Image column ── */
.h3-about-img-col {
  position: relative;
  overflow: hidden;
  background: var(--char);
  min-height: 520px;
}

.h3-about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.h3-about-img-col:hover img {
  transform: scale(1.04);
}

.h3-about-img-ph {
  display: none;
  position: absolute;
  inset: 0;
  font-size: 10rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a00, #0d0d0d);
  opacity: 0.5;
}

/* Semi-transparent dark gradient on image */
.h3-about-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.35) 100%);
  pointer-events: none;
}

/* Year badge */
.h3-about-badge {
  position: absolute;
  top: 36px;
  right: 28px;
  z-index: 2;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
}

.h3-about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
}

.h3-about-badge-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

/* Pull quote */
.h3-about-quote {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0 28px;
  background: rgba(8, 8, 8, 0.88);
  border-left: 3px solid var(--fire);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: .84rem;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  line-height: 1.6;
  backdrop-filter: blur(8px);
}

.h3-about-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fire);
}

/* ── Content column ── */
.h3-about-content {
  padding: 80px 70px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-alt);
}

.h3-about-text {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Pillars */
.h3-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}

.h3-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--ease);
}

.h3-pillar:hover {
  border-color: rgba(255, 69, 0, 0.25);
  background: var(--card-hover);
}

.h3-pillar-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.h3-pillar-title {
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text);
}

.h3-pillar-sub {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ────────────────────────────────────────────────────────────────
   COMBO GRID — bento style
────────────────────────────────────────────────────────────────── */
.h3-combos-section {
  background: var(--bg);
}

.h3-combo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

/* ── Featured large combo ── */
.h3-combo-feature {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease);
}

.h3-combo-feature:hover {
  border-color: rgba(255, 69, 0, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.h3-combo-feat-img {
  height: 220px;
  overflow: hidden;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.h3-combo-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.h3-combo-feature:hover .h3-combo-feat-img img {
  transform: scale(1.05);
}

.h3-combo-img-ph {
  font-size: 4rem;
  display: none;
}

.h3-combo-feat-body {
  padding: 22px;
}

.h3-combo-save-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 184, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.h3-combo-feat-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 4px;
  color: var(--text);
}

.h3-combo-feat-items {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.h3-combo-feat-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.h3-combo-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--fire);
  letter-spacing: .04em;
  line-height: 1;
}

.h3-combo-orig {
  font-size: .88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ── Smaller combo rows ── */
.h3-combo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.h3-combo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--ease);
}

.h3-combo-row:hover {
  border-color: rgba(255, 69, 0, 0.25);
  background: var(--card-hover);
  transform: translateX(4px);
}

.h3-combo-row-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--ash);
  overflow: hidden;
}

.h3-combo-row-emoji img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.h3-combo-row-body {
  flex: 1;
}

.h3-combo-row-name {
  font-family: 'Oswald', sans-serif;
  font-size: .98rem;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--text);
}

.h3-combo-row-items {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.h3-combo-row-right {
  text-align: right;
  flex-shrink: 0;
}

.h3-combo-row-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--fire);
  line-height: 1;
}

.h3-combo-row-save {
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.h3-combo-add-btn {
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.22);
  border-radius: 6px;
  color: var(--fire);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--ease);
}

.h3-combo-add-btn:hover {
  background: var(--fire);
  color: #fff;
  border-color: var(--fire);
  transform: scale(1.04);
}


/* ────────────────────────────────────────────────────────────────
   GALLERY MOSAIC
────────────────────────────────────────────────────────────────── */
.h3-gallery-section {
  background: var(--bg-alt);
}

.h3-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  padding: 0;
  margin-top: 28px;
}

.h3-gal-item {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  border-radius: 4px;
  cursor: pointer;
}

.h3-gal-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.h3-gal-wide {
  grid-column: span 2;
}

.h3-gal-tall {
  grid-row: span 2;
}

.h3-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.h3-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 69, 0, 0.82) 0%, rgba(0, 0, 0, 0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Oswald', sans-serif;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  gap: 6px;
}

.h3-gal-item:hover .h3-gal-overlay {
  opacity: 1;
}

.h3-gal-overlay span {
  font-size: 1.1rem;
}


/* ────────────────────────────────────────────────────────────────
   REVIEWS — accent-border cards
────────────────────────────────────────────────────────────────── */
.h3-reviews-section {
  background: var(--bg);
}

.h3-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  margin-bottom: 48px;
}

.h3-review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--ease);
}

.h3-review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255, 69, 0, 0.1);
  line-height: 1;
}

.h3-review-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--fire);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45), 0 -2px 0 var(--fire);
}

.h3-review-featured {
  border-top-color: var(--gold);
}

.h3-review-featured:hover {
  border-top-color: var(--gold);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45), 0 -2px 0 var(--gold);
}

.h3-review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.h3-review-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}

.h3-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.h3-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.h3-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h3-review-avatar span {
  display: none;
}

.h3-review-name {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.h3-review-meta {
  font-size: .74rem;
  color: var(--text-muted);
}

/* Rating summary */
.h3-rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.h3-rating-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  color: var(--fire);
  line-height: 1;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.h3-rating-stars {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.h3-rating-count {
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.h3-rating-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.h3-rating-platforms span {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--ash);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.h3-rating-summary .btn {
  margin-left: auto;
}


/* ────────────────────────────────────────────────────────────────
   LOCATION BLOCK
────────────────────────────────────────────────────────────────── */
.h3-location-section {
  padding: 90px 0;
  background: var(--bg-alt);
}

.h3-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.h3-loc-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.h3-loc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--ease);
}

.h3-loc-card:hover {
  border-color: rgba(255, 69, 0, 0.22);
  background: var(--card-hover);
}

.h3-loc-card-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.16);
  border-radius: var(--radius-sm);
}

.h3-loc-card-label {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.h3-loc-card-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.h3-loc-card-sub {
  font-size: .78rem;
  color: var(--text-muted);
}

.h3-live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.h3-live-status strong {
  color: #4ade80;
}

/* Map frame */
.h3-map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  background: var(--steel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.h3-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h3-map-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  font-size: .84rem;
  color: var(--text-muted);
  text-align: center;
}

.h3-map-fallback span {
  font-size: 3.5rem;
}

/* Map pin overlay */
.h3-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.h3-pin-icon {
  width: 48px;
  height: 48px;
  background: var(--fire);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.6);
  animation: h3-pin-bob 2s ease-in-out infinite;
}

.h3-pin-icon span,
.h3-pin-icon {
  font-size: 1.2rem;
}

@keyframes h3-pin-bob {

  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-5px);
  }
}

.h3-pin-label {
  background: #fff;
  color: var(--fire);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  margin-top: 8px;
}

.h3-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255, 69, 0, 0.4);
  border-radius: 50%;
  animation: h3-pin-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes h3-pin-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}


/* ────────────────────────────────────────────────────────────────
   EVENTS GRID
────────────────────────────────────────────────────────────────── */
.h3-events-section {
  background: var(--bg);
}

.h3-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 4px;
}

.h3-event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}

.h3-event-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.h3-event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 69, 0, 0.2);
  box-shadow: var(--shadow);
}

.h3-event-card:hover::before {
  transform: scaleX(1);
}

.h3-event-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.h3-event-card:hover .h3-event-icon {
  transform: scale(1.15) rotate(-5deg);
}

.h3-event-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 8px;
  color: var(--text);
}

.h3-event-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.h3-event-tag {
  display: inline-flex;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.2);
  color: var(--fire);
  font-family: 'Oswald', sans-serif;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.h3-event-link {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fire);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.h3-event-link:hover {
  gap: 10px;
}


/* ────────────────────────────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────────────────────────────── */
.h3-cta-banner {
  position: relative;
  background: linear-gradient(160deg, #1a0800 0%, #080808 60%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.h3-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 69, 0, 0.22), transparent 68%);
  pointer-events: none;
  animation: h3-glow-breathe 3s ease-in-out infinite alternate;
}

@keyframes h3-glow-breathe {
  from {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.h3-cta-inner {
  position: relative;
  z-index: 1;
}

.h3-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: .04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
}

.h3-cta-title span {
  color: var(--fire);
}

.h3-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
}

.h3-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ────────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET ≤ 1024px
────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Hero: stack vertically */
  .h3-hero {
    flex-direction: column;
    padding-top: var(--nav-h);
    min-height: 75vh;
  }

  .h3-hero-img-pane {
    flex: 0 0 auto;
    height: 40vh;
    min-height: 280px;
    margin-right: 0;
  }

  .h3-hero-stripe {
    display: none;
  }

  .h3-hero-content-pane {
    padding: 48px 40px;
  }

  .h3-hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
  }

  /* About: stack */
  .h3-about-split {
    grid-template-columns: 1fr;
  }

  .h3-about-img-col {
    min-height: 360px;
  }

  .h3-about-content {
    padding: 56px 40px;
  }

  /* Combo grid */
  .h3-combo-grid {
    grid-template-columns: 1fr;
  }

  /* Events: 2 col */
  .h3-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery: 3 col */
  .h3-gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .h3-gal-lg {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Reviews: 2 col */
  .h3-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Location: stack */
  .h3-location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h3-map-frame {
    height: 300px;
  }

  /* Pillars */
  .h3-pillars {
    grid-template-columns: 1fr 1fr;
  }

}


/* ────────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE ≤ 768px
────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .h3-hero-content-pane {
    padding: 36px 24px 48px;
  }

  .h3-hero-title {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
  }

  .h3-stats {
    gap: 0;
  }

  .h3-stat-num {
    font-size: 1.8rem;
  }

  .h3-about-content {
    padding: 40px 24px;
  }

  .h3-about-badge {
    top: 16px;
    right: 16px;
  }

  .h3-about-quote {
    margin: 0 16px;
    bottom: 16px;
  }

  .h3-pillars {
    grid-template-columns: 1fr;
  }

  .h3-combo-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .h3-combo-row-right {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .h3-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .h3-gal-lg,
  .h3-gal-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .h3-gal-tall {
    grid-row: span 1;
  }

  .h3-reviews-grid {
    grid-template-columns: 1fr;
  }

  .h3-rating-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .h3-rating-summary .btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .h3-events-grid {
    grid-template-columns: 1fr;
  }

  .h3-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .h3-cta-banner {
    padding: 70px 0;
  }

  .h3-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .h3-location-section {
    padding: 60px 0;
  }

  /* Hide track arrows on small screens (touch scroll works) */
  .h3-track-arrow {
    display: none;
  }

  .h3-dish-track {
    padding: 0 16px 12px;
  }

  .h3-dish-card {
    flex: 0 0 280px;
  }

}


/* ────────────────────────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE ≤ 480px
────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .h3-hero-img-pane {
    height: 35vh;
    min-height: 240px;
  }

  .h3-hero-content-pane {
    padding: 28px 20px 40px;
  }

  .h3-hero-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .h3-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .h3-stats {
    flex-direction: column;
    gap: 16px;
  }

  .h3-stat-sep {
    width: 40px;
    height: 1px;
  }

  .h3-scroll-cue {
    display: none;
  }

  .h3-about-img-col {
    min-height: 280px;
  }

  .h3-gallery-mosaic {
    grid-auto-rows: 130px;
  }

  .h3-combo-row-emoji {
    width: 44px;
    height: 44px;
  }

  .h3-dish-card {
    flex: 0 0 85%;
    /* Guaranteed peek */
    margin-right: 12px;
  }

}


/* ────────────────────────────────────────────────────────────────
   LIGHT THEME OVERRIDES
────────────────────────────────────────────────────────────────── */
[data-theme="light"] .h3-hero {
  background: var(--bg);
}

[data-theme="light"] .h3-hero-content-pane::before {
  background: radial-gradient(circle, rgba(255, 69, 0, 0.05), transparent 65%);
}

[data-theme="light"] .h3-map-frame {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .h3-pin-label {
  background: #111;
  color: var(--fire);
}

[data-theme="light"] .h3-cta-banner {
  background: linear-gradient(160deg, #f0e8d8 0%, #e8e0d0 100%);
}

[data-theme="light"] .h3-cta-title {
  color: #111;
}

[data-theme="light"] .h3-cta-sub {
  color: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .h3-cta-glow {
  background: radial-gradient(ellipse, rgba(255, 69, 0, 0.12), transparent 68%);
}

[data-theme="light"] .h3-ticker {
  background: linear-gradient(135deg, var(--fire), var(--ember));
}

[data-theme="light"] .h3-about-split {
  background: var(--bg);
}

[data-theme="light"] .h3-about-content {
  background: var(--bg-alt);
}

[data-theme="light"] .h3-hero-stamp {
  background: var(--fire);
}

[data-theme="light"] .h3-hero-img-pane::after {
  background: linear-gradient(135deg,
      rgba(244, 240, 232, 0.15) 0%,
      rgba(255, 69, 0, 0.04) 60%,
      rgba(244, 240, 232, 0.25) 100%);
}

/* ────────────────────────────────────────────────────────────────
   COMING SOON PAGE
────────────────────────────────────────────────────────────────── */
.cs-main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  display: flex;
  align-items: center;
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, #1a0800 0%, #0a0a0a 70%);
}

.cs-container {
  position: relative;
  z-index: 2;
}

.cs-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  line-height: 1;
  color: white;
  margin: 20px 0;
}

.cs-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cs-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cs-timer-unit {
  background: var(--char);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  min-width: 120px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.cs-timer-unit:hover {
  transform: translateY(-5px);
  border-color: var(--fire);
}

.cs-timer-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--fire);
  line-height: 1;
}

.cs-timer-lbl {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 0.1em;
}

.cs-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto 40px;
  background: var(--char);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.cs-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 25px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

.cs-input:focus {
  outline: none;
}

.cs-btn {
  padding: 15px 35px !important;
  border-radius: 50px !important;
}

.cs-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.cs-soc-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.cs-soc-link:hover {
  color: var(--fire);
}

@media (max-width: 768px) {
  .cs-countdown {
    gap: 12px;
  }

  .cs-timer-unit {
    padding: 15px;
    min-width: 90px;
  }

  .cs-timer-val {
    font-size: 2rem;
  }

  .cs-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }

  .cs-input {
    background: var(--ash);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
  }
}

/* ================================================================
   FUEGO STREET — admin-dashboard.css
   Admin-only supplementary styles (extends dashboard.css)
================================================================ */

/* ── Admin topbar accent ── */
.admin-topbar {
  border-bottom-color: rgba(255, 69, 0, .2);
}

.admin-topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--ember), transparent);
  opacity: .5;
}

.adm-topbar-badge {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}

.adm-live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 69, 0, .08);
  border: 1px solid rgba(255, 69, 0, .2);
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fire);
  white-space: nowrap;
}

/* Admin user avatar styling */
.admin-avatar {
  border-color: rgba(255, 69, 0, .5);
}

.admin-role {
  color: var(--fire) !important;
  font-weight: 600;
}

/* Admin welcome */
.adm-welcome {
  background: linear-gradient(135deg, #0d0800, #0a0600, #0d0d0d);
  border-color: rgba(255, 69, 0, .2);
}

/* ── KPI stat grid (5 col for admin if needed) ── */
.adm-stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ── CHARTS ROW ── */
.adm-charts-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.adm-chart-card {
  margin-bottom: 0;
}

.adm-select {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--text-muted);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  transition: border-color .2s;
}

.adm-select:focus {
  border-color: var(--fire);
}

.adm-select option {
  background: var(--ash);
}

/* Bar chart */
.adm-chart-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
  height: 200px;
  margin-top: 10px;
}

.adm-chart-y-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 28px;
}

.adm-chart-y-labels span {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-align: right;
}

.adm-chart-bars-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.adm-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.adm-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.adm-bar {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  cursor: pointer;
  transition: filter var(--ease);
  background: rgba(255, 255, 255, .04);
}

.adm-bar:hover {
  filter: brightness(1.15);
}

.adm-bar-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, var(--fire), rgba(255, 120, 0, .7));
  transition: height 1s cubic-bezier(.4, 0, .2, 1);
  border-radius: 6px 6px 0 0;
  animation: adm-bar-grow 1.2s cubic-bezier(.4, 0, .2, 1) both;
}

.adm-bar-fill.active-bar {
  background: linear-gradient(to top, var(--gold), var(--ember));
  box-shadow: 0 -4px 20px rgba(255, 184, 0, .3);
}

@keyframes adm-bar-grow {
  from {
    height: 0 !important;
  }

  to {
    height: 100%;
  }
}

/* The parent .adm-bar has style="height: X%" which sets the column height.
   The .adm-bar-fill inside fills 100% of that. */
.adm-bar {
  height: var(--bar-h, 50%);
}

.adm-bar-fill {
  height: 100%;
}

.adm-bar-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.adm-bar-lbl.active-day {
  color: var(--gold);
}

.adm-total-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 6px;
}

.adm-total-label strong {
  color: var(--fire);
}

/* Top dishes chart */
.adm-top-dishes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.adm-dish-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adm-dish-name {
  font-size: .82rem;
  color: var(--text);
  min-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adm-dish-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.adm-dish-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  border-radius: 4px;
  transition: width 1s cubic-bezier(.4, 0, .2, 1);
  animation: adm-bar-grow 1.2s cubic-bezier(.4, 0, .2, 1) both;
}

.adm-dish-pct {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  color: var(--fire);
  min-width: 36px;
  text-align: right;
}

/* ── BOTTOM ROW ── */
.adm-bottom-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.adm-bottom-row .db-card {
  margin-bottom: 0;
}

/* ── CUSTOMER LIST ── */
.adm-customer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adm-customer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.adm-customer-row:last-child {
  border-bottom: none;
}

.adm-cust-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.adm-cust-info {
  flex: 1;
}

.adm-cust-name {
  font-size: .88rem;
  font-weight: 500;
}

.adm-cust-meta {
  font-size: .74rem;
  color: var(--text-muted);
}

.adm-cust-pts {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── OPS GRID ── */
.adm-ops-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.adm-ops-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adm-ops-right .db-card {
  margin-bottom: 0;
}

.adm-map-frame {
  height: 300px;
}

.adm-loc-form {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.adm-loc-form .db-field-input {
  flex: 1;
  min-width: 180px;
}

.adm-loc-form .btn {
  flex-shrink: 0;
}

.adm-update-loc-btn {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fire);
  background: rgba(255, 69, 0, .08);
  border: 1px solid rgba(255, 69, 0, .22);
  border-radius: 50px;
  padding: 5px 14px;
  cursor: pointer;
  transition: var(--ease);
}

.adm-update-loc-btn:hover {
  background: var(--fire);
  color: #fff;
}

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

.adm-ops-stat {
  text-align: center;
  padding: 14px 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.adm-ops-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--fire);
  letter-spacing: .04em;
  line-height: 1;
}

.adm-ops-stat-lbl {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── TAB ROW ── */
.adm-tab-row {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.adm-tab {
  font-family: 'Oswald', sans-serif;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
}

.adm-tab:hover {
  border-color: rgba(255, 69, 0, .25);
  color: var(--text);
}

.adm-tab.active {
  background: rgba(255, 69, 0, .1);
  border-color: rgba(255, 69, 0, .3);
  color: var(--fire);
}

/* ── ORDERS TABLE ── */
.adm-orders-table-wrap {
  overflow-x: auto;
}

.adm-customers-table-wrap {
  overflow-x: auto;
}

.adm-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
  min-width: 640px;
}

.adm-orders-table th {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.adm-orders-table td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.adm-orders-table tbody tr:last-child td {
  border-bottom: none;
}

.adm-orders-table tbody tr:hover td {
  background: rgba(255, 255, 255, .02);
}

.adm-order-id {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--fire);
}

.adm-action-btn {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 184, 0, .1);
  border: 1px solid rgba(255, 184, 0, .2);
  color: var(--gold);
  cursor: pointer;
  transition: var(--ease);
}

.adm-action-btn:hover {
  background: var(--gold);
  color: #111;
}

.adm-complete-btn {
  background: rgba(74, 222, 128, .1);
  border-color: rgba(74, 222, 128, .2);
  color: #4ade80;
}

.adm-complete-btn:hover {
  background: #4ade80;
  color: #111;
}

/* ── SCHEDULE MANAGER ── */
.adm-sched-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  align-items: start;
}

.adm-sched-form-card {
  margin-bottom: 0;
}

.adm-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.adm-sched-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adm-sched-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--ease);
}

.adm-sched-row:hover {
  border-color: rgba(255, 69, 0, .2);
}

.active-sched-row {
  border-color: rgba(255, 69, 0, .25);
  background: rgba(255, 69, 0, .03);
}

.adm-sched-day-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--fire);
  min-width: 36px;
  text-align: center;
  letter-spacing: .06em;
}

.adm-sched-row-info {
  flex: 1;
}

.adm-sched-row-name {
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.adm-sched-row-time {
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.adm-sched-edit-btn,
.adm-sched-del-btn {
  font-size: .9rem;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--ease);
  flex-shrink: 0;
}

.adm-sched-edit-btn:hover {
  background: rgba(255, 184, 0, .12);
  border-color: rgba(255, 184, 0, .25);
}

.adm-sched-del-btn:hover {
  background: rgba(255, 69, 0, .1);
  border-color: rgba(255, 69, 0, .25);
}

/* ── MENU MANAGER ── */
.adm-menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adm-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}

.adm-menu-item:last-child {
  border-bottom: none;
}

.adm-menu-item:hover {
  background: rgba(255, 255, 255, .02);
  border-radius: var(--radius-sm);
}

.adm-menu-item-img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

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

.adm-menu-item-img span {
  display: none;
}

.adm-menu-item-body {
  flex: 1;
}

.adm-menu-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.adm-menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--fire);
  letter-spacing: .04em;
}

.adm-menu-item-sales {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

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

/* ── CUSTOMER SEARCH ── */
.adm-customer-search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.adm-cust-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.adm-cust-avatar-sm {
  font-size: 1.1rem;
}

.adm-tier-badge {
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

.adm-tier-badge.platinum {
  background: rgba(100, 200, 255, .1);
  color: #60d0ff;
  border: 1px solid rgba(100, 200, 255, .2);
}

.adm-tier-badge.gold {
  background: rgba(255, 184, 0, .1);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, .2);
}

.adm-tier-badge.flame {
  background: rgba(255, 69, 0, .1);
  color: var(--fire);
  border: 1px solid rgba(255, 69, 0, .2);
}

/* ── VIP MGMT GRID ── */
.adm-vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.adm-vip-grid .db-card {
  margin-bottom: 0;
}

/* ── ADMIN SETTINGS ── */
.admin-sett-avatar {
  border-color: rgba(255, 69, 0, .5);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .adm-charts-row {
    grid-template-columns: 1fr;
  }

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

  .adm-ops-grid {
    grid-template-columns: 1fr;
  }

  .adm-sched-grid {
    grid-template-columns: 1fr;
  }

  .adm-vip-grid {
    grid-template-columns: 1fr;
  }

  .adm-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide decorative admin topbar extras to save space */
  .adm-live-pill {
    display: none;
  }

  .adm-topbar-badge {
    display: none;
  }

  /* Admin topbar line */
  .admin-topbar::after {
    content: none;
  }

  /* Charts */
  .adm-chart-wrap {
    height: 150px;
  }

  .adm-charts-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Dish chart */
  .adm-dish-name {
    min-width: 90px;
    font-size: .74rem;
  }

  /* Ops stats */
  .adm-ops-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .adm-ops-stat-num {
    font-size: 1.4rem;
  }

  /* Schedule form */
  .adm-time-row {
    grid-template-columns: 1fr;
  }

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

  /* Orders table: enable horizontal scroll */
  .adm-orders-table-wrap,
  .adm-customers-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }

  .adm-orders-table {
    min-width: 580px;
    font-size: .8rem;
  }

  .adm-orders-table th,
  .adm-orders-table td {
    padding: 10px 8px;
  }

  /* Tab row: wrap on mobile */
  .adm-tab-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .adm-tab {
    font-size: .7rem;
    padding: 6px 12px;
  }

  /* Bottom row */
  .adm-bottom-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* VIP grid */
  .adm-vip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Ops grid */
  .adm-ops-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .adm-map-frame {
    height: 250px;
  }

  /* Location form stack */
  .adm-loc-form {
    flex-direction: column;
    gap: 10px;
  }

  .adm-loc-form .db-field-input {
    min-width: 100%;
  }

  /* Customer search row */
  .adm-customer-search-row {
    flex-direction: column;
    gap: 10px;
  }

  .adm-customer-search-row .db-field-input {
    max-width: 100% !important;
  }

  /* Menu item: tighten */
  .adm-menu-item {
    gap: 10px;
    padding: 12px 0;
  }

  .adm-menu-item-img {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

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

  /* Schedule list rows */
  .adm-sched-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .adm-ops-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .adm-ops-stat {
    padding: 12px 8px;
  }

  .adm-ops-stat-num {
    font-size: 1.3rem;
  }

  .adm-ops-stat-lbl {
    font-size: .66rem;
  }

  .adm-vip-grid {
    grid-template-columns: 1fr;
  }

  .adm-customer-search-row {
    flex-direction: column;
  }

  .adm-customer-search-row .db-field-input {
    max-width: 100% !important;
  }

  .adm-chart-wrap {
    height: 130px;
  }

  .adm-bar-lbl {
    font-size: .56rem;
  }

  .adm-orders-table {
    min-width: 520px;
    font-size: .76rem;
  }

  .adm-stat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  .adm-menu-item-actions {
    gap: 6px;
  }
}

/* Extra small: 368–390px */
@media (max-width: 390px) {
  .adm-ops-stats {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .adm-chart-wrap {
    height: 110px;
  }

  .adm-tab {
    font-size: .65rem;
    padding: 5px 10px;
  }
}

/* Light theme */
[data-theme="light"] .adm-welcome {
  background: linear-gradient(135deg, #fdf0e8, #f8e8d8, #f4f0e8);
}

[data-theme="light"] .admin-topbar::after {
  opacity: .3;
}

/* ================================================================
   FUEGO STREET — dashboard.css
   Shared styles for user-dashboard.html and admin-dashboard.html
   Uses same design tokens as style.css (--fire, --ember, --gold,
   --bg, --text, --radius, --ease, fonts: Bebas Neue, Oswald, DM Sans)
   Layout: fixed sidebar (260px) + topbar (60px) + scrollable content
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── DESIGN TOKENS (mirrors style.css) ─────────────────────── */
:root {
  --fire: #FF4500;
  --ember: #FF7A00;
  --gold: #FFB800;

  --bg: #111111;
  --bg-alt: #0a0a0a;
  --char: #161616;
  --ash: #1e1e1e;
  --steel: #2c2c2c;
  --text: #f0ece4;
  --text-muted: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --radius: 16px;
  --radius-sm: 8px;
  --ease: 0.28s cubic-bezier(.4, 0, .2, 1);
  --transition: 0.28s cubic-bezier(.4, 0, .2, 1);

  --sidebar-w: 260px;
  --topbar-h: 64px;
}

[data-theme="light"] {
  --bg: #f4f0e8;
  --bg-alt: #ece7de;
  --char: #e8e3da;
  --ash: #ddd8cf;
  --steel: #cbc6bc;
  --text: #181818;
  --text-muted: #666666;
  --border: rgba(0, 0, 0, 0.09);
  --card-bg: rgba(0, 0, 0, 0.04);
  --card-hover: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--ease), color var(--ease);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ─── DASHBOARD LAYOUT ───────────────────────────────────────── */
.db-body {
  display: flex;
  min-height: 100vh;
  background: var(--bg-alt);
  /* NOTE: no overflow-x here — it breaks position:sticky on .db-topbar */
}

/* ── SIDEBAR ── */
.db-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.db-sidebar::-webkit-scrollbar {
  width: 4px;
}

.db-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.db-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

[dir="rtl"] .db-sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid var(--border);
  transform: none;
}

/* Sidebar head */
.db-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.db-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: .06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.db-logo-fire {
  color: var(--fire);
}

.db-sidebar-close {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .9rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  flex-shrink: 0;
}

.db-sidebar-close:hover {
  color: var(--fire);
  border-color: var(--fire);
}

/* User info block */
.db-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.db-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid rgba(255, 69, 0, .3);
}

.db-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-user-avatar span {
  display: none;
}

.db-user-meta {
  flex: 1;
  min-width: 0;
}

.db-user-name {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-user-role {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.db-vip-badge {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #111;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Points pill */
.db-points-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 16px;
  padding: 10px 14px;
  background: rgba(255, 69, 0, .06);
  border: 1px solid rgba(255, 69, 0, .15);
  border-radius: var(--radius-sm);
}

.db-points-fire {
  font-size: 1rem;
}

.db-points-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--fire);
  letter-spacing: .04em;
}

.db-points-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav list */
.db-nav {
  padding: 8px 10px;
  flex: 1;
}

.db-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
  position: relative;
  font-size: .88rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.db-nav-item:hover {
  background: var(--card-hover);
  color: var(--text);
}

.db-nav-item.active {
  background: rgba(255, 69, 0, .1);
  color: var(--fire);
  border: 1px solid rgba(255, 69, 0, .15);
}

.db-nav-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.db-nav-lbl {
  flex: 1;
}

.db-nav-badge {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .06em;
  background: rgba(255, 69, 0, .15);
  color: var(--fire);
  padding: 2px 7px;
  border-radius: 50px;
  border: 1px solid rgba(255, 69, 0, .2);
}

.db-nav-badge.live-ping {
  background: rgba(255, 69, 0, .2);
  color: var(--fire);
  animation: db-live-flash 2s ease-in-out infinite;
}

@keyframes db-live-flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Sidebar footer links */
.db-sidebar-footer {
  padding: 14px 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.db-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: var(--text-muted);
  transition: var(--ease);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.db-sidebar-link:hover {
  color: var(--fire);
  border-color: rgba(255, 69, 0, .2);
  background: rgba(255, 69, 0, .05);
}

/* Overlay for mobile */
.db-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  transition: opacity var(--ease);
}

.db-overlay.visible {
  opacity: 1;
}

/* ── MAIN WRAPPER ── */
.db-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  width: calc(100% - var(--sidebar-w));
  transition: margin-left var(--ease), width var(--ease);
  /* NOTE: do NOT set overflow here — it breaks position:sticky on .db-topbar */
}

[dir="rtl"] .db-main {
  margin-left: 0;
  margin-right: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
}

/* ── TOPBAR ── */
.db-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--topbar-h);
  min-height: var(--topbar-h);
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--ease);
  flex-shrink: 0;
  box-sizing: border-box;
}

.db-topbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.db-topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.db-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.db-topbar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── TOPBAR LOGO (visible on mobile, hidden on desktop) ── */
.db-topbar-logo {
  display: none;
  align-items: center;
  gap: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── TOPBAR SECTION TITLE: hidden on mobile, shown on desktop ── */
/* (toggled via responsive rules below) */

/* Hamburger for mobile */
.db-hamburger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--ease);
}

.db-hamburger:hover {
  background: rgba(255, 69, 0, .1);
  border-color: rgba(255, 69, 0, .3);
}

.db-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}

.db-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.db-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.db-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Topbar icon buttons */
.db-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  font-size: .88rem;
  color: var(--text);
  position: relative;
  flex-shrink: 0;
}

.db-icon-btn:hover {
  background: var(--ash);
  border-color: rgba(255, 69, 0, .3);
}

.rtl-btn {
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.db-notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--fire);
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: db-notif-pulse 2s ease-in-out infinite;
}

@keyframes db-notif-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* ── PROFILE DROPDOWN ── */
.db-profile-wrap {
  position: relative;
}

.db-profile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 5px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--ease);
  max-width: 200px;
}

.db-profile-btn:hover {
  border-color: rgba(255, 69, 0, .3);
  background: var(--card-hover);
}

.db-profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.db-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-profile-avatar span {
  display: none;
}

.db-profile-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.db-profile-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.db-profile-role {
  font-size: .68rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.db-profile-caret {
  font-size: .7rem;
  color: var(--text-muted);
  transition: transform var(--ease);
}

.db-profile-btn[aria-expanded="true"] .db-profile-caret {
  transform: rotate(180deg);
}

/* Profile dropdown menu */
.db-profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

[dir="rtl"] .db-profile-dropdown {
  right: auto;
  left: 0;
}

.db-profile-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.db-profile-drop-head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border);
}

.db-pd-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.db-pd-email {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.db-pd-list {
  padding: 6px 8px;
}

.db-pd-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  color: var(--text-muted);
  transition: var(--ease);
  cursor: pointer;
}

.db-pd-link:hover {
  background: var(--card-hover);
  color: var(--text);
}

.db-pd-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.db-logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  font-size: .84rem;
  color: var(--fire);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--ease);
  border-radius: 0 0 var(--radius) var(--radius);
}

.db-logout-btn:hover {
  background: rgba(255, 69, 0, .08);
}


/* ── CONTENT AREA ── */
.db-content {
  flex: 1;
  padding: 28px 28px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* ── SECTIONS ── */
.db-section {
  display: none;
  animation: db-section-in .3s ease;
}

.db-section.active {
  display: block;
}

@keyframes db-section-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.db-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 14px;
  flex-wrap: wrap;
}

.db-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--text);
}

.db-section-sub {
  font-family: 'Oswald', sans-serif;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── WELCOME BANNER ── */
.db-welcome-banner {
  position: relative;
  background: linear-gradient(135deg, #1a0800 0%, #100800 60%, #0d0d0d 100%);
  border: 1px solid rgba(255, 69, 0, .15);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.db-welcome-glow {
  position: absolute;
  top: -40%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 69, 0, .12), transparent 65%);
  pointer-events: none;
}

.db-welcome-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 6px;
}

.db-welcome-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.db-welcome-title span {
  color: var(--fire);
}

.db-welcome-sub {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.db-welcome-sub strong,
.live-text {
  color: var(--fire);
}

.db-welcome-truck {
  font-size: 5rem;
  opacity: .15;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: db-truck-float 4s ease-in-out infinite alternate;
}

@keyframes db-truck-float {
  from {
    transform: translateY(-50%) translateX(0);
  }

  to {
    transform: translateY(-54%) translateX(4px);
  }
}

/* ── STAT GRID ── */
.db-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.db-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--ease);
  animation: db-card-in .4s ease both;
}

.db-stat-card:hover {
  border-color: rgba(255, 69, 0, .2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.db-stat-card-fire {
  border-color: rgba(255, 69, 0, .18);
  background: rgba(255, 69, 0, .03);
}

.db-stat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.db-stat-body {
  flex: 1;
}

.db-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--text);
}

.db-stat-lbl {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.db-stat-trend {
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
  align-self: flex-start;
}

.db-stat-trend.up {
  background: rgba(74, 222, 128, .1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, .2);
}

.db-stat-trend.down {
  background: rgba(255, 69, 0, .1);
  color: var(--fire);
}

.db-stat-trend.neutral {
  background: var(--card-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ── CARDS ── */
.db-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
  animation: db-card-in .4s ease both;
  margin-top: 10px;
}

@keyframes db-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.db-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}

.db-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text);
}

.db-card-action {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fire);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  transition: opacity var(--ease);
}

.db-card-action:hover {
  opacity: .7;
}

/* ── OVERVIEW GRID ── */
.db-overview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.db-overview-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.db-overview-right .db-card {
  margin-bottom: 0;
}

/* ── LIVE MAP ── */
.db-map-frame,
.db-live-map-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--steel);
}

.db-live-map-frame {
  height: 350px;
}

.db-map-frame {
  height: 360px;
}

.db-live-map-frame img,
.db-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-live-map-overlay,
.db-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.db-map-overlay {
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .18);
}

.db-live-info-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .76rem;
  color: rgba(255, 255, 255, .85);
  width: 100%;
}

/* Truck/location pin */
.db-live-pin,
.db-truck-pin {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.db-pin-icon,
.db-truck-pin-inner {
  width: 40px;
  height: 40px;
  background: var(--fire);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255, 69, 0, .6);
  animation: db-pin-bob 2.5s ease-in-out infinite;
}

@keyframes db-pin-bob {

  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-5px);
  }
}

.db-pin-label {
  margin-top: 10px;
  background: #fff;
  color: var(--fire);
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  white-space: nowrap;
}

.db-pin-pulse,
.db-truck-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 69, 0, .4);
  border-radius: 50%;
  animation: db-pin-pulse 2s ease-in-out infinite;
}

.db-truck-pin-ring.db-ring-2 {
  width: 90px;
  height: 90px;
  animation-delay: .5s;
}

@keyframes db-pin-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Map info card overlay */
.db-map-info-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 69, 0, .2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  z-index: 3;
}

.db-mic-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 4px;
}

.db-mic-name {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}

.db-mic-loc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 1px;
}

.db-mic-dist {
  font-size: .75rem;
  color: var(--fire);
  margin-top: 4px;
}

.db-user-pin {
  position: absolute;
  top: 65%;
  left: 65%;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .06em;
  background: rgba(8, 8, 8, .85);
  color: rgba(255, 255, 255, .85);
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  white-space: nowrap;
}

/* ── LIVE STATUS BADGE ── */
.db-live-status-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 69, 0, .1);
  border: 1px solid rgba(255, 69, 0, .25);
  color: var(--fire);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── LIVE DOT ANIMATION ── */
.db-live-dot-anim {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--fire);
  border-radius: 50%;
  animation: db-live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes db-live-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: .5;
  }
}

/* ── ORDERS LIST ── */
.db-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.db-order-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}

.db-order-row:last-child {
  border-bottom: none;
}

.db-order-row:hover {
  background: rgba(255, 255, 255, .02);
  border-radius: var(--radius-sm);
}

.db-order-icon {
  width: 42px;
  height: 42px;
  background: var(--ash);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.db-order-info {
  flex: 1;
  min-width: 0;
}

.db-order-name {
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-order-date {
  font-size: .74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.db-order-right {
  text-align: right;
  flex-shrink: 0;
}

.db-order-price {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.db-order-status {
  font-family: 'Oswald', sans-serif;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 3px;
  display: inline-block;
}

.db-order-status.completed {
  background: rgba(74, 222, 128, .1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, .2);
}

.db-order-status.in-progress {
  background: rgba(255, 184, 0, .1);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, .2);
}

/* ── TOGGLE SWITCH ── */
.db-toggle {
  display: inline-flex;
  cursor: pointer;
}

.db-toggle input {
  display: none;
}

.db-toggle-track {
  width: 42px;
  height: 22px;
  background: var(--steel);
  border-radius: 11px;
  position: relative;
  transition: background var(--ease);
  border: 1px solid var(--border);
}

.db-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform var(--ease), background var(--ease);
}

.db-toggle input:checked+.db-toggle-track {
  background: rgba(255, 69, 0, .25);
  border-color: rgba(255, 69, 0, .4);
}

.db-toggle input:checked+.db-toggle-track::after {
  transform: translateX(20px);
  background: var(--fire);
}

/* ── TOGGLE ROW ── */
.db-notify-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-muted);
}

.db-notify-toggle-row:last-child {
  border-bottom: none;
}

/* ── TODAY STOP CARD ── */
.db-today-stop-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.db-stop-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.db-stop-time {
  color: var(--fire);
  font-size: .88rem;
}

.db-stop-address {
  font-size: .8rem;
  color: var(--text-muted);
}

.db-stop-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.db-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .66rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.db-tag.active {
  background: rgba(74, 222, 128, .1);
  color: #4ade80;
  border-color: rgba(74, 222, 128, .25);
}

/* ── QUICK ACTIONS ── */
.db-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.db-qa-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
}

.db-qa-btn:hover {
  background: rgba(255, 69, 0, .08);
  border-color: rgba(255, 69, 0, .25);
  color: var(--fire);
  transform: translateY(-2px);
}

.db-qa-icon {
  font-size: 1.5rem;
}

/* ── TRACKER LAYOUT ── */
.db-tracker-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.db-tracker-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-tracker-info .db-card {
  margin-bottom: 0;
}

.db-lc-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.db-lc-addr {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.db-lc-time {
  font-size: .84rem;
  color: var(--text);
  margin-bottom: 14px;
}

.db-distance-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--fire);
  line-height: 1;
  letter-spacing: .04em;
}

.db-distance-val span {
  font-size: 1.5rem;
}

.db-distance-lbl {
  font-size: .78rem;
  color: var(--text-muted);
}

.db-ns-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.db-ns-time {
  font-size: .82rem;
  color: var(--fire);
  margin-bottom: 3px;
}

.db-ns-addr {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── SCHEDULE GRID ── */
.db-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.db-sched-day {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--ease);
}

.db-sched-day:hover {
  border-color: rgba(255, 69, 0, .2);
  transform: translateY(-2px);
}

.db-sched-day.today {
  border-color: rgba(255, 69, 0, .3);
  background: rgba(255, 69, 0, .03);
}

.db-sched-day.off {
  opacity: .6;
}

.db-sched-day-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.db-sched-dow {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.db-sched-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
}

.db-sched-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--fire);
  color: #fff;
  padding: 2px 7px;
  border-radius: 50px;
}

.db-sched-tag.off-tag {
  background: var(--steel);
  color: var(--text-muted);
}

.db-sched-stop {
  padding: 10px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

.db-sched-stop.active-stop {
  border-color: rgba(255, 69, 0, .3);
  background: rgba(255, 69, 0, .05);
}

.db-sched-stop:last-child {
  margin-bottom: 0;
}

.db-sched-stop-name {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.db-sched-stop-loc {
  font-size: .84rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.db-sched-stop-time {
  font-size: .74rem;
  color: var(--text-muted);
}

.db-sched-off-msg {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  padding: 20px 0;
}

.db-sched-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: var(--text-muted);
  background: rgba(255, 69, 0, .04);
  border-color: rgba(255, 69, 0, .15);
}

/* ── VIP TIER CARD ── */
.db-vip-tier-card {
  background: linear-gradient(135deg, #1a0800, #0d0d0d);
  border: 1px solid rgba(255, 184, 0, .2);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.db-vip-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}

.db-vip-tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.db-vip-tier-since {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.db-vip-points-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.db-vip-pts-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}

.db-vip-pts-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.db-vip-progress-wrap {
  max-width: 300px;
}

.db-vip-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.db-vip-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 3px;
  transition: width .8s ease;
}

.db-vip-progress-lbl {
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
}

.db-vip-progress-lbl strong {
  color: var(--gold);
}

/* Membership card visual */
.db-vip-card-visual {
  width: 240px;
  height: 148px;
  background: linear-gradient(135deg, rgba(255, 184, 0, .15), rgba(255, 69, 0, .1), rgba(20, 10, 0, 1));
  border: 1px solid rgba(255, 184, 0, .3);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
  flex-shrink: 0;
}

.db-vc-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--gold);
}

.db-vc-name {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .06em;
}

.db-vc-tier {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.db-vc-num {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
}

/* ── TIERS COMPARISON ── */
.db-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.db-tier-col {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
}

.db-tier-col.current-tier {
  border-color: rgba(255, 184, 0, .3);
  background: rgba(255, 184, 0, .04);
}

.db-tier-col.locked-tier {
  opacity: .55;
}

.db-tier-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.db-tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.db-tier-pts {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.db-tier-current-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #111;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  display: inline-block;
}

.db-tier-perks {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.db-tier-perks li {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── EARN GRID ── */
.db-earn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.db-earn-item {
  text-align: center;
  padding: 18px 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--ease);
}

.db-earn-item:hover {
  border-color: rgba(255, 69, 0, .2);
  transform: translateY(-2px);
}

.db-earn-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.db-earn-desc {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.db-earn-pts {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--fire);
  letter-spacing: .04em;
}

/* ── REWARDS GRID ── */
.db-rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.db-reward-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--ease);
}

.db-reward-card.available {
  border-color: rgba(255, 69, 0, .15);
}

.db-reward-card.available:hover {
  border-color: rgba(255, 69, 0, .35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.db-reward-card.locked {
  opacity: .55;
}

.db-reward-icon {
  font-size: 2.4rem;
}

.db-reward-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.db-reward-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.db-reward-cost {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: .04em;
}

.db-reward-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ── NOTIFICATIONS ── */
.db-notif-list {
  padding: 0;
}

.db-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--ease);
}

.db-notif-item:last-child {
  border-bottom: none;
}

.db-notif-item:hover {
  background: rgba(255, 255, 255, .02);
  border-radius: var(--radius-sm);
}

.db-notif-item.unread {
  background: rgba(255, 69, 0, .02);
}

.db-notif-dot {
  position: absolute;
  top: 20px;
  left: -10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire);
}

.db-notif-icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  background: var(--ash);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.db-notif-body {
  flex: 1;
}

.db-notif-title {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.db-notif-text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.db-notif-time {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ── SETTINGS ── */
.db-settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.db-settings-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.db-settings-right .db-card {
  margin-bottom: 0;
}

.db-settings-card {
  margin-bottom: 0;
}

.db-settings-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.db-settings-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid rgba(255, 69, 0, .3);
  flex-shrink: 0;
}

.db-settings-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-settings-avatar span {
  display: none;
}

/* ── FIELD INPUTS ── */
.db-field-group {
  margin-bottom: 14px;
}

.db-field-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.db-field-input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.db-field-input:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, .1);
}

.db-field-input::placeholder {
  color: var(--text-muted);
  opacity: .6;
}

select.db-field-input option {
  background: var(--ash);
  color: var(--text);
}

textarea.db-field-input {
  resize: vertical;
  min-height: 90px;
}

/* ── DANGER CARD ── */
.db-danger-card {
  border-color: rgba(255, 69, 0, .15);
}

.db-danger-btn {
  background: rgba(255, 69, 0, .1);
  border: 1px solid rgba(255, 69, 0, .25);
  color: var(--fire);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--ease);
}

.db-danger-btn:hover {
  background: var(--fire);
  color: #fff;
}

/* ── BUTTONS (same as main style.css) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 69, 0, .35);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 69, 0, .5);
}

.btn-outline {
  border: 2px solid var(--fire);
  color: var(--fire);
  background: transparent;
}

.btn-outline:hover {
  background: var(--fire);
  color: #fff;
  transform: translateY(-2px);
}

/* ── LOGOUT MODAL ── */
.db-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.db-modal-overlay.open {
  display: flex;
  animation: db-modal-in .25s ease;
}

@keyframes db-modal-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.db-modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  animation: db-modal-slide .3s ease;
}

@keyframes db-modal-slide {
  from {
    transform: translateY(-20px) scale(.96);
  }

  to {
    transform: none;
  }
}

.db-modal-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

.db-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.db-modal-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.db-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ── TOAST ── */
.db-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  max-width: 320px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

.db-toast.show {
  transform: none;
  opacity: 1;
}

[dir="rtl"] .db-toast {
  right: auto;
  left: 24px;
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP ≥ 1200px
════════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  :root {
    --sidebar-w: 270px;
  }

  .db-content {
    padding: 32px 36px 48px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  :root {
    --sidebar-w: 240px;
  }

  .db-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-overview-grid {
    grid-template-columns: 1fr;
  }

  .db-tracker-layout {
    grid-template-columns: 1fr;
  }

  .db-tiers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .db-rewards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-earn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-settings-grid {
    grid-template-columns: 1fr;
  }

  .db-vip-tier-card {
    grid-template-columns: 1fr;
  }

  .db-vip-card-visual {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
   Sidebar goes off-canvas. Topbar becomes sticky full-width bar.
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Sidebar: off-canvas drawer ── */
  .db-sidebar {
    transform: translateX(-100%);
    box-shadow: none;
    width: 280px;
    z-index: 300;
  }

  [dir="rtl"] .db-sidebar {
    transform: translateX(100%);
    left: auto;
    right: 0;
  }

  .db-sidebar.open {
    transform: translateX(0);
    box-shadow: 8px 0 48px rgba(0, 0, 0, .7);
  }

  [dir="rtl"] .db-sidebar.open {
    transform: translateX(0);
    box-shadow: -8px 0 48px rgba(0, 0, 0, .7);
  }

  .db-sidebar-close {
    display: flex;
  }

  /* ── Overlay ── */
  .db-overlay {
    display: block;
    pointer-events: none;
    z-index: 299;
  }

  .db-overlay.visible {
    pointer-events: auto;
  }

  /* ── Show mobile logo, hide desktop section title ── */
  .db-topbar-logo {
    display: flex;
  }

  .db-topbar-title {
    display: none;
  }

  /* ── Main wrapper: no sidebar margin ── */
  .db-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    /* NOTE: no overflow here — would break sticky topbar */
  }

  [dir="rtl"] .db-main {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* ── Topbar: sticky, full-width, properly spaced ── */
  .db-topbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 0 12px 0 10px;
    gap: 8px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* ── Topbar left: hamburger + logo/title ── */
  .db-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  /* Show hamburger on mobile */
  .db-hamburger {
    display: flex !important;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  /* Logo in topbar (mobile-only logo injected via CSS content) */
  .db-topbar-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: .06em;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
  }

  .db-topbar-logo .db-logo-fire {
    color: var(--fire);
  }

  .db-topbar-title {
    font-size: .82rem;
    letter-spacing: .08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: block;
  }

  /* ── Topbar right: icon buttons ── */
  .db-topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  /* Slightly smaller icon buttons on mobile */
  .db-icon-btn {
    width: 34px;
    height: 34px;
    font-size: .8rem;
  }

  /* RTL button: show on mobile too (was hidden in old code) */
  .db-topbar-right .rtl-btn {
    display: flex;
    font-size: .58rem;
    width: 34px;
    height: 34px;
  }

  /* Profile button: compact avatar-only on mobile */
  .db-profile-btn {
    padding: 3px;
    border-radius: 50%;
    gap: 0;
  }

  .db-profile-info {
    display: none;
  }

  .db-profile-caret {
    display: none;
  }

  .db-profile-avatar {
    width: 30px;
    height: 30px;
  }

  /* Profile dropdown: full-width on mobile */
  .db-profile-dropdown {
    position: fixed;
    top: 56px;
    right: 8px;
    left: 8px;
    min-width: unset;
    width: calc(100vw - 16px);
    z-index: 500;
    border-radius: var(--radius);
  }

  [dir="rtl"] .db-profile-dropdown {
    right: 8px;
    left: 8px;
  }

  /* ── Content area ── */
  .db-content {
    flex: 1;
    padding: 16px 14px 32px;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* ── Sections ── */
  .db-section-head {
    margin-bottom: 18px;
    gap: 10px;
  }

  .db-section-title {
    font-size: 1.7rem;
  }

  /* ── Welcome banner ── */
  .db-welcome-banner {
    padding: 20px 18px;
    margin-bottom: 18px;
    border-radius: 12px;
  }

  .db-welcome-title {
    font-size: 1.7rem;
  }

  .db-welcome-truck {
    font-size: 3rem;
    right: 12px;
    opacity: .1;
  }

  /* ── Stat grid ── */
  .db-stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }

  .db-stat-card {
    padding: 14px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .db-stat-icon {
    font-size: 1.3rem;
  }

  .db-stat-num {
    font-size: 1.55rem;
  }

  .db-stat-lbl {
    font-size: .7rem;
  }

  .db-stat-trend {
    font-size: .58rem;
    padding: 2px 6px;
  }

  /* ── Cards ── */
  .db-card {
    border-radius: 12px;
  }

  /* ── Schedule grid ── */
  .db-schedule-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* ── Rewards ── */
  .db-rewards-grid {
    grid-template-columns: 1fr;
  }

  .db-earn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── VIP ── */
  .db-tiers-grid {
    grid-template-columns: 1fr;
  }

  .db-vip-tier-card {
    padding: 20px 16px;
  }

  .db-vip-pts-big {
    font-size: 2.2rem;
  }

  /* ── Quick actions ── */
  .db-qa-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* ── Map ── */
  .db-map-frame {
    height: 240px;
  }

  /* ── Tracker ── */
  .db-tracker-layout {
    grid-template-columns: 1fr;
  }

  /* ── Overview grid ── */
  .db-overview-grid {
    grid-template-columns: 1fr;
  }

  /* ── Toast ── */
  .db-toast {
    right: 10px;
    left: 10px;
    bottom: 16px;
    max-width: 100%;
  }

  [dir="rtl"] .db-toast {
    right: 10px;
    left: 10px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤ 480px
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .db-topbar {
    padding: 0 10px 0 8px;
    height: 52px;
    min-height: 52px;
    gap: 6px;
  }

  .db-hamburger {
    width: 34px;
    height: 34px;
  }

  .db-icon-btn {
    width: 32px;
    height: 32px;
    font-size: .75rem;
  }

  .db-profile-avatar {
    width: 28px;
    height: 28px;
  }

  .db-profile-dropdown {
    top: 52px;
  }

  .db-content {
    padding: 14px 12px 28px;
  }

  .db-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .db-stat-card {
    padding: 12px 10px;
    gap: 8px;
  }

  .db-stat-icon {
    font-size: 1.15rem;
  }

  .db-stat-num {
    font-size: 1.35rem;
  }

  .db-stat-trend {
    display: none;
  }

  .db-welcome-banner {
    padding: 16px 14px;
    margin-bottom: 14px;
  }

  .db-welcome-title {
    font-size: 1.45rem;
  }

  .db-welcome-truck {
    display: none;
  }

  .db-welcome-eyebrow {
    font-size: .66rem;
  }

  .db-welcome-sub {
    font-size: .8rem;
  }

  .db-section-title {
    font-size: 1.5rem;
  }

  .db-section-head {
    margin-bottom: 14px;
  }

  .db-schedule-grid {
    grid-template-columns: 1fr;
  }

  .db-earn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .db-modal {
    padding: 24px 16px;
    margin: 0 10px;
  }

  .db-tracker-layout {
    grid-template-columns: 1fr;
  }

  .db-map-frame {
    height: 220px;
  }

  .db-topbar-title {
    max-width: 90px;
    font-size: .76rem;
  }

  /* hide RTL button on very small screens to save space */
  .db-topbar-right .rtl-btn {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL ≤ 390px  (368px–390px edge case)
════════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {

  .db-topbar {
    padding: 0 8px;
    gap: 4px;
  }

  .db-icon-btn {
    width: 30px;
    height: 30px;
    font-size: .7rem;
  }

  .db-hamburger {
    width: 30px;
    height: 30px;
  }

  .db-topbar-title {
    max-width: 75px;
    font-size: .72rem;
  }

  .db-stat-grid {
    gap: 6px;
  }

  .db-stat-card {
    padding: 10px 8px;
    gap: 6px;
  }

  .db-stat-num {
    font-size: 1.25rem;
  }

  .db-content {
    padding: 12px 10px 24px;
  }

  .db-card-head {
    padding: 14px 14px 10px;
  }

  .db-profile-dropdown {
    right: 4px;
    left: 4px;
    width: calc(100vw - 8px);
  }
}

/* ── Light theme fixes ── */
[data-theme="light"] .db-welcome-banner {
  background: linear-gradient(135deg, #fdf0e8, #f8e8d8);
  border-color: rgba(255, 69, 0, .2);
}

[data-theme="light"] .db-welcome-sub {
  color: rgba(0, 0, 0, .5);
}

[data-theme="light"] .db-vip-tier-card {
  background: linear-gradient(135deg, #fdecd8, #f8e8d0);
}

[data-theme="light"] .db-vc-logo,
[data-theme="light"] .db-vc-tier {
  color: var(--fire);
}

[data-theme="light"] .db-profile-dropdown {
  background: #fff;
}

[data-theme="light"] .db-modal {
  background: #fff;
}

[data-theme="light"] .db-toast {
  background: #fff;
}

[data-theme="light"] .db-pin-label {
  background: #111;
}

[data-theme="light"] .db-map-info-card {
  background: rgba(250, 248, 245, .95);
}

[data-theme="light"] .db-mic-name {
  color: #111;
}

/* ================================================================
   FUEGO STREET — auth.css
   Styles for login.html and signup.html
   Unique class prefix: fauth-
   Fonts: Bebas Neue (display) · Oswald (labels) · DM Sans (body)
   ✓ Dark / Light theme   ✓ RTL layout
   ✓ Full responsive (tablet 768px · mobile 480px)
   ✓ Fire / ember / gold palette matching main website
   ✓ Animated ember particles · ambient glow · background grid
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --fauth-fire: #FF4500;
  --fauth-ember: #FF7A00;
  --fauth-gold: #FFB800;
  --fauth-red: #e03000;

  --fauth-bg: #0a0a0a;
  --fauth-bg-alt: #111111;
  --fauth-card-bg: rgba(18, 18, 18, 0.85);
  --fauth-card-bdr: rgba(255, 255, 255, 0.08);
  --fauth-input-bg: rgba(255, 255, 255, 0.04);
  --fauth-input-bdr: rgba(255, 255, 255, 0.1);
  --fauth-input-focus: rgba(255, 69, 0, 0.5);

  --fauth-text: #f0ece4;
  --fauth-text-muted: #888888;
  --fauth-text-dim: #666666;

  --fauth-radius: 24px;
  --fauth-radius-sm: 12px;
  --fauth-radius-xs: 8px;
  --fauth-ease: 0.3s cubic-bezier(.4, 0, .2, 1);
  --fauth-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
  --fauth-bg: #fdfaf5;
  --fauth-bg-alt: #f7f2ea;
  --fauth-card-bg: #ffffff;
  --fauth-card-bdr: rgba(0, 0, 0, 0.05);
  --fauth-input-bg: #ffffff;
  --fauth-input-bdr: rgba(0, 0, 0, 0.08);
  --fauth-input-focus: rgba(255, 69, 0, 0.4);

  --fauth-text: #1a1a1a;
  --fauth-text-muted: #777777;
  --fauth-text-dim: #999999;
  --fauth-shadow: 0 20px 48px rgba(255, 122, 0, 0.05);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ─── BODY ───────────────────────────────────────────────────── */
.fauth-body {
  font-family: 'DM Sans', sans-serif;
  background: var(--fauth-bg);
  color: var(--fauth-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
  transition: background var(--fauth-ease), color var(--fauth-ease);
  position: relative;
}

/* ─── AMBIENT BACKGROUND ─────────────────────────────────────── */
.fauth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Radial glow blobs */
.fauth-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: fauth-glow-breathe 8s ease-in-out infinite alternate;
}

.fauth-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.2), transparent 70%);
  top: -20%;
  left: -15%;
  animation-delay: 0s;
}

.fauth-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 120, 0, 0.15), transparent 70%);
  bottom: -15%;
  right: -10%;
  animation-delay: -4s;
}

@keyframes fauth-glow-breathe {
  from {
    opacity: 0.6;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Dot grid overlay */
.fauth-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

[data-theme="light"] .fauth-bg-grid {
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
}

/* Floating ember particles (injected by JS) */
.fauth-bg-ember {
  position: absolute;
  inset: 0;
}

.fauth-particle {
  position: absolute;
  pointer-events: none;
  font-size: 1rem;
  opacity: 0;
  animation: fauth-particle-float linear infinite;
  will-change: transform, opacity;
}

@keyframes fauth-particle-float {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg) scale(0.7);
  }

  8% {
    opacity: 0.3;
  }

  85% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) rotate(360deg) scale(1.1);
  }
}

/* ─── UTILITY BAR ────────────────────────────────────────────── */
.fauth-util-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.fauth-back-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fauth-text-muted);
  text-decoration: none;
  transition: color var(--fauth-ease), gap var(--fauth-ease);
}

.fauth-back-link:hover {
  color: var(--fauth-fire);
  gap: 10px;
}

.fauth-back-arrow {
  font-size: 1rem;
  transition: transform var(--fauth-ease);
}

.fauth-back-link:hover .fauth-back-arrow {
  transform: translateX(-3px);
}

[dir="rtl"] .fauth-back-link:hover .fauth-back-arrow {
  transform: translateX(3px);
}

.fauth-util-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fauth-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--fauth-text-muted);
  transition: var(--fauth-ease);
}

.fauth-icon-btn:hover {
  background: rgba(255, 69, 0, 0.12);
  border-color: rgba(255, 69, 0, 0.3);
  color: var(--fauth-fire);
}

[data-theme="light"] .fauth-icon-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

/* ─── MAIN / CARD LAYOUT ─────────────────────────────────────── */
.fauth-main {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 48px;
}

.fauth-card {
  width: 100%;
  max-width: 500px;
  background: var(--fauth-card-bg);
  border: 1px solid var(--fauth-card-bdr);
  border-radius: var(--fauth-radius);
  padding: 28px 32px;
  box-shadow: var(--fauth-shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: fauth-card-in 0.55s cubic-bezier(.22, 1, .36, 1) both;
}

.fauth-signup-card {
  max-width: 540px;
}

@keyframes fauth-card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── LOGO ───────────────────────────────────────────────────── */
.fauth-logo-link {
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.fauth-logo-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
}

.fauth-logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .06em;
  color: var(--fauth-text);
  line-height: 1;
}

.fauth-logo-fire {
  color: var(--fauth-fire);
}

/* ─── CARD HEADING ───────────────────────────────────────────── */
.fauth-card-head {
  margin-bottom: 20px;
  text-align: center;
}

.fauth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--fauth-text);
  margin-bottom: 6px;
}

.fauth-subtitle {
  font-size: .88rem;
  color: var(--fauth-text-muted);
  line-height: 1.55;
}

/* ─── PERKS STRIP (signup only) ──────────────────────────────── */
.fauth-perks-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.fauth-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 10px 6px;
  background: rgba(255, 69, 0, 0.05);
  border: 1px solid rgba(255, 69, 0, 0.12);
  border-radius: var(--fauth-radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  color: var(--fauth-text-muted);
  transition: var(--fauth-ease);
}

.fauth-perk:hover {
  background: rgba(255, 69, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.25);
  color: var(--fauth-text);
}

.fauth-perk-icon {
  font-size: 1.2rem;
}

/* ─── SOCIAL BUTTONS ─────────────────────────────────────────── */
.fauth-social-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.fauth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 18px;
  border-radius: var(--fauth-radius-sm);
  border: 1px solid var(--fauth-input-bdr);
  background: var(--fauth-input-bg);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--fauth-text);
  text-decoration: none;
  cursor: pointer;
  transition: var(--fauth-ease);
  position: relative;
  overflow: hidden;
}

.fauth-submit-btn {
  width: 100%;
  padding: 10px 20px;
  border-radius: var(--fauth-radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--fauth-red), var(--fauth-fire));
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--fauth-ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
}

.fauth-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--fauth-ease);
}

.fauth-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fauth-google-btn:hover {
  border-color: rgba(66, 133, 244, 0.4);
  background: rgba(66, 133, 244, 0.06);
}

.fauth-facebook-btn:hover {
  border-color: rgba(24, 119, 242, 0.4);
  background: rgba(24, 119, 242, 0.06);
}

.fauth-social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── DIVIDER ────────────────────────────────────────────────── */
.fauth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fauth-divider-line {
  flex: 1;
  height: 1px;
  background: var(--fauth-card-bdr);
}

.fauth-divider-text {
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fauth-text-dim);
  white-space: nowrap;
  padding-top: 10px;
}

/* ─── FORM ───────────────────────────────────────────────────── */
.fauth-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Name row: two fields side-by-side */
.fauth-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Field group */
.fauth-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  position: relative;
}

.fauth-field-group.fauth-group-compact {
  margin-bottom: 6px;
}

/* Label */
.fauth-label {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--fauth-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fauth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fauth-optional-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fauth-text-dim);
  padding: 1px 7px;
  border-radius: 50px;
  font-weight: 400;
}

[data-theme="light"] .fauth-optional-tag {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.fauth-field-footer {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
}

.fauth-forgot-link {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--fauth-fire);
  text-decoration: none;
  transition: opacity var(--fauth-ease);
}

.fauth-forgot-link:hover {
  opacity: 0.75;
}

/* Input wrap */
.fauth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fauth-input-icon {
  position: absolute;
  left: 14px;
  font-size: .95rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: opacity var(--fauth-ease);
}

[dir="rtl"] .fauth-input-icon {
  left: auto;
  right: 14px;
}

/* Input */
.fauth-input {
  width: 100%;
  background: var(--fauth-input-bg);
  border: 1px solid var(--fauth-input-bdr);
  border-radius: var(--fauth-radius-sm);
  padding: 8px 38px 8px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--fauth-text);
  outline: none;
  transition: border-color var(--fauth-ease), box-shadow var(--fauth-ease), background var(--fauth-ease);
  -webkit-appearance: none;
}

[dir="rtl"] .fauth-input {
  padding: 13px 44px 13px 44px;
  text-align: right;
}

.fauth-input::placeholder {
  color: var(--fauth-text-dim);
  opacity: 0.7;
}

.fauth-input:focus {
  border-color: var(--fauth-fire);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.15);
  background: rgba(255, 69, 0, 0.03);
}

.fauth-input:focus+.fauth-input-check,
.fauth-input-wrap:focus-within .fauth-input-icon {
  opacity: 0.85;
}

/* Valid / invalid states */
.fauth-field-group.fauth-valid .fauth-input {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.fauth-field-group.fauth-invalid .fauth-input {
  border-color: var(--fauth-fire);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.15);
  animation: fauth-shake 0.35s ease;
}

@keyframes fauth-shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* Checkmark indicator */
.fauth-input-check {
  position: absolute;
  right: 14px;
  font-size: .9rem;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
}

[dir="rtl"] .fauth-input-check {
  right: auto;
  left: 14px;
}

.fauth-field-group.fauth-valid .fauth-input-check::after {
  content: '✓';
  color: #4ade80;
  opacity: 1;
}

.fauth-field-group.fauth-valid .fauth-input-check {
  opacity: 1;
}

/* Eye button */
.fauth-eye-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-size: .9rem;
  opacity: 0.5;
  transition: opacity var(--fauth-ease), transform var(--fauth-ease);
  z-index: 2;
}

.fauth-eye-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

[dir="rtl"] .fauth-eye-btn {
  right: auto;
  left: 12px;
}

/* Error message */
.fauth-error {
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem;
  color: var(--fauth-fire);
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.fauth-error.fauth-error-visible {
  opacity: 1;
  transform: none;
}

.fauth-error::before {
  content: '⚠ ';
  font-size: .7rem;
}

/* ─── PASSWORD STRENGTH ──────────────────────────────────────── */
.fauth-strength-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.fauth-strength-wrap.fauth-visible {
  opacity: 1;
}

.fauth-strength-bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

[data-theme="light"] .fauth-strength-bar {
  background: rgba(0, 0, 0, 0.1);
}

.fauth-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: width 0.4s ease, background 0.4s ease;
}

.fauth-strength-fill[data-level="1"] {
  width: 25%;
  background: #ef4444;
}

.fauth-strength-fill[data-level="2"] {
  width: 50%;
  background: var(--fauth-ember);
}

.fauth-strength-fill[data-level="3"] {
  width: 75%;
  background: var(--fauth-gold);
}

.fauth-strength-fill[data-level="4"] {
  width: 100%;
  background: #4ade80;
}

.fauth-strength-label {
  font-family: 'Oswald', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

[dir="rtl"] .fauth-strength-label {
  text-align: left;
}

.fauth-strength-label[data-level="1"] {
  color: #ef4444;
}

.fauth-strength-label[data-level="2"] {
  color: var(--fauth-ember);
}

.fauth-strength-label[data-level="3"] {
  color: var(--fauth-gold);
}

.fauth-strength-label[data-level="4"] {
  color: #4ade80;
}

/* ─── PASSWORD RULES ─────────────────────────────────────────── */
.fauth-pw-rules {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
  margin-top: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--fauth-radius-xs);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.4s ease, padding 0.3s;
}

[data-theme="light"] .fauth-pw-rules {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.07);
}

.fauth-pw-rules.fauth-visible {
  opacity: 1;
  max-height: 120px;
}

.fauth-pw-rule {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  color: var(--fauth-text-dim);
  transition: color 0.25s;
}

.fauth-pw-rule.fauth-rule-pass {
  color: #4ade80;
}

.fauth-rule-icon {
  font-size: .6rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.fauth-pw-rule.fauth-rule-pass .fauth-rule-icon::after {
  content: '✓';
  font-size: .75rem;
}

.fauth-pw-rule.fauth-rule-pass .fauth-rule-icon {
  font-size: 0;
}

/* ─── CHECKBOX ───────────────────────────────────────────────── */
.fauth-check-row {
  margin-bottom: 14px;
}

.fauth-agreements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--fauth-radius-sm);
}

[data-theme="light"] .fauth-agreements {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.07);
}

.fauth-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.fauth-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fauth-checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--fauth-input-bdr);
  border-radius: 4px;
  background: var(--fauth-input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: var(--fauth-ease);
  position: relative;
}

.fauth-checkbox-box::after {
  content: '';
  width: 10px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.15s;
}

.fauth-checkbox:checked+.fauth-checkbox-box {
  background: linear-gradient(135deg, var(--fauth-fire), var(--fauth-ember));
  border-color: var(--fauth-fire);
}

.fauth-checkbox:checked+.fauth-checkbox-box::after {
  opacity: 1;
}

.fauth-checkbox:focus+.fauth-checkbox-box {
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.2);
}

.fauth-checkbox-text {
  font-size: .82rem;
  color: var(--fauth-text-muted);
  line-height: 1.55;
}

.fauth-inline-link {
  color: var(--fauth-fire);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 69, 0, 0.4);
  transition: border-color var(--fauth-ease);
}

.fauth-inline-link:hover {
  border-color: var(--fauth-fire);
}

/* ─── SUBMIT BUTTON ──────────────────────────────────────────── */
.fauth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--fauth-fire), var(--fauth-ember));
  border: none;
  border-radius: var(--fauth-radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: transform var(--fauth-ease), box-shadow var(--fauth-ease), filter var(--fauth-ease);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(255, 69, 0, 0.35);
}

.fauth-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity var(--fauth-ease);
}

.fauth-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 69, 0, 0.5);
  filter: brightness(1.08);
}

.fauth-submit-btn:hover::before {
  opacity: 1;
}

.fauth-submit-btn:active {
  transform: translateY(-1px);
}

.fauth-submit-btn.fauth-loading .fauth-submit-text {
  opacity: 0;
}

.fauth-submit-btn.fauth-loading .fauth-submit-loader {
  opacity: 1;
}

.fauth-submit-text {
  transition: opacity 0.2s;
}

.fauth-submit-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  animation: fauth-spin 0.8s linear infinite;
}

@keyframes fauth-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── SWITCH ROW ─────────────────────────────────────────────── */
.fauth-switch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.fauth-switch-text {
  font-size: .84rem;
  color: var(--fauth-text-muted);
}

.fauth-switch-link {
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--fauth-fire);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 69, 0, 0.3);
  transition: border-color var(--fauth-ease), color var(--fauth-ease);
}

.fauth-switch-link:hover {
  border-color: var(--fauth-fire);
  color: var(--fauth-ember);
}

/* ─── VIP TEASER (login only) ────────────────────────────────── */
.fauth-vip-teaser {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 184, 0, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: var(--fauth-radius-sm);
  font-size: .8rem;
  color: var(--fauth-text-muted);
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.fauth-vip-icon {
  font-size: 1rem;
}

.fauth-vip-teaser strong {
  color: var(--fauth-gold);
}

/* ─── TOAST ──────────────────────────────────────────────────── */
.fauth-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--fauth-card-bg);
  border: 1px solid var(--fauth-card-bdr);
  border-radius: 12px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--fauth-text);
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(12px);
}

.fauth-toast.fauth-toast-show {
  transform: none;
  opacity: 1;
}

[dir="rtl"] .fauth-toast {
  right: auto;
  left: 24px;
}

/* ─── SUCCESS OVERLAY ────────────────────────────────────────── */
.fauth-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fauth-success-overlay.fauth-visible {
  display: flex;
  animation: fauth-success-in 0.35s ease;
}

@keyframes fauth-success-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fauth-success-box {
  background: var(--fauth-card-bg);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--fauth-radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  animation: fauth-success-up 0.4s cubic-bezier(.22, 1, .36, 1);
}

@keyframes fauth-success-up {
  from {
    transform: translateY(24px) scale(0.96);
  }

  to {
    transform: none;
  }
}

.fauth-success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.fauth-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.fauth-success-msg {
  font-size: .88rem;
  color: var(--fauth-text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 768px
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .fauth-util-bar {
    padding: 12px 18px;
  }

  .fauth-main {
    padding: 10px 16px 36px;
    align-items: flex-start;
  }

  .fauth-card {
    padding: 30px 28px;
    border-radius: 16px;
    max-width: 100%;
  }

  .fauth-signup-card {
    max-width: 100%;
  }

  .fauth-title {
    font-size: 2rem;
  }

  .fauth-perks-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .fauth-name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fauth-social-row {
    gap: 8px;
  }

  .fauth-pw-rules {
    grid-template-columns: 1fr;
  }

  .fauth-bg-glow {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 480px
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .fauth-util-bar {
    padding: 10px 14px;
  }

  .fauth-back-link span:last-child {
    display: none;
  }

  .fauth-card {
    padding: 24px 18px;
    border-radius: 14px;
    box-shadow: none;
    border-color: transparent;
    background: var(--fauth-card-bg);
  }

  .fauth-logo-name {
    font-size: 1.35rem;
  }

  .fauth-logo-sub {
    font-size: .95rem;
  }

  .fauth-title {
    font-size: 1.75rem;
  }

  .fauth-subtitle {
    font-size: .82rem;
  }

  .fauth-social-btn {
    padding: 11px 14px;
    font-size: .82rem;
    gap: 8px;
  }

  .fauth-input {
    font-size: .85rem;
    padding: 12px 40px 12px 40px;
  }

  .fauth-submit-btn {
    padding: 13px 20px;
    font-size: .82rem;
  }

  .fauth-perks-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .fauth-perk {
    padding: 8px 4px;
    font-size: .66rem;
  }

  .fauth-perk-icon {
    font-size: 1rem;
  }

  .fauth-switch-row {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .fauth-toast {
    right: 12px;
    left: 12px;
    bottom: 16px;
    max-width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════════
   RTL OVERRIDES
════════════════════════════════════════════════════════════════ */
[dir="rtl"] .fauth-label-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .fauth-divider-line:first-child {
  order: 3;
}

[dir="rtl"] .fauth-divider-line:last-child {
  order: 1;
}

[dir="rtl"] .fauth-divider-text {
  order: 2;
}

[dir="rtl"] .fauth-logo-wrap {
  flex-direction: row-reverse;
}

[dir="rtl"] .fauth-perk {
  direction: rtl;
}

[dir="rtl"] .fauth-checkbox-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .fauth-back-arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .fauth-switch-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .fauth-vip-teaser {
  flex-direction: row-reverse;
  text-align: right;
}

/* ─── LIGHT THEME OVERRIDES ──────────────────────────────────── */
[data-theme="light"] .fauth-submit-btn {
  box-shadow: 0 6px 24px rgba(255, 69, 0, 0.25);
}

[data-theme="light"] .fauth-submit-btn:hover {
  box-shadow: 0 12px 36px rgba(255, 69, 0, 0.35);
}

[data-theme="light"] .fauth-vip-teaser {
  background: rgba(255, 184, 0, 0.06);
}

[data-theme="light"] .fauth-card {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .fauth-particle {
  opacity: 0 !important;
}

[data-theme="light"] .fauth-strength-bar {
  background: rgba(0, 0, 0, 0.08);
}

/* ─── FOCUS VISIBLE (accessibility) ─────────────────────────── */
.fauth-submit-btn:focus-visible,
.fauth-social-btn:focus-visible,
.fauth-icon-btn:focus-visible,
.fauth-back-link:focus-visible {
  outline: 2px solid var(--fauth-fire);
  outline-offset: 3px;
}

.fauth-input:focus-visible {
  outline: none;
}

/* ─── ANIMATIONS: stagger card children on load ─────────────── */
.fauth-card>* {
  animation: fauth-stagger-in 0.5s cubic-bezier(.22, 1, .36, 1) both;
}

.fauth-logo-wrap {
  animation-delay: 0.08s;
}

.fauth-card-head {
  animation-delay: 0.14s;
}

.fauth-perks-strip {
  animation-delay: 0.16s;
}

.fauth-social-row {
  animation-delay: 0.20s;
}

.fauth-divider {
  animation-delay: 0.24s;
}

.fauth-form {
  animation-delay: 0.28s;
}

.fauth-switch-row {
  animation-delay: 0.32s;
}

.fauth-vip-teaser {
  animation-delay: 0.36s;
}

@keyframes fauth-stagger-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}