/*
  Bar La Esquina del Pollo - Cartago, Costa Rica
  Cuisine type: Bar / restaurante casual con karaoke
  Palette: Neon Cocktail - electric magenta + violet + warm gold on deep dark
  Primary: #FF1B6B (neon karaoke magenta)
  Accent purple: #8B3FE8 (laser violet)
  Accent gold: #FFD23F (warmth - pollo, papas)
  Fonts: Bebas Neue (bar signage) + Permanent Marker (handwritten accents) + Inter (body)
  Mood: noche, neón, karaoke, pollo, birra fría, fiesta cartaginesa
  Design style: Bold Neon (C) + Dark Premium (A)
*/

:root {
  --color-primary: #FF1B6B;
  --color-primary-dark: #C8144D;
  --color-primary-light: #FF5A98;
  --color-primary-glow: rgba(255, 27, 107, 0.5);

  --color-violet: #8B3FE8;
  --color-violet-dark: #6B27C0;
  --color-violet-glow: rgba(139, 63, 232, 0.45);

  --color-gold: #FFD23F;
  --color-gold-dark: #E8B419;
  --color-gold-glow: rgba(255, 210, 63, 0.4);

  --color-cyan: #00E5FF;

  --color-bg: #0A0612;
  --color-bg-alt: #14081E;
  --color-bg-card: #1F1230;
  --color-bg-card-hover: #2A1A3E;

  --color-text: #FFFFFF;
  --color-text-muted: #B8A8C8;
  --color-text-dim: #8A7A9A;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.15);

  --shadow-glow-primary: 0 0 32px rgba(255, 27, 107, 0.35), 0 0 8px rgba(255, 27, 107, 0.5);
  --shadow-glow-violet: 0 0 32px rgba(139, 63, 232, 0.4);
  --shadow-glow-gold: 0 0 24px rgba(255, 210, 63, 0.4);

  --noise-bg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.35'/></svg>");
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* Typography */
.font-display { font-family: 'Bebas Neue', 'Anton', sans-serif; letter-spacing: 0.01em; }
.font-marker { font-family: 'Permanent Marker', cursive; }
.font-body { font-family: 'Inter', sans-serif; }

/* Headings get tight letter-spacing for Bebas */
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.005em; }

/* Gradient text - primary */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 60%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(255, 27, 107, 0.35));
}

.text-gradient-warm {
  background: linear-gradient(120deg, var(--color-gold) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ Buttons - Bold Neon variant ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms;
  box-shadow: 0 8px 28px rgba(255, 27, 107, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-primary) 100%);
  opacity: 0;
  transition: opacity 220ms;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 27, 107, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 200ms;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-gold);
  color: #1a0e00;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 220ms;
  box-shadow: 0 8px 28px rgba(255, 210, 63, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 210, 63, 0.5);
  background: var(--color-gold-dark);
}

/* ============ Cards ============ */
.card-dark {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1);
}
.card-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.card-dark:hover {
  border-color: var(--color-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 27, 107, 0.18);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.card-dark:hover .card-img-wrap img { transform: scale(1.08); }

/* ============ Glow orbs ============ */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.55;
  z-index: 0;
}
.glow-orb-pink {
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}
.glow-orb-violet {
  background: radial-gradient(circle, var(--color-violet) 0%, transparent 70%);
}
.glow-orb-gold {
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
}

/* ============ Noise texture overlay ============ */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--noise-bg);
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 27, 107, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 63, 232, 0.45) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 6, 18, 0.4) 0%, rgba(10, 6, 18, 0.8) 60%, rgba(10, 6, 18, 0.98) 100%);
  z-index: 1;
}

.hero-text-shadow { text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 4px 24px rgba(0,0,0,0.5); }

/* ============ Section reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 60ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 360ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 420ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 480ms; }

/* ============ Header H2 Floating Island ============ */
.header-floating {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: rgba(15, 8, 24, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: top 220ms, transform 220ms;
  max-width: calc(100vw - 32px);
}

.header-floating .nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-transform: uppercase;
  padding: 6px 4px;
  position: relative;
  transition: color 180ms;
}
.header-floating .nav-link:hover { color: var(--color-primary-light); }
.header-floating .nav-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width 220ms;
}
.header-floating .nav-link:hover::after { width: 100%; }

/* ============ Mobile Bottom Sheet Menu (M3) ============ */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 6, 18, 0.7);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-bg-alt);
  border-radius: 28px 28px 0 0;
  padding: 12px 24px 32px;
  z-index: 70;
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  border-top: 1px solid var(--color-primary);
  box-shadow: 0 -16px 50px rgba(0,0,0,0.5), 0 -2px 0 var(--color-primary-glow);
  max-height: 85vh;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-grip {
  width: 48px; height: 4px;
  background: var(--color-text-dim);
  border-radius: 999px;
  margin: 0 auto 18px;
}
.mobile-menu .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mobile-menu .nav-link:last-of-type { border-bottom: none; }
.mobile-menu .nav-link:hover { color: var(--color-primary); }

/* ============ Sticky FAB CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  transition: transform 220ms, opacity 220ms;
}
.sticky-cta:hover { transform: scale(1.08); }
.sticky-cta.translate-y-full { transform: translateY(180%); opacity: 0; pointer-events: none; }

/* ============ Menu page ============ */
.cat-nav-wrap {
  position: sticky;
  top: 70px;
  z-index: 30;
  background: rgba(10, 6, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.cat-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .cat-nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .cat-nav-inner::-webkit-scrollbar { display: none; }
  .cat-nav-wrap { top: 56px; }
}

.cat-pill {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 180ms;
  white-space: nowrap;
}
.cat-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}
.cat-pill.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 27, 107, 0.4);
}

/* Menu dish card */
.dish-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 240ms, box-shadow 240ms;
}
.dish-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.dish-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.dish-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.06); }

.dish-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(255, 210, 63, 0.4);
}
.dish-badge.popular { color: var(--color-primary-light); border-color: rgba(255, 90, 152, 0.4); }
.dish-badge.chef { color: var(--color-gold); border-color: rgba(255, 210, 63, 0.5); }
.dish-badge.new { color: var(--color-cyan); border-color: rgba(0, 229, 255, 0.4); }

.dish-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}
.dish-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-text);
}
.dish-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex-grow: 1;
}
.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.dish-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--color-gold);
}

/* ============ Cart slot - fixed height (anti-jump) ============ */
.cart-slot {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 44px;
}

.add-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms, box-shadow 180ms;
  box-shadow: 0 4px 16px rgba(255, 27, 107, 0.4);
}
.add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 27, 107, 0.55);
}

.qty-controls {
  height: 44px;
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(255, 27, 107, 0.15);
}
.qty-btn {
  width: 36px; height: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: background 160ms, color 160ms;
}
.qty-btn:hover { background: rgba(255, 27, 107, 0.15); color: #fff; }
.qty-value {
  min-width: 28px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--color-text);
}

/* Floating cart button */
.floating-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(180%);
  z-index: 40;
  padding: 14px 24px 14px 18px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(255, 27, 107, 0.5);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 280ms;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  max-width: calc(100vw - 32px);
  white-space: nowrap;
}
.floating-cart.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cart:hover { transform: translateX(-50%) translateY(-3px); }
.floating-cart .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  background: var(--color-gold);
  color: #1a0e00;
  border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* ============ Cart page ============ */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.cart-item:last-of-type { border-bottom: none; }
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--color-bg-alt);
}
.cart-item-remove {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--color-text-dim);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 180ms;
}
.cart-item-remove:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============ QR modal ============ */
.qr-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 2, 10, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.qr-modal-overlay.open { opacity: 1; pointer-events: auto; }
.qr-modal {
  background: #fff;
  color: #1a0e00;
  border-radius: 28px;
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.qr-modal-overlay.open .qr-modal { transform: scale(1); }
.qr-modal canvas {
  margin: 16px auto;
  display: block !important;
  border-radius: 12px;
}

/* ============ Order page (waiter) ============ */
.order-page {
  background: #FAFAFA;
  color: #14081E;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  padding: 40px 20px 60px;
}
.order-container {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(20, 8, 30, 0.08);
}
.order-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--color-primary-dark);
}
.order-meta {
  text-align: center;
  color: #6B5D7A;
  font-size: 15px;
  margin-top: 4px;
}
.order-table-badge {
  display: inline-block;
  margin: 20px auto 0;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
  color: #fff;
  border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.order-items {
  margin-top: 28px;
  border-top: 1px solid rgba(20, 8, 30, 0.08);
  padding-top: 16px;
}
.order-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 8, 30, 0.06);
}
.order-row:last-of-type { border-bottom: none; }
.order-qty {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--color-primary-dark);
  text-align: center;
}
.order-name { font-size: 16px; color: #1a0e1e; }
.order-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #1a0e1e;
}
.order-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 20px;
  border-top: 2px solid var(--color-primary);
}
.order-total-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
}
.order-total-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--color-primary-dark);
}

@media print {
  .no-print { display: none !important; }
  .order-page { padding: 20px; background: #fff; }
  .order-container { box-shadow: none; padding: 20px; }
}

/* ============ Galleria GLightbox ============ */
.gallery-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--color-bg-alt);
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 6, 18, 0.6) 100%);
  opacity: 0;
  transition: opacity 280ms;
}
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile-icon {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms, transform 280ms;
  z-index: 2;
}
.gallery-tile:hover .gallery-tile-icon { opacity: 1; transform: translateY(0); }

.glightbox-clean .gslide-media { max-width: 92vw !important; max-height: 92vh !important; }
.glightbox-clean .gslide-image img { max-width: 100%; max-height: 92vh; object-fit: contain; width: auto; height: auto; }

/* ============ Counter numbers ============ */
.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  letter-spacing: 0.01em;
}

/* ============ Star rating ============ */
.star { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.star-filled { fill: var(--color-gold); }
.star-empty { fill: rgba(255, 255, 255, 0.18); }

/* ============ Review card ============ */
.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 240ms;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.review-card:hover { border-color: var(--color-border-strong); }

/* ============ Decorative ============ */
.divider-wave {
  height: 60px;
  background: var(--color-bg);
  position: relative;
}

.scroll-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, var(--color-bg) 100%);
}

/* ============ Container ============ */
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container-wide { padding: 0 32px; } }

/* ============ Section helpers ============ */
section { position: relative; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 27, 107, 0.12);
  border: 1px solid rgba(255, 27, 107, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

/* ============ Disable transitions on resize for sticky elements ============ */
.no-transition, .no-transition * { transition: none !important; }
