/*
Theme Name: BBQ Drive Hub
Description: Premium dark-theme QR-menu for BBQ restaurant — Awwwards-level redesign
Version: 2.0.0
Author: BBQ Drive Hub Team
Text Domain: bbq-drive-hub
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --c-bg: #0d0d0d;
  --c-surface: #161616;
  --c-surface-2: #1e1e1e;
  --c-surface-3: #2a2a2a;
  --c-border: rgba(255, 255, 255, 0.07);
  --c-fire: #FF4500;
  --c-orange: #FF6B35;
  --c-amber: #FFB347;
  --c-red: #E63946;
  --c-text: #F5F0EB;
  --c-text-muted: #9A8F87;
  --c-text-dim: #5A534D;
  --c-white: #FFFFFF;

  /* Gradients */
  --g-fire: linear-gradient(135deg, #FF4500, #FF6B35, #FFB347);
  --g-fire-soft: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 107, 53, 0.08));
  --g-dark: linear-gradient(180deg, #0d0d0d 0%, #161616 100%);
  --g-card: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.95) 100%);
  --g-hero: linear-gradient(to bottom, rgba(13, 13, 13, 0.35) 0%, rgba(13, 13, 13, 0.65) 60%, rgba(13, 13, 13, 0.98) 100%);

  /* Typography */
  --f-head: 'Montserrat', sans-serif;
  --f-body: 'Inter', sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-fire: 0 8px 32px rgba(255, 69, 0, 0.35);
  --shadow-fire-sm: 0 4px 16px rgba(255, 69, 0, 0.25);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Glass */
  --glass-bg: rgba(22, 22, 22, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 76px;
}

/* Prevent scroll when popups are open */
html.lock-scroll,
body.lock-scroll {
  overflow: hidden !important;
}

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

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

:focus-visible {
  outline: 2px solid var(--c-fire);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Offset for fixed header */
body:not(.home) main {
  padding-top: 64px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--g-fire);
  color: #fff;
  box-shadow: var(--shadow-fire-sm);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-fire);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-tg {
  background: #2AABEE;
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 171, 238, 0.35);
}

.btn-tg:hover {
  background: #1d9ad8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.45);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--t-base);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

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

.logo-image {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: var(--t-base);
}

@media (max-width: 768px) {
  .logo-image {
    height: 42px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 38px;
    max-width: 140px;
  }
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--g-fire);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.logo-text span {
  color: var(--c-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header cart button */
.header-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-text);
  cursor: pointer;
  transition: var(--t-base);
  flex-shrink: 0;
}

.header-cart-btn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--c-orange);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--g-fire);
  color: #fff;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.5);
}



/* Delivery badge */
.delivery-badge {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 69, 0, 0.12);
  border: 1px solid rgba(255, 69, 0, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-amber);
}

@media (min-width: 480px) {
  .delivery-badge {
    display: flex;
  }
}

.delivery-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--c-amber);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

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

/* Ensure container inside hero behaves correctly */
.hero>.container {
  display: block;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: hero-zoom 12s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--g-hero);
  z-index: 1;
}

/* Fire particles (CSS) */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -20px;
  width: 4px;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

.particle:nth-child(1) {
  left: 5%;
  width: 3px;
  height: 8px;
  background: var(--c-fire);
  animation-duration: 3.2s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 15%;
  width: 5px;
  height: 12px;
  background: var(--c-amber);
  animation-duration: 4.1s;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  left: 25%;
  width: 3px;
  height: 7px;
  background: var(--c-orange);
  animation-duration: 2.8s;
  animation-delay: 1.2s;
}

.particle:nth-child(4) {
  left: 40%;
  width: 4px;
  height: 10px;
  background: var(--c-fire);
  animation-duration: 3.7s;
  animation-delay: 0.3s;
}

.particle:nth-child(5) {
  left: 55%;
  width: 3px;
  height: 8px;
  background: var(--c-amber);
  animation-duration: 3s;
  animation-delay: 0.8s;
}

.particle:nth-child(6) {
  left: 70%;
  width: 5px;
  height: 14px;
  background: var(--c-orange);
  animation-duration: 4.5s;
  animation-delay: 0.1s;
}

.particle:nth-child(7) {
  left: 82%;
  width: 3px;
  height: 9px;
  background: var(--c-fire);
  animation-duration: 3.4s;
  animation-delay: 1.5s;
}

.particle:nth-child(8) {
  left: 92%;
  width: 4px;
  height: 11px;
  background: var(--c-amber);
  animation-duration: 2.6s;
  animation-delay: 0.6s;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-80vh) translateX(20px) scale(0.2);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 80px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 80px 0 60px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 40px 0 50px;
  }
}

/* Align hero content to container grid - left edge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 69, 0, 0.15);
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fade-up 0.6s ease both;
}

.hero-title {
  color: var(--c-white);
  margin-bottom: 20px;
  animation: fade-up 0.6s ease 0.1s both;
  max-width: 700px;
}

.hero-title .fire-word {
  background: var(--g-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(245, 240, 235, 0.75);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fade-up 0.6s ease 0.2s both;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.3s both;
  margin-bottom: 56px;
}

/* Delivery promise strip */
.hero-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.4s both;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 235, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-strip-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {

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

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

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-right: 1px solid var(--c-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  color: var(--c-text);
}

.trust-item .ti {
  font-size: 1.2rem;
}

/* ============================================================
   CATEGORIES (sticky filter)
   ============================================================ */
.categories-section {
  position: sticky;
  top: 64px;
  z-index: 150;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 14px 0;
  transition: var(--t-base);
}

.categories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-text-muted);
  border-radius: var(--radius-pill);
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
}

.category-btn:hover {
  border-color: rgba(255, 107, 53, 0.4);
  color: var(--c-text);
  background: rgba(255, 107, 53, 0.06);
}

.category-btn.active {
  background: var(--g-fire);
  border-color: transparent;
  color: var(--c-white);
  box-shadow: var(--shadow-fire-sm);
}

.cat-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 12px;
}

.section-title {
  color: var(--c-white);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 56px 0;
}

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

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

@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Menu Card ---- */
.menu-item-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.2);
}

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

.card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-surface-2);
}

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

/* No image placeholder */
.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-surface-2), var(--c-surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* Overlay gradient on image */
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--g-card);
  pointer-events: none;
}

/* Badges */
.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.badge-hot {
  background: rgba(230, 57, 70, 0.85);
  color: #fff;
}

.badge-new {
  background: rgba(42, 171, 238, 0.85);
  color: #fff;
}

.badge-popular {
  background: rgba(255, 69, 0, 0.85);
  color: #fff;
}

.badge-spicy {
  background: rgba(200, 30, 30, 0.85);
  color: #fff;
}

/* Card content */
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.card-title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-weight {
  font-size: 0.78rem;
  color: var(--c-text-dim);
  font-weight: 500;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.card-price {
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.card-price-unit-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-orange);
}

.card-price-sep {
  font-size: 0.75rem;
  opacity: 0.7;
}

.card-price-unit-val {
  font-weight: 700;
}

.btn-add,
.btn-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--g-fire);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-fire-sm);
}

.btn-add:hover,
.btn-details:hover {
  filter: brightness(1.15);
  transform: scale(1.05);
  box-shadow: var(--shadow-fire);
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
  padding: 72px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  position: relative;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--t-base);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-fire-soft);
  opacity: 0;
  transition: var(--t-base);
  border-radius: inherit;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  color: var(--c-white);
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 160px 0;
  background: #000;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/cta-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: brightness(0.6) saturate(1.2);
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #000 80%);
  z-index: 2;
}

.cta-inner {
  position: relative;
  z-index: 2;
  background: var(--c-surface);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
}

.cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 80px 40px;
  z-index: 10;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
}

@media (max-width: 600px) {
  .cta-inner {
    padding: 40px 24px;
  }
}

.cta-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 69, 0, 0.1);
  font-weight: 700;
  color: var(--c-amber);
  margin-bottom: 24px;
}

.cta-section h2 {
  color: var(--c-white);
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 72px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

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

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--t-base);
}

.review-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--c-amber);
  font-size: 1rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--f-head);
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
}

.review-date {
  font-size: 0.78rem;
  color: var(--c-text-dim);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 72px 0;
}

/* Masonry via columns */
.gallery-masonry {
  columns: 2;
  column-gap: 12px;
}

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

@media (min-width: 960px) {
  .gallery-masonry {
    columns: 4;
    column-gap: 16px;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  display: block;
}

@media (min-width: 960px) {
  .gallery-item {
    margin-bottom: 16px;
  }
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t-base);
}

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

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

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--t-slow);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

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

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

/* ============================================================
   CONTACTS SECTION
   ============================================================ */
.contacts-section {
  padding: 72px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.contacts-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contacts-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--t-base);
  border: 1px solid transparent;
}

.contact-btn-tg {
  background: rgba(42, 171, 238, 0.1);
  border-color: rgba(42, 171, 238, 0.25);
  color: #2AABEE;
}

.contact-btn-tg:hover {
  background: rgba(42, 171, 238, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.2);
}

.contact-btn-phone {
  background: rgba(255, 69, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.25);
  color: var(--c-orange);
}

.contact-btn-phone:hover {
  background: rgba(255, 69, 0, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.2);
}

.contact-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-btn-tg .contact-btn-icon {
  background: rgba(42, 171, 238, 0.15);
}

.contact-btn-phone .contact-btn-icon {
  background: rgba(255, 69, 0, 0.15);
}

.contact-btn-text {
  text-align: left;
}

.contact-btn-label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.65;
  display: block;
}

.contact-btn-value {
  font-size: 1.05rem;
}

/* ============================================================
   FLOATING ORDER BUTTON
   ============================================================ */
.floating-order {
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

@media (min-width: 769px) {
  .floating-order {
    bottom: 32px;
    right: 32px;
  }
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--f-body);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  animation: float-btn 3s ease-in-out infinite;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  color: var(--c-text);
}

.floating-btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 69, 0, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-fire);
  flex-shrink: 0;
}

.floating-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-btn-label {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.6);
  font-weight: 500;
}

.floating-btn-value {
  font-size: 0.85rem;
  color: var(--c-fire);
  font-weight: 600;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.4);
  background: rgba(255, 255, 255, 0.12);
  animation: none;
}

@keyframes float-btn {

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

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

/* ============================================================
   STICKY NAV (Mobile Bottom)
   ============================================================ */
.sticky-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  display: flex;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 769px) {
  .sticky-nav {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 8px;
  text-decoration: none;
  color: var(--c-text-dim);
  font-size: 0.7rem;
  font-weight: 600;
  transition: var(--t-base);
  position: relative;
}

.nav-item.active,
.nav-item:hover {
  color: var(--c-orange);
}

.nav-item svg {
  width: 22px;
  height: 22px;
}

.nav-item-tg {
  color: #2AABEE !important;
}

.nav-item-order {
  color: var(--c-white) !important;
}

.nav-item-order-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--g-fire);
  border-radius: 50%;
  margin-top: -20px;
  box-shadow: var(--shadow-fire-sm);
}

.nav-item-order span {
  display: none;
}

@media (max-width: 380px) {
  .nav-item span {
    display: none;
  }

  .nav-item svg {
    width: 24px;
    height: 24px;
  }
}

/* Cart badge */
.cart-count-badge {
  position: absolute;
  top: 4px;
  right: 8px;
  min-width: 18px;
  height: 18px;
  background: var(--c-fire);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(255, 69, 0, 0.5);
}

.cart-count-badge.visible {
  display: flex;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 24px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 6px;
}

.footer-brand-name span {
  color: var(--c-orange);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-link-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t-base);
}

.footer-link-tg {
  background: rgba(42, 171, 238, 0.1);
  color: #2AABEE;
  border: 1px solid rgba(42, 171, 238, 0.2);
}

.footer-link-tg:hover {
  background: rgba(42, 171, 238, 0.18);
}

.footer-link-phone {
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.footer-link-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-text);
}

.footer-copy {
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

/* ============================================================
   ANIMATIONS (entry)
   ============================================================ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: var(--c-surface-2);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: var(--c-text);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3000;
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 280px;
  transform: translateX(120%);
  transition: transform var(--t-base);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.shown {
  transform: translateX(0);
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--c-surface-3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-fire);
}

/* ============================================================
   SELECTION COLOR
   ============================================================ */
::selection {
  background: rgba(255, 69, 0, 0.3);
  color: var(--c-white);
}

/* ============================================================
   LOADING STATE
   ============================================================ */
.no-items {
  text-align: center;
  padding: 72px 20px;
  color: var(--c-text-muted);
}

.no-items .ni-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

/* ============================================================
   GAZEBO BOOKING SECTION
   ============================================================ */
.gazebo.cta-section {
  position: relative;
  padding: 160px 0;
  background: #000;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/cta-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: brightness(0.6) saturate(1.2);
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #000 80%);
  z-index: 2;
}

.gazebo-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Type selector buttons */
.gazebo-types {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gazebo-type-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--c-surface-2);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  color: var(--c-text);
  cursor: pointer;
  transition: var(--t-base);
  font-family: var(--f-body);
  flex: 1;
  min-width: 200px;
}

.gazebo-type-btn:hover {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.08);
}

.gazebo-type-btn.active {
  border-color: var(--c-orange);
  background: rgba(255, 107, 53, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.3);
}

.gt-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.gt-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.gt-info strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
}

.gt-info em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* Two-column layout */
.gazebo-booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.gazebo-step {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-family: var(--f-head);
  margin-bottom: 20px;
  color: var(--c-text);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--g-fire);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* Date input */
.date-picker-wrap {
  margin-bottom: 20px;
}

.date-picker-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}

.booking-date-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t-base);
  color-scheme: dark;
}

.booking-date-input:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Slots grid */
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 80px;
}

.slots-hint,
.slots-empty,
.slots-error {
  grid-column: 1/-1;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px 0;
}

.slots-error {
  color: var(--c-red);
}

.slots-loading {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  padding: 20px 0;
}

.slot-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-top-color: var(--c-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.slot-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  cursor: pointer;
  transition: var(--t-base);
  font-family: var(--f-body);
  gap: 4px;
}

.slot-btn:hover:not(:disabled) {
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.1);
}

.slot-btn.selected {
  border-color: var(--c-orange);
  background: rgba(255, 107, 53, 0.18);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.slot-btn.slot-full {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text);
}

.slot-status {
  font-size: 0.72rem;
  color: var(--c-text-muted);
}

/* Booking form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--c-surface-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  transition: var(--t-base);
  width: 100%;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}

.form-group input.field-error,
.form-group select.field-error {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
}

.field-error-msg {
  font-size: 0.78rem;
  color: var(--c-red);
}

.form-error-msg {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: var(--radius-sm);
  color: var(--c-red);
  padding: 10px 14px;
  font-size: 0.88rem;
}

/* Free hint */
.booking-free-hint {
  background: rgba(255, 179, 71, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--c-amber);
  line-height: 1.5;
}

/* Price badge */
#gazebo-price-display {
  margin-bottom: 12px;
}

.price-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}

.price-badge.price-free {
  background: rgba(39, 174, 96, 0.1);
  border-color: rgba(39, 174, 96, 0.35);
  color: #27ae60;
  font-weight: 700;
  font-size: 1rem;
}

.price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-orange);
  font-family: var(--f-head);
}

.price-hint {
  font-size: 0.78rem;
  color: var(--c-amber);
}

/* Submit button */
.booking-submit {
  width: 100%;
  margin-top: 4px;
}

/* Success panel */
.booking-success {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.booking-success h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--c-text);
}

.success-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  text-align: left;
}

.success-table th,
.success-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
}

.success-table th {
  color: var(--c-text-muted);
  width: 50%;
}

.success-table td {
  color: var(--c-text);
  font-weight: 600;
}

.success-free {
  color: #27ae60;
  font-weight: 800;
}

.success-note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .gazebo-types {
    flex-direction: column;
  }

  .gazebo-type-btn {
    min-width: 0;
  }

  .gazebo-booking-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================================
   PRODUCT POPUP
   ============================================================ */
.product-popup {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.product-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.pp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.pp-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.product-popup.active .pp-panel {
  transform: scale(1);
}

.pp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--t-fast);
}

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

.pp-content {
  overflow-y: auto;
  flex: 1;
}

.pp-hero {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}

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

.pp-body {
  padding: 24px;
}

.pp-body h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--c-white);
}

.pp-description {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pp-info {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}

.pp-info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.pp-ingredients-list {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.4;
}

.pp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}

.pp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pp-price {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-orange);
}

.pp-price-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-orange);
}

.pp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-qty {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  padding: 4px;
  border: 1px solid var(--c-border);
}

.pp-qty .qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--c-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--t-fast);
}

.pp-qty .qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pp-qty .qty-val {
  width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.pp-btn-add {
  background: #E4572E !important;
  color: #fff;
  padding: 14px 24px;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(228, 87, 46, 0.3);
}

.pp-btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(228, 87, 46, 0.4);
}

/* Mobile specific fixes */
@media (max-width: 480px) {
  .pp-panel {
    max-height: 85vh;
  }
  
  .pp-body {
    padding: 20px;
  }
  
  .pp-body h2 {
    font-size: 1.5rem;
  }
  
  .pp-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .pp-actions {
    justify-content: space-between;
  }
  
  .pp-btn-add {
    flex: 1;
  }
}

/* ============================================================
   DYNAMIC NAVIGATION: HEADER & BOTTOM BAR (ТЗ v3.0)
   ============================================================ */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-action-btn:hover {
  background: rgba(228, 87, 46, 0.15);
  border-color: rgba(228, 87, 46, 0.4);
  color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* 1. Dynamic Header Cart */
.header-cart-btn-dynamic {
  display: flex !important;
}


.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
}

.cart-badge-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #E4572E;
  border-radius: 50%;
  border: 2px solid #111;
  box-shadow: 0 0 8px rgba(228, 87, 46, 0.6);
}

.cart-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  background: var(--g-fire);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
  border: 2px solid #111;
  font-family: var(--f-head);
  z-index: 2;
}


.cart-qty {
  color: var(--c-white);
}

.cart-total {
  color: #E4572E;
}

/* ============================================================
   iOS-STYLE FLOATING CART (GLASS UI)
   ============================================================ */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 400;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-bar.active {
  transform: translateY(0);
  opacity: 1;
}

.cart-container {
  max-width: 1200px; /* Aligned with site grid */
  margin: 0 auto;
  padding: 0 16px;
}

.cart-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 6px 6px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-inner.bump {
  transform: scale(1.05);
}

.cart-info {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cart-info:hover {
  opacity: 0.8;
}

.cart-info .icon {
  font-size: 1.25rem;
  color: #fff; /* White icon as requested */
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.cart-info .bar-summary-text {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-info .bar-qty {
  font-weight: 800;
  color: #ff5a1f;
}

.cart-info .bar-total {
  font-weight: 800;
  color: #fff;
}

.bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-clear-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-text-muted);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.bar-clear-btn:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.3);
  color: var(--c-red);
  transform: scale(1.05);
}

.cart-btn {
  background: linear-gradient(135deg, #ff5a1f, #ff8c42);
  border-radius: 999px;
  padding: 12px 32px;
  border: none;
  color: white;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 90, 31, 0.3);
  transition: all 0.3s ease;
}

.cart-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.45);
}

.cart-btn:active {
  transform: scale(0.98);
}

/* Adjust padding on body for the bar */
body {
  padding-bottom: 90px !important;
}

/* ============================================================
   QR MENU PAGE (View Only)
   ============================================================ */
.page-template-page-qr {
  padding-bottom: 0 !important; /* No floating bar needed */
}

.page-template-page-qr .header-cart-btn-dynamic,
.page-template-page-qr #bbq-bottom-bar,
.page-template-page-qr .pp-actions,
.page-template-page-qr .pp-qty,
.page-template-page-qr #pp-add-btn {
  display: none !important;
}

.qr-menu-page {
  padding-top: 80px; /* Space for the sticky header */
}

@media (max-width: 768px) {
  .qr-menu-page {
    padding-top: 70px;
  }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  color: #9A8F87;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(42, 171, 238, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-social .social-link:hover {
  background: #2AABEE;
  transform: translateY(-2px);
}

.footer-title {
  color: #fff;
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

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

.footer-cat-link {
  color: #9A8F87;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer-cat-link:hover {
  color: var(--c-orange);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-contact-list a {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-copyright strong {
  color: #fff;
}

.footer-dev a {
  color: var(--c-orange);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-dev a:hover {
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
  filter: brightness(1.2);
}

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

@media (max-width: 768px) {
  .site-footer {
    padding-top: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

