/* ============================================================
   CARNIVOR BURGER — Premium Dark CSS
   Author: Carnivor Digital System
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --black-primary:   #050505;
  --black-secondary: #111111;
  --black-card:      #0d0d0d;
  --gray:            #1a1a1a;
  --gray-mid:        #252525;
  --gray-light:      #333333;
  --gold:            #ff9d00;
  --gold-light:      #ffb74d;
  --gold-dark:       #cc7a00;
  --gold-glow:       rgba(255, 157, 0, 0.25);
  --gold-glow-strong:rgba(255, 157, 0, 0.55);
  --white:           #ffffff;
  --white-dim:       rgba(255,255,255,0.85);
  --text-secondary:  #a0a0a0;
  --text-muted:      #606060;
  --glass:           rgba(255,255,255,0.03);
  --glass-border:    rgba(255,157,0,0.12);
  --glass-hover:     rgba(255,157,0,0.08);
  --red-badge:       #e53935;
  --font-display:    'Cinzel', serif;
  --font-elegant:    'Cormorant Garamond', serif;
  --font-ui:         'Inter', sans-serif;
  --radius:          12px;
  --radius-lg:       20px;
  --shadow-gold:     0 0 30px rgba(255,157,0,0.2), 0 4px 20px rgba(0,0,0,0.6);
  --shadow-card:     0 8px 32px rgba(0,0,0,0.5);
  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  background: var(--black-primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.intro-active { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--black-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ── */
::selection { background: var(--gold-glow); color: var(--gold); }

/* ╔══════════════════════════════════════════════╗
   ║          INTRO / CINEMATIC SCREEN            ║
   ╚══════════════════════════════════════════════╝ */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}

#intro-screen.exit {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

#intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intro-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.smoke-layer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center bottom, rgba(255,157,0,0.07) 0%, transparent 70%);
  animation: smokeRise 4s ease-in-out infinite;
}

.smoke-layer:nth-child(2) {
  width: 800px;
  height: 400px;
  animation-delay: 1.3s;
  animation-duration: 5s;
  opacity: 0.6;
}

.smoke-layer:nth-child(3) {
  width: 400px;
  height: 600px;
  animation-delay: 2.6s;
  animation-duration: 4.5s;
  opacity: 0.4;
}

.intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  animation: introComeIn 1s ease-out forwards;
}

.intro-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: breathe 3s ease-in-out infinite;
}

.intro-flame {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 16px var(--gold)) drop-shadow(0 0 32px rgba(255,157,0,0.4));
  animation: flameFlicker 2s ease-in-out infinite;
}

.intro-brand-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-shadow:
    0 0 20px var(--gold-glow-strong),
    0 0 60px var(--gold-glow),
    0 0 100px rgba(255,157,0,0.15);
  line-height: 1;
}

.intro-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.intro-divider::before,
.intro-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}
.intro-divider::before { left: 0; }
.intro-divider::after  { right: 0; }

.intro-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.6em;
  color: var(--white-dim);
  text-transform: uppercase;
}

.intro-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-style: italic;
}

.intro-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 220px;
}

.loader-track {
  width: 100%;
  height: 1px;
  background: var(--gray);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--gold-glow);
  animation: loadProgress 3s ease-in-out forwards;
}

.loader-text {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ╔══════════════════════════════════════════════╗
   ║              MAIN APP REVEAL                 ║
   ╚══════════════════════════════════════════════╝ */
#main-app {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

#main-app.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ╔══════════════════════════════════════════════╗
   ║                NAVIGATION                    ║
   ╚══════════════════════════════════════════════╝ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-slow);
}

#navbar.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,157,0,0.1);
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  font-family: var(--font-ui);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black-primary);
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--glass-border);
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 99;
}

.nav-mobile.open { transform: translateY(0); }

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
}

/* ╔══════════════════════════════════════════════╗
   ║                HERO SECTION                  ║
   ╚══════════════════════════════════════════════╝ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 60%, rgba(255,157,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255,157,0,0.03) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #080808 50%, #050505 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(255,157,0,0.15) 0, transparent 0),
    radial-gradient(circle 1px at 80% 70%, rgba(255,157,0,0.1) 0, transparent 0);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow-left {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,157,0,0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero-glow-right {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,157,0,0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 5% 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-pretitle {
  display: inline-block;
  font-family: var(--font-elegant);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero-logo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px var(--gold-glow-strong));
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 0.9;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s ease-out 0.7s forwards;
}

.hero-title span {
  color: var(--gold);
  display: block;
  text-shadow: 0 0 40px var(--gold-glow-strong);
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.9s forwards;
  font-style: italic;
}

.hero-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.1s forwards;
}

.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.2s forwards;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.hero-info-item span { color: var(--gold); font-size: 1rem; }

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.4s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black-primary);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,157,0,0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25D366;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: rgba(37,211,102,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease-out 2s forwards;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,157,0,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ╔══════════════════════════════════════════════╗
   ║              OUR STORY SECTION               ║
   ╚══════════════════════════════════════════════╝ */
#story {
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 50%, var(--black-primary) 100%);
}

.story-bg-decor {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,157,0,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.story-bg-decor::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,157,0,0.06);
  border-radius: 50%;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text { position: relative; }

.section-label {
  display: inline-block;
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  color: var(--gold);
  font-style: normal;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.story-paragraph {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.story-quote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--glass);
  border-radius: 0 8px 8px 0;
}

.story-quote p {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
}

.story-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  position: relative;
}

.story-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.story-frame-inner {
  position: absolute;
  inset: 12px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,157,0,0.08) 0%, transparent 60%),
    var(--gray);
  border-radius: calc(var(--radius-lg) - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.story-frame-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow-strong);
  text-align: center;
}

.story-frame-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  padding: 0 24px 24px;
}

.stat-item {
  padding: 20px 16px;
  background: rgba(255,157,0,0.04);
  border: 1px solid rgba(255,157,0,0.1);
  text-align: center;
}

.stat-item:first-child { border-radius: var(--radius) 0 0 0; }
.stat-item:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.stat-item:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.stat-item:last-child   { border-radius: 0 0 var(--radius) 0; }

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-corner-decor {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}

.story-corner-decor.tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.story-corner-decor.tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; }
.story-corner-decor.bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; }
.story-corner-decor.br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }

/* ╔══════════════════════════════════════════════╗
   ║                MENU SECTION                  ║
   ╚══════════════════════════════════════════════╝ */
#menu {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,157,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,157,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Category Navigation */
.category-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  overflow: hidden;
}

.category-nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--gray);
  border-radius: 50px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  flex-wrap: nowrap;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: transparent;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.category-btn .cat-icon { font-size: 1rem; }

.category-btn:hover { color: var(--white); }

.category-btn.active {
  background: var(--gold);
  color: var(--black-primary);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255,157,0,0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(255,157,0,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .product-card-image img { transform: scale(1.08); }

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, transparent 50%);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray) 0%, var(--gray-mid) 100%);
  font-size: 3.5rem;
  color: rgba(255,157,0,0.15);
}

.badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.badge-bestseller {
  background: var(--gold);
  color: var(--black-primary);
}

.badge-new {
  background: rgba(229,57,53,0.9);
  color: var(--white);
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.3;
}

.product-description {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: rgba(255,157,0,0.1);
  border: 1px solid rgba(255,157,0,0.3);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-add-cart:hover {
  background: var(--gold);
  color: var(--black-primary);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(255,157,0,0.3);
}

.btn-add-cart.added {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.5);
  color: #25D366;
}

/* Products empty state */
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* ╔══════════════════════════════════════════════╗
   ║              PRODUCT MODAL                   ║
   ╚══════════════════════════════════════════════╝ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  background: var(--black-card);
  border: 1px solid rgba(255,157,0,0.15);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

.modal-overlay.open .product-modal {
  transform: translateY(0) scale(1);
}

.modal-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray);
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image-wrap .product-placeholder { aspect-ratio: 16/9; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gold);
  color: var(--black-primary);
  border-color: var(--gold);
}

.modal-body {
  padding: 28px;
}

.modal-badges { margin-bottom: 12px; display: flex; gap: 8px; }

.modal-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.modal-desc {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.modal-obs-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}

.modal-obs-input {
  width: 100%;
  background: var(--gray);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.88rem;
  resize: vertical;
  min-height: 70px;
  transition: var(--transition);
  margin-bottom: 24px;
}

.modal-obs-input:focus {
  outline: none;
  border-color: rgba(255,157,0,0.5);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.modal-price-wrap { display: flex; flex-direction: column; }
.modal-price-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.modal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.modal-qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--glass-hover); }

.qty-value {
  min-width: 44px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  padding: 0 8px;
}

.btn-modal-add {
  flex: 1;
  min-width: 180px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--black-primary);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-modal-add:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,157,0,0.4);
}

/* ╔══════════════════════════════════════════════╗
   ║               CART SIDEBAR                   ║
   ╚══════════════════════════════════════════════╝ */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: var(--black-secondary);
  border-left: 1px solid rgba(255,157,0,0.12);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

#cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-title-icon { color: var(--gold); font-size: 1.2rem; }

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--black-primary);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 0 4px;
}

.cart-close {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-close:hover { border-color: var(--gold); color: var(--gold); }

.cart-stage {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

/* Cart Stage: Items */
.cart-items-stage { display: flex; flex-direction: column; height: 100%; }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
}

.cart-empty-icon { font-size: 4rem; opacity: 0.3; }
.cart-empty-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.cart-empty-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  animation: cartItemIn 0.3s ease-out;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray);
  flex-shrink: 0;
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img .product-placeholder { width: 100%; height: 100%; font-size: 1.5rem; }

.cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-obs {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.cart-item-controls { display: flex; align-items: center; gap: 4px; }

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--gray);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-qty-btn:hover { background: var(--glass-hover); border-color: var(--gold); }

.cart-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 4px;
}

.cart-item-remove:hover {
  background: rgba(229,57,53,0.1);
  border-color: rgba(229,57,53,0.3);
  color: #e53935;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--glass-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--black-card);
}

.cart-totals { display: flex; flex-direction: column; gap: 8px; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cart-total-row.total {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 8px;
  border-top: 1px solid var(--glass-border);
}

.cart-total-row.total .total-value { color: var(--gold); font-size: 1.3rem; }

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black-primary);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-checkout:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(255,157,0,0.4);
}

/* Cart Stage: Checkout */
.checkout-stage { padding: 24px; display: flex; flex-direction: column; gap: 20px; }

.checkout-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}

.checkout-back:hover { color: var(--gold); }

.checkout-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input, .form-textarea {
  background: var(--gray);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(255,157,0,0.5);
  box-shadow: 0 0 0 3px rgba(255,157,0,0.08);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-textarea { resize: vertical; min-height: 80px; }

.form-input.error { border-color: rgba(229,57,53,0.6); }

.checkout-order-summary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px;
}

.summary-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.summary-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.summary-item-name { flex: 1; padding-right: 10px; }
.summary-item-qty { color: var(--gold); font-weight: 600; margin-right: 8px; }
.summary-item-price { font-weight: 600; color: var(--white); }

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--glass-border);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

/* Payment method selector */
.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.payment-option:hover { border-color: rgba(255,157,0,0.3); color: var(--white); }

.payment-option input[type="radio"] {
  display: none;
}

.payment-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(255,157,0,0.08);
  color: var(--gold);
  font-weight: 600;
}

.pay-icon { font-size: 1.1rem; }

.btn-send-whatsapp {
  width: 100%;
  padding: 18px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transform: translateY(-2px);
}

/* ╔══════════════════════════════════════════════╗
   ║              FLOATING BUTTONS                ║
   ╚══════════════════════════════════════════════╝ */
#fab-container {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 150;
}

#cart-fab {
  width: 58px;
  height: 58px;
  background: var(--gold);
  color: var(--black-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255,157,0,0.5);
  transition: var(--transition);
  position: relative;
}

#cart-fab:hover {
  background: var(--gold-light);
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(255,157,0,0.6);
}

#cart-fab.pulse { animation: fabPulse 0.4s ease-out; }

.fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  background: var(--red-badge);
  color: var(--white);
  border: 2px solid var(--black-primary);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  display: none;
}

.fab-badge.visible { display: flex; }

#whatsapp-fab {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}

#whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ╔══════════════════════════════════════════════╗
   ║                  FOOTER                      ║
   ╚══════════════════════════════════════════════╝ */
footer {
  background: var(--black-card);
  border-top: 1px solid rgba(255,157,0,0.08);
  padding: 60px 5% 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-desc {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--glass-hover); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-info-list { display: flex; flex-direction: column; gap: 12px; }

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-info-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-hours-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,157,0,0.1);
  border: 1px solid rgba(255,157,0,0.2);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-copy a { color: var(--gold); }

/* ╔══════════════════════════════════════════════╗
   ║          SCROLL REVEAL ANIMATIONS            ║
   ╚══════════════════════════════════════════════╝ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.reveal-left  { transform: translateX(-50px); }
.reveal.reveal-right { transform: translateX(50px); }
.reveal.reveal-fade  { transform: none; }
.reveal.revealed     { opacity: 1; transform: none !important; }

/* ╔══════════════════════════════════════════════╗
   ║                 KEYFRAMES                    ║
   ╚══════════════════════════════════════════════╝ */
@keyframes smokeRise {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0) scaleX(1); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-160px) scaleX(2.5); }
}

@keyframes breathe {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,157,0,0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 50px rgba(255,157,0,0.9)); transform: scale(1.025); }
}

@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) rotate(0deg); }
  25%       { transform: scaleY(1.08) rotate(-2deg); }
  75%       { transform: scaleY(0.95) rotate(2deg); }
}

@keyframes introComeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes loadProgress {
  0%   { width: 0%; }
  30%  { width: 40%; }
  60%  { width: 70%; }
  85%  { width: 88%; }
  100% { width: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.1); }
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes fabPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* ── MODAL EXTRAS / ADICIONAIS ── */
.modal-extras-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: var(--transition);
}

.extra-item:hover { border-color: rgba(255,157,0,0.25); }

.extra-item.selected {
  border-color: rgba(255,157,0,0.4);
  background: rgba(255,157,0,0.06);
}

.extra-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.extra-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}

.extra-price {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.extra-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.extra-qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.extra-qty-btn:hover { background: var(--glass-hover); }
.extra-qty-btn:disabled { opacity: 0.3; cursor: default; }

.extra-qty-val {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: 0 4px;
}

.modal-extras-empty {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Cart item extras display */
.cart-item-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 3px;
}

.cart-item-extra-tag {
  font-size: 0.68rem;
  color: var(--gold);
  background: rgba(255,157,0,0.08);
  border: 1px solid rgba(255,157,0,0.2);
  border-radius: 4px;
  padding: 2px 7px;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--gray) 25%, var(--gray-mid) 50%, var(--gray) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}

/* ╔══════════════════════════════════════════════╗
   ║              RESPONSIVE - TABLET             ║
   ╚══════════════════════════════════════════════╝ */
@media (max-width: 1024px) {
  .story-container { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { order: -1; }
  .story-card-frame { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ╔══════════════════════════════════════════════╗
   ║              RESPONSIVE - MOBILE             ║
   ╚══════════════════════════════════════════════╝ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger       { display: flex; }

  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .hero-buttons .btn-whatsapp { justify-content: center; }
  .hero-info { gap: 14px; }

  #story    { padding: 80px 5%; }
  #menu     { padding: 80px 5%; }
  footer    { padding: 48px 5% 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

  .category-nav { padding: 4px; }
  .category-btn { padding: 8px 16px; font-size: 0.72rem; }

  #cart-sidebar { max-width: 100%; }

  .modal-body { padding: 20px; }
  .modal-footer { flex-direction: column; }
  .btn-modal-add { width: 100%; }

  .checkout-stage { padding: 16px; }

  #fab-container { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .intro-brand-name { font-size: clamp(2.5rem, 13vw, 4rem); letter-spacing: 0.15em; }
  .hero-title { font-size: clamp(2.4rem, 14vw, 3.5rem); }
  .products-grid { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════╗
   ║                 UTILITIES                    ║
   ╚══════════════════════════════════════════════╝ */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.d-none     { display: none !important; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Notification Toast */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--gray);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 14px 20px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 9998;
  transform: translateX(140%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  max-width: 280px;
  box-shadow: var(--shadow-card);
}

.toast.show { transform: translateX(0); }
.toast.success { border-left-color: #25D366; }
.toast.error   { border-left-color: var(--red-badge); }
