/* ==========================================================================
   FORNACE BRICK OVEN PIZZA - UI/UX PRO MAX DESIGN SYSTEM
   Theme: Vibrant Rustic Wood-Fired Dark Mode
   Typography: Playfair Display + Karla
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Color Palette - Warm Wood Fire & Golden Crust */
  --bg-dark: #0c0806;
  --bg-card: #16100c;
  --bg-card-hover: #221913;
  --bg-surface: #1e1510;
  
  --primary-fire: #ea580c;
  --primary-fire-hover: #c2410c;
  --primary-glow: rgba(234, 88, 12, 0.25);
  
  --secondary-crimson: #dc2626;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-ember: #ff7849;
  
  --text-main: #fdfbf7;
  --text-muted: #a89f91;
  --text-dim: #786f63;
  
  --border-color: rgba(245, 158, 11, 0.15);
  --border-color-glow: rgba(234, 88, 12, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --shadow-fire: 0 8px 30px rgba(234, 88, 12, 0.35);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Karla', system-ui, -apple-system, sans-serif;
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(180deg, rgba(12, 8, 6, 0.72) 0%, rgba(12, 8, 6, 0.85) 40%, rgba(12, 8, 6, 0.92) 100%),
    url('images/main-page-bg.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

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

button {
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-fire) 0%, var(--accent-gold) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-fire);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.5);
  background: linear-gradient(135deg, var(--primary-fire-hover) 0%, var(--accent-gold-hover) 100%);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* Top Notification Banner */
.top-announcement {
  background: linear-gradient(90deg, #991b1b, #c2410c, #b45309);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.top-announcement .badge {
  background: #ffffff;
  color: #991b1b;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Glass Header / Navbar */
.navbar-wrapper {
  position: fixed;
  top: 2.5rem;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled {
  top: 0.75rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(22, 16, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo svg {
  width: 36px;
  height: 36px;
  color: var(--primary-fire);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-text span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-fire);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cart-btn-wrapper {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary-fire);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle {
  display: none;
  color: var(--text-main);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-bg-parallax-wrap {
  position: absolute;
  inset: -15%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) contrast(1.15);
  background-attachment: fixed;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(234, 88, 12, 0.35) 0%, transparent 65%),
              linear-gradient(180deg, rgba(12, 8, 6, 0.5) 0%, rgba(12, 8, 6, 0.7) 100%);
  z-index: 2;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span.glow {
  background: linear-gradient(135deg, #ff7849 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.feature-stat-item {
  display: flex;
  flex-direction: column;
}

.feature-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.feature-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color-glow);
}

.hero-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-img-card:hover img {
  transform: scale(1.03);
}

.hero-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(22, 16, 12, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color-glow);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-fire);
}

/* HIGHLIGHT BANNER / QUICK STATS */
.highlights-section {
  padding: 4rem 0;
  background: var(--bg-surface);
  border-y: 1px solid var(--border-color);
}

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

.highlight-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  text-align: center;
}

.highlight-card:hover {
  border-color: var(--primary-fire);
  transform: translateY(-4px);
  box-shadow: var(--shadow-fire);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem auto;
  background: rgba(234, 88, 12, 0.12);
  color: var(--primary-fire);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* MENU SECTION */
.menu-section {
  padding: 6rem 0;
}

.menu-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);

}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-fire);
  color: #fff;
  border-color: var(--primary-fire);
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.35);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color-glow);
  box-shadow: var(--shadow-lg);
}

.menu-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.menu-card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.badge-tag {
  background: rgba(12, 8, 6, 0.8);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color-glow);
  text-transform: uppercase;
}

.menu-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.menu-card-title {
  font-size: 1.5rem;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.menu-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* PARALLAX SCROLL SECTION */
.parallax-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 6rem 0;
  border-y: 1px solid var(--border-color-glow);
}

.parallax-bg-wrapper {
  position: absolute;
  inset: -15%;
  z-index: 1;
  overflow: hidden;
}

.parallax-bg-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.45) contrast(1.1);
  transition: transform 0.1s linear;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 8, 6, 0.4) 0%, rgba(12, 8, 6, 0.85) 100%),
              linear-gradient(180deg, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
  z-index: 2;
}

.parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.parallax-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.parallax-quote {
  font-size: 1.35rem;
  color: var(--accent-gold);
  font-style: italic;
  margin-bottom: 2rem;
}

/* CUSTOM PIZZA BUILDER SECTION */
.customizer-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(12, 8, 6, 0.92) 0%, rgba(22, 16, 12, 0.88) 50%, rgba(12, 8, 6, 0.95) 100%),
              url('images/ambiance.jpg') center/cover fixed no-repeat;
  border-y: 1px solid var(--border-color);
}

.customizer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.customizer-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.pizza-stage {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, #f59e0b 0%, #b45309 60%, #78350f 100%);
  box-shadow: 0 0 50px rgba(234, 88, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.pizza-stage::after {
  content: '🍕';
  font-size: 8rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.customizer-price-display {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-gold);
}

.options-group {
  margin-bottom: 1.75rem;
}

.options-group-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.option-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.chip-checkbox {
  display: none;
}

.chip-label {
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.chip-checkbox:checked + .chip-label {
  background: var(--primary-fire);
  border-color: var(--primary-fire);
  color: #fff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* PROCESS / STORY SECTION */
.process-section {
  padding: 6rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.process-step-card {
  position: relative;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(245, 158, 11, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.process-step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* REVIEWS SECTION */
.reviews-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(12, 8, 6, 0.94) 0%, rgba(30, 21, 16, 0.9) 50%, rgba(12, 8, 6, 0.95) 100%),
              url('images/hero-pizza.jpg') center/cover fixed no-repeat;
}

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

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-fire);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-info h4 {
  font-size: 1rem;
  font-family: var(--font-body);
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* LOCATION & HOURS SECTION */
.location-section {
  padding: 6rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.location-info {
  padding: 3.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(234, 88, 12, 0.12);
  color: var(--primary-fire);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-placeholder {
  background: #121212;
  position: relative;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.map-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(22, 16, 12, 0.9);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color-glow);
  text-align: center;
}

/* SLIDING CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.active {
  right: 0;
}

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

.cart-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-surface);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  align-items: center;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin: 1rem 0;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
}

.promo-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-input {
  flex-grow: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: #fff;
}

/* MODALS (Reservation & Order Status) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 90%;
  max-width: 540px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-fire);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(22, 16, 12, 0.95);
  border: 1px solid var(--accent-gold);
  color: var(--text-main);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 4000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

/* FOOTER */
.site-footer {
  background: #060403;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid, .customizer-card, .location-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 3.25rem; }
  .highlights-grid, .process-grid, .reviews-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .live-status { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-title { font-size: 2.5rem; }
  .highlights-grid, .process-grid, .reviews-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .navbar-wrapper { top: 0.5rem; }
  .hero-features-bar { grid-template-columns: 1fr; }
}
