/* Snackbar 24/7 - Premium Luxury Dark & Neon Gold Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #0B0C10;
  --bg-card: #12141C;
  --bg-card-hover: #1A1D28;
  --bg-elevated: #181B26;
  
  --gold-primary: #E5B842;
  --gold-glow: #FFD700;
  --gold-dark: #A88220;
  --gold-gradient: linear-gradient(135deg, #FFF1B0 0%, #E5B842 50%, #B8860B 100%);
  
  --red-accent: #D9381E;
  --red-glow: #FF4D30;
  --red-gradient: linear-gradient(135deg, #FF5E42 0%, #D9381E 100%);
  
  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-gold: #F3D078;
  
  --border-subtle: rgba(229, 184, 66, 0.2);
  --border-glow: rgba(229, 184, 66, 0.6);
  --glass-bg: rgba(18, 20, 28, 0.92);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-gold: 0 0 25px rgba(229, 184, 66, 0.25);
  --shadow-red: 0 0 20px rgba(217, 56, 30, 0.35);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base with Strict Viewport Clipping */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip !important;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(229, 184, 66, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(217, 56, 30, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* Scroll Progress Bar */
.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--bg-dark);
  z-index: 1100;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold-glow);
  transition: width 0.1s ease-out;
}

/* Header & Navbar - Strict Mobile Fit */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1.25rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: 0; /* Prevents flex item overflow */
}

.brand-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 12px rgba(229, 184, 66, 0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  color: #4ADE80;
  font-size: 0.825rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.status-pill.closed {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 2s infinite;
}

.status-pill.closed .status-dot {
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(229, 184, 66, 0.6);
}

.btn-cart-toggle {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-cart-toggle:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(229, 184, 66, 0.2);
}

.cart-count-badge {
  background: var(--red-accent);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* HERO SECTION */
.hero-wrapper {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  background: 
    linear-gradient(180deg, rgba(11, 12, 16, 0.4) 0%, rgba(11, 12, 16, 0.95) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-glow-spotlight {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 184, 66, 0.15) 0%, rgba(217, 56, 30, 0.08) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(229, 184, 66, 0.1);
  border: 1px solid var(--border-glow);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(229, 184, 66, 0.15);
}

.hero-title-main {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.hero-title-main .gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title-main .highlight-red {
  color: #FF4D30;
  text-shadow: 0 0 25px rgba(255, 77, 48, 0.5);
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #D1D5DB;
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.25rem;
  background: #25D366;
  color: #FFF;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
  background: #20BA59;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(37, 211, 102, 0.65);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2rem;
  background: var(--gold-gradient);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(229, 184, 66, 0.6);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.proof-text h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.proof-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Visual Composition Right */
.hero-visual-right {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
}

.hero-card-showcase {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-showcase-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 184, 66, 0.35);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.hero-showcase-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(229, 184, 66, 0.5);
}

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

/* Floating Glass Cards */
.floating-glass-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 15px 35px rgba(0,0,0,0.8), var(--shadow-gold);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.floating-badge-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-primary);
  flex-shrink: 0;
}

.floating-glass-card {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 15px 35px rgba(0,0,0,0.8);
  animation: float 5s ease-in-out infinite 1s;
  z-index: 10;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.25rem;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Feature Highlights Bar */
.features-bar {
  max-width: 1280px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(229, 184, 66, 0.1);
  border: 1px solid rgba(229, 184, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section Common Header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
}

/* Categories Filter Bar */
.menu-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.category-nav {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.5rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) var(--bg-card);
}

.category-nav::-webkit-scrollbar {
  height: 6px;
}

.category-nav::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

.cat-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.cat-btn:hover {
  color: var(--text-main);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.cat-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-glow);
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

/* Menu Grid & Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red-gradient);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.menu-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #181A22;
  position: relative;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

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

.menu-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

.item-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-gold);
}

.btn-add-cart {
  background: rgba(229, 184, 66, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--shadow-gold);
}

/* POSTCODE & DELIVERY ZONE CHECKER SECTION */
.zone-checker-section {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.zone-checker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.zone-input-group {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 1.5rem auto 1rem;
}

@media (max-width: 480px) {
  .zone-input-group {
    flex-direction: column;
  }
  .btn-check-zone {
    width: 100%;
    justify-content: center;
  }
}

.zone-input {
  flex-grow: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.25rem;
  color: #FFF;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.zone-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(229, 184, 66, 0.3);
}

.btn-check-zone {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-check-zone:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

.zone-result-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: none;
}

.zone-result-box.success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ADE80;
}

.zone-result-box.info {
  display: block;
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--gold-primary);
}

/* CUSTOMIZATION SAUCE MODAL */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal-card {
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), var(--shadow-gold);
  position: relative;
}

.custom-modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.custom-group-title {
  font-size: 0.95rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin: 1.25rem 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.option-radio-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.option-radio-btn:hover {
  border-color: var(--gold-primary);
}

.option-radio-btn input {
  accent-color: var(--gold-primary);
}

.btn-confirm-custom {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 1.75rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
}

.btn-confirm-custom:hover {
  transform: scale(1.02);
}

/* REVIEWS TESTIMONIALS CAROUSEL */
.reviews-section {
  max-width: 1280px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-fast);
}

.review-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.review-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: #D1D5DB;
  font-style: italic;
  margin-bottom: 1.25rem;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h5 {
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ ACCORDION SECTION */
.faq-section {
  max-width: 900px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  display: none;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

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

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--gold-primary);
}

/* MOBILE STICKY BOTTOM QUICK ACTIONS BAR */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glow);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1050;
}

@media (min-width: 769px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-action-btn.active, .mobile-action-btn:hover {
  color: var(--gold-primary);
}

.mobile-action-btn.whatsapp-highlight {
  color: #25D366;
}

/* 3-Step Ordering Guide Section */
.order-steps-section {
  background: rgba(18, 20, 28, 0.6);
  border-y: 1px solid var(--border-subtle);
  padding: 4rem 1.5rem;
  margin-bottom: 4rem;
}

.steps-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-fast);
}

.step-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}

.step-icon {
  font-size: 2.5rem;
  margin: 0.75rem 0 1rem;
  display: inline-block;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Flyer & Info Section */
.info-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

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

.flyer-preview-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(229, 184, 66, 0.25);
  cursor: pointer;
}

.flyer-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.flyer-preview-wrap:hover .flyer-img {
  transform: scale(1.02);
}

.flyer-overlay-hint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition-fast);
}

.flyer-preview-wrap:hover .flyer-overlay-hint {
  opacity: 1;
}

.info-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.info-detail-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

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

.info-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(229, 184, 66, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-detail-content h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.info-detail-content p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.bank-info-box {
  background: rgba(229, 184, 66, 0.05);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.bank-info-box h5 {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.bank-info-box p {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-main);
}

/* Shopping Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-close-cart {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition-fast);
}

.btn-close-cart:hover {
  color: var(--text-main);
}

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

.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info h5 {
  font-size: 0.975rem;
  color: var(--text-main);
}

.cart-item-options {
  font-size: 0.78rem;
  color: var(--gold-primary);
  margin-top: 0.15rem;
}

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

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.5rem;
}

.btn-qty {
  background: transparent;
  border: none;
  color: var(--text-main);
  width: 24px;
  height: 24px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-form-group {
  margin-top: 1.5rem;
}

.cart-form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.cart-input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.cart-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(229, 184, 66, 0.2);
}

.order-type-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--bg-dark);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.type-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}

.type-btn.active {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
}

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

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cart-total-amount {
  color: var(--gold-primary);
}

.btn-send-whatsapp {
  width: 100%;
  padding: 0.9rem;
  background: #25D366;
  color: #FFF;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.btn-send-whatsapp:hover {
  background: #20BA59;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

/* Lightbox Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-img-container {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.modal-img-container img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-primary);
}

.btn-close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFF;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #08090C;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--gold-primary);
}

.footer-sub {
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

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

/* ============================================================
   MOBILE RESPONSIVE CLEANUP & STRICT VIEWPORT LOCK (< 768px)
   ============================================================ */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content-left {
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.65rem 0.85rem;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-title span {
    display: none; /* Hide subtitle under brand title on mobile */
  }

  .btn-phone span {
    display: none; /* Keep icon button for phone on mobile to save width */
  }

  .btn-phone {
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-full);
  }

  .btn-cart-toggle {
    padding: 0.45rem 0.75rem;
  }

  .status-pill {
    display: none;
  }
  
  .hero-wrapper {
    padding: 2rem 1rem 2.5rem;
    min-height: auto;
    background: 
      linear-gradient(180deg, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0.98) 100%),
      url('images/hero-bg.jpg') center/cover no-repeat;
  }
  
  .hero-content-left {
    background: rgba(18, 20, 28, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }

  .hero-pill-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.85rem;
  }

  .hero-title-main {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.85rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  }

  .hero-description {
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
  }

  .hero-cta-group {
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .hero-social-proof {
    display: none;
  }

  .hero-showcase-img {
    height: 220px;
  }

  /* Keep badge centered and inline on mobile to prevent side overflow */
  .floating-glass-badge {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0 auto 0.75rem;
    width: fit-content;
    white-space: normal;
    animation: none;
  }

  .floating-glass-card {
    display: none;
  }
}
