/* ==========================================================================
   VESPER CROW PIZZA - DESIGN SYSTEM & BRAND STYLE (3D EXPERIENCE & CYAN NEON)
   Theme: Alquimia de Zafiro, Horno de Leña, Cuervos & Vidrio Holográfico 3D
   ========================================================================== */

:root {
    /* Color Palette (Cozy Warm Cream & Terracotta Italian Pizzeria Theme) */
    --bg-base: #FAF6F0; /* Warm cozy cream linen */
    --bg-darker: #F3EAE0; /* Soft warm dough beige */
    --bg-glass: rgba(255, 255, 255, 0.55); /* White translucent glass */
    --bg-glass-heavy: rgba(255, 255, 255, 0.86); /* Heavier white glass pane */
    
    --accent-cyan: #D34E36; /* Warm tomato terracotta red */
    --accent-cyan-hover: #B53821;
    --accent-cyan-glow: rgba(211, 78, 54, 0.18);
    
    --accent-sapphire: #4E7D58; /* Fresh basil/oregano green */
    --accent-sapphire-hover: #3B5F43;
    --accent-sapphire-glow: rgba(78, 125, 88, 0.2);
    
    --brand-red: #D34E36;
    --brand-red-hover: #B53821;
    --brand-blue-delivery: #D87D2D; /* Crust warm orange */
    
    --border-light: rgba(211, 78, 54, 0.12);
    --border-glow: rgba(211, 78, 54, 0.32);
    
    --color-text: #2E1B10; /* Cozy dark roasted espresso brown */
    --color-text-muted: #735D4E; /* Warm gray-brown */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-cyan-glow: 0 10px 30px rgba(211, 78, 54, 0.12);
    --shadow-sapphire-glow: 0 10px 35px rgba(78, 125, 88, 0.1);
    --shadow-premium: 0 15px 40px rgba(42, 27, 16, 0.08);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Interactive Cursor Glow (Magical Light Follower) */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 176, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 1s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan-hover);
}

/* Background Slideshow */
.body-background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.07em;
}

.text-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 0.82rem;
}

.btn-cyan {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    border: 1px solid var(--accent-cyan);
}

.btn-cyan:hover {
    background-color: var(--accent-cyan-hover);
    border-color: var(--accent-cyan-hover);
    box-shadow: var(--shadow-cyan-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid rgba(255, 176, 59, 0.35); /* Elegant Gold border */
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background-color: rgba(255, 176, 59, 0.08);
    box-shadow: 0 0 20px rgba(255, 176, 59, 0.2);
    transform: translateY(-3px);
}

.btn-red {
    background-color: var(--brand-red);
    color: #ffffff;
    border: 1px solid var(--brand-red);
}

.btn-red:hover {
    background-color: var(--brand-red-hover);
    border-color: var(--brand-red-hover);
    box-shadow: 0 0 20px rgba(214, 48, 49, 0.5); /* Deep Burgundy glow */
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: var(--accent-sapphire);
    color: #ffffff;
    border: 1px solid var(--accent-sapphire);
}

.btn-whatsapp:hover {
    background-color: var(--accent-sapphire-hover);
    border-color: var(--accent-sapphire-hover);
    box-shadow: var(--shadow-sapphire-glow);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.9rem;
}

/* Dividers */
.cyan-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-cyan);
    margin: 20px auto 0;
    box-shadow: var(--shadow-cyan-glow);
}

.cyan-divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--accent-cyan);
    margin: 20px 0;
    box-shadow: var(--shadow-cyan-glow);
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
}

.section-subtitle {
    color: var(--color-text-muted);
    margin-top: 12px;
    font-size: 0.95rem;
}

/* Main Header (Totally Transparent Navigation) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    border-bottom: none;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition-smooth);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
    transition: var(--transition-smooth);
}

.brand-name {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5px 10px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    border: 1px solid transparent; /* Prevent layout shift */
}

.nav-link:hover {
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.4), 0 0 20px rgba(0, 245, 255, 0.2), inset 0 0 8px rgba(0, 245, 255, 0.2);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
    font-weight: 700;
}

/* Sound Toggle Button */
.sound-toggle-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    margin-left: 6px;
}

.sound-toggle-btn:hover,
.sound-toggle-btn.active {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--bg-darker);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.25);
}

/* Scrolled Header Style */
.main-header.scrolled {
    background-color: rgba(2, 4, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
}

.main-header.scrolled .header-container {
    height: 75px;
}

.main-header.scrolled .brand-logo {
    width: 45px;
    height: 45px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    perspective: 1800px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform-origin: right center;
    transform: rotateY(90deg) translateZ(-300px) scale(0.85);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform-origin: center center;
    transform: rotateY(0deg) translateZ(0) scale(1);
}

.hero-slide.prev {
    opacity: 0;
    z-index: 1;
    transform-origin: left center;
    transform: rotateY(-90deg) translateZ(-300px) scale(0.85);
}

#emberCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
    transition: transform 0.15s ease-out; /* Mouse parallax */
}

.promo-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(2, 4, 8, 0.85);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 6px 16px 6px 6px;
    margin-bottom: 24px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pill-highlight {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 10px;
    text-transform: uppercase;
}

.pill-text {
    color: var(--color-text);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #ffffff; /* Pure white for maximum contrast */
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Right: 3D Floating Badge (Enlarged to 350px) */
.hero-visual-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.floating-3d-badge {
    width: 350px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 2.5px solid var(--border-light);
    border-radius: 50%;
    position: absolute; /* Set to absolute so we can animate it via JS */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.75), inset 0 0 50px rgba(0, 245, 255, 0.06);
    transition: transform 0.1s ease-out, box-shadow 0.4s;
    z-index: 10;
}

/* Rotating outer gold ring in 3D */
.floating-3d-badge::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px dashed #ffb03b;
    opacity: 0.55;
    animation: rotateOuterRing 25s linear infinite;
    pointer-events: none;
    transform: translateZ(-15px);
    box-shadow: 0 0 15px rgba(255, 176, 59, 0.1);
}

@keyframes rotateOuterRing {
    0% { transform: translateZ(-15px) rotate(0deg); }
    100% { transform: translateZ(-15px) rotate(360deg); }
}

.floating-3d-badge:hover {
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.9), var(--shadow-cyan-glow), 0 0 40px rgba(255, 176, 59, 0.15);
}

/* Gold Decorative Typography Divider */
.gold-deco-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.deco-line {
    height: 1px;
    background: linear-gradient(to right, #ffb03b, transparent);
    width: 80px;
}

.deco-icon {
    color: #ffb03b;
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(255, 176, 59, 0.5);
    animation: pulseDeco 2s infinite alternate ease-in-out;
}

@keyframes pulseDeco {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Animated Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow-only {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--bg-glass-heavy);
    border: 1.5px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-size: 1.25rem;
    box-shadow: var(--shadow-premium), 0 0 15px var(--accent-cyan-glow);
    cursor: pointer;
    animation: bounceArrow 2s infinite ease-in-out;
    transition: var(--transition-smooth);
}

.scroll-arrow-only:hover {
    background-color: var(--accent-cyan);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(211, 78, 54, 0.4);
    transform: scale(1.1);
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.badge-logo-img {
    width: 84%;
    height: 84%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    transform: translateZ(45px); /* Big 3D pop */
    pointer-events: none;
}

.badge-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    transform: translateZ(50px);
}

.badge-ring-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    transform: translateZ(-30px);
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-base), transparent);
    z-index: 1;
}

/* Section: The Alchemy of Fire */
.alchemy-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(10, 7, 5, 0.96), rgba(10, 7, 5, 0.96)), url('assets/oven_fire.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect! */
    border-bottom: 1px solid var(--border-light);
}

.alchemy-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-desc {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.alchemy-signature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sig-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--accent-cyan);
}

.alchemy-signature h4 {
    font-size: 0.95rem;
    color: #ffffff;
}

.alchemy-signature span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.alchemy-visual-block {
    position: relative;
    display: flex;
    justify-content: center;
}

.frame-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.frame-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, var(--accent-cyan-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Section: The Golden Scroll (Menu Cards) */
.menu-section {
    padding: 100px 0;
    position: relative;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: var(--bg-glass);
    border: 1px solid var(--border-light);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

/* Staggered entry animation for pastas and complementos showcase items */
.tab-content.active .showcase-item:nth-child(1) {
    animation: slideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tab-content.active .showcase-item:nth-child(2) {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tab-content.active .showcase-img-wrapper {
    animation: slideInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.menu-card {
    background: linear-gradient(135deg, rgba(2, 4, 8, 0.5) 0%, rgba(2, 4, 8, 0.2) 100%); 
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.12s ease-out, border-color 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-cyan-glow);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-badge.cyan-badge {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    border-color: var(--accent-cyan);
}

.card-badge.red-badge {
    background-color: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
}

.card-badge.green-badge {
    background-color: var(--accent-sapphire);
    color: #ffffff;
    border-color: var(--accent-sapphire);
}

.menu-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    padding-right: 80px;
}

.menu-card .ingredients {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.card-footer button,
.btn-order-c4-menu {
    background-color: rgba(255, 176, 59, 0.08);
    border: 1px solid var(--border-light);
    color: var(--accent-cyan);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.card-footer button:hover,
.btn-order-c4-menu:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
    transform: scale(1.15);
}

/* Custom styles for C4 select lists in Card */
.c4-menu-flavors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.c4-flavor-select,
.menu-pizza-size-select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.c4-flavor-select option,
.menu-pizza-size-select option {
    background-color: #05070a !important;
    color: #ffffff !important;
}

/* Premium items (Lasagna & Pastas) */
.showcase-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.showcase-row.reverse-row {
    grid-template-columns: 0.9fr 1.1fr;
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.showcase-item {
    background: linear-gradient(135deg, rgba(2, 4, 8, 0.5) 0%, rgba(2, 4, 8, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.showcase-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.showcase-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.item-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 100px;
}

.item-price {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 1.25rem;
    font-weight: 700;
}

.showcase-img-wrapper {
    position: relative;
}

.showcase-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
}

/* Section: The Ember Hearth (Parallax) */
.experience-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.experience-container {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.experience-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 30px 0 50px;
}

.experience-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background-color: rgba(2, 4, 8, 0.45);
    border: 1.5px solid var(--border-light);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-cyan);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    text-shadow: 0 0 15px var(--accent-cyan-glow);
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section: The Alchemist's Bench (Pizza Lab) */
.taller-section {
    padding: 100px 0;
}

.taller-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.taller-plate {
    background: linear-gradient(135deg, rgba(2, 4, 8, 0.5) 0%, rgba(2, 4, 8, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 120px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.visual-crust {
    width: 320px;
    height: 320px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="47" fill="%23c68b59" stroke="%23704828" stroke-width="4"/></svg>');
    background-size: cover;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-crust::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 6px dashed rgba(255, 176, 59, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(255, 176, 59, 0.5);
    z-index: 1;
}

.visual-crust.has-cheese-edge::after {
    opacity: 1;
    animation: cheesePulse 1.5s infinite alternate;
}

@keyframes cheesePulse {
    0% { transform: scale(0.99); opacity: 0.6; }
    100% { transform: scale(1.01); opacity: 1; }
}

.visual-sauce {
    width: 270px;
    height: 270px;
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-sauce.has-pomodoro {
    background-color: #9e1c1c;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.visual-sauce.has-blanca {
    background-color: #f0f0e8;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.visual-cheese {
    width: 250px;
    height: 250px;
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.4s ease;
}

.visual-cheese.active {
    background-color: rgba(253, 236, 178, 0.8);
    box-shadow: inset 0 0 15px rgba(229, 193, 88, 0.3);
}

.visual-ingredients-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.visual-ing-item {
    position: absolute;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ingredientFall 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: none;
    z-index: 10;
}

/* Custom CSS Shapes for Gourmet Ingredients */
.visual-ing-item.ing-pepperoni {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 35%, #e15f41, #b33939);
    border-radius: 50%;
    border: 1.5px solid #842020;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);
}
.visual-ing-item.ing-pepperoni::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #5c1d1d;
    border-radius: 50%;
    top: 6px;
    left: 8px;
    box-shadow: 8px 10px 0 #5c1d1d, 12px 3px 0 #5c1d1d, 4px 14px 0 #5c1d1d;
}

.visual-ing-item.ing-jamon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
    border: 1px solid #c84cb2;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.visual-ing-item.ing-salchicha {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 40% 40%, #aa8f71, #7b6249);
    border-radius: 50%;
    border: 1.5px solid #54412f;
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

.visual-ing-item.ing-tocino {
    width: 28px;
    height: 12px;
    background: linear-gradient(to right, #ff7675, #d63031, #ff7675, #ffeaa7);
    border: 1px solid #751a1a;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.visual-ing-item.ing-pollo {
    width: 22px;
    height: 14px;
    background: #f7d794;
    border: 1px solid #e1b12c;
    border-radius: 4px 8px 3px 6px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.visual-ing-item.ing-champinones {
    width: 22px;
    height: 20px;
    background: #f5f6fa;
    border: 1px solid #dcdde1;
    border-radius: 12px 12px 4px 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}
.visual-ing-item.ing-champinones::after {
    content: '';
    position: absolute;
    bottom: -6px;
    width: 6px;
    height: 8px;
    background: #dcdde1;
    border-radius: 2px;
}

.visual-ing-item.ing-pina {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #feca57;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

.visual-ing-item.ing-pimiento {
    width: 24px;
    height: 24px;
    border: 4px solid #1dd1a1;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.visual-ing-item.ing-cebolla {
    width: 26px;
    height: 26px;
    border: 3px double #a29bfe;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.visual-ing-item.ing-jalapeno {
    width: 22px;
    height: 22px;
    border: 4px solid #10ac84;
    background: rgba(16, 172, 132, 0.2);
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}
.visual-ing-item.ing-jalapeno::after {
    content: '..';
    font-size: 8px;
    color: #ffeca7;
    position: absolute;
    top: -2px;
    left: 4px;
}

.visual-ing-item.ing-aceitunas {
    width: 16px;
    height: 16px;
    border: 5px solid #2f3640;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

.visual-ing-item.ing-jitomate {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #ff7675 40%, #d63031 80%);
    border: 1px solid #7c1616;
    border-radius: 50%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

@keyframes ingredientFall {
    0% { transform: translateY(-100px) scale(0); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.canvas-hint {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Control Column */
.taller-controls-column {
    background: linear-gradient(135deg, rgba(2, 4, 8, 0.5) 0%, rgba(2, 4, 8, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.taller-group {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.taller-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.taller-group-title {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.taller-step {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
}

.radio-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tile-radio input {
    display: none;
}

.tile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tile-radio input:checked + .tile-card {
    background-color: rgba(0, 245, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
}

.tile-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.tile-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Checkbox Toggle */
.checkbox-toggle .toggle-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.checkbox-toggle input {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 46px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 3px;
    left: 4px;
    transition: var(--transition-smooth);
}

.checkbox-toggle input:checked + .toggle-slider {
    background-color: var(--accent-cyan);
}

.checkbox-toggle input:checked + .toggle-slider::before {
    transform: translateX(20px);
    background-color: var(--bg-darker);
}

.toggle-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Radio buttons row */
.radio-buttons-row {
    display: flex;
    gap: 15px;
}

.radio-btn-label input {
    display: none;
}

.radio-btn-text {
    display: block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.radio-btn-label input:checked + .radio-btn-text {
    background-color: rgba(0, 245, 255, 0.08);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Ingredients selector grid */
.ingredients-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ing-check-label input {
    display: none;
}

.ing-check-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.ing-check-label input:checked + .ing-check-box {
    background-color: rgba(255, 176, 59, 0.12);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(255, 176, 59, 0.05);
}

.ing-check-box i {
    font-size: 0.75rem;
    opacity: 0.5;
}

.ing-check-label input:checked + .ing-check-box i {
    opacity: 1;
}

/* Summary Box */
.taller-summary-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(0, 245, 255, 0.12);
    padding: 24px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.summary-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    cursor: pointer;
}

.summary-select option {
    background-color: #05070a;
    color: #ffffff;
}

.summary-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 15px 0;
}

.total-row {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* Section: The Refuges (Branches & Map) */
.branches-section {
    padding: 100px 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.branch-card {
    background: linear-gradient(135deg, rgba(2, 4, 8, 0.5) 0%, rgba(2, 4, 8, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.12s ease-out, border-color 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.branch-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-cyan-glow);
}

.branch-header {
    height: 160px;
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branch-badge {
    align-self: flex-start;
    background-color: var(--accent-sapphire);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.branch-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.branch-body {
    padding: 24px;
}

.branch-body p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.branch-body p i {
    color: var(--accent-cyan);
    margin-right: 6px;
}

/* Map Wrapper */
.map-wrapper {
    background: linear-gradient(135deg, rgba(2, 4, 8, 0.5) 0%, rgba(2, 4, 8, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.map-header h3 {
    font-size: 1.2rem;
    color: #ffffff;
}

.map-header h3 i {
    color: var(--accent-cyan);
    margin-right: 8px;
}

.map-element {
    height: 350px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-feedback {
    margin-top: 12px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-cyan);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-contact p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: var(--accent-cyan);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 10px;
}

/* Shopping Cart Sidebar - Redesigned to Match El Fogón Premium Dark Drawer */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background-color: #0c0907;
    border-left: 1px solid rgba(255, 176, 59, 0.25);
    z-index: 100000 !important;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.9);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 176, 59, 0.2);
    flex-shrink: 0;
}

.cart-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: #ffb03b;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.cart-close:hover {
    color: #ffb03b;
    background-color: rgba(255, 176, 59, 0.15);
    border-color: #ffb03b;
    transform: rotate(90deg);
}

.receipt-printer-slot {
    display: none;
}

/* The Cart Items List Container (El Fogón Dark Drawer Style) */
.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    background-position: bottom left;
    padding-bottom: 30px;
    
    /* Printing slide down animation */
    animation: printReceipt 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Faint elegant watermark in the center of the receipt */
.cart-items::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 180px;
    height: 180px;
    background: url('assets/logo.jpg') no-repeat center;
    background-size: contain;
    opacity: 0.038;
    pointer-events: none;
    z-index: 0;
}

@keyframes printReceipt {
    0% { max-height: 0; opacity: 0; transform: translateY(-30px); }
    100% { max-height: 2000px; opacity: 1; transform: translateY(0); }
}

/* Receipt Typography and Layout */
.receipt-header-branding {
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.15);
    padding-bottom: 10px;
    z-index: 1;
}

.receipt-header-branding h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 0.08em;
    color: #1e1b18;
}

.receipt-header-branding p {
    font-size: 0.7rem;
    margin: 2px 0;
    color: #555;
    font-weight: 600;
}

.cart-item {
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding: 12px 0;
    margin-bottom: 0;
    position: relative;
    background-color: transparent;
    border-radius: 0;
    z-index: 1;
}

.cart-item-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    color: #1e1b18;
    font-weight: 700;
    margin-bottom: 2px;
}

.cart-item-sub {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.72rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Calculator (Taller) Quantity Buttons */
.taller-form .qty-btn {
    background-color: rgba(255, 176, 59, 0.1);
    border: 1.5px solid var(--border-light);
    color: var(--accent-cyan) !important;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.taller-form .qty-btn:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-darker) !important;
    box-shadow: var(--shadow-cyan-glow);
}

/* Receipt (Cart) Quantity Buttons */
.cart-item .qty-btn {
    background-color: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.2);
    color: #1e1b18 !important;
    width: 22px;
    height: 22px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.2s;
}

.cart-item .qty-btn:hover {
    background-color: #1e1b18;
    color: #fdfbf7 !important;
}

.qty-val {
    font-size: 0.8rem;
    font-weight: 700;
}

.cart-item-price {
    font-family: 'Courier New', Courier, monospace;
    color: #1e1b18;
    font-size: 0.88rem;
    font-weight: 700;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    background: none;
    border: none;
    color: rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    color: var(--brand-red);
}

/* Vintage Ink Logo Stamp */
.receipt-stamp-logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 15px auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px double rgba(214, 48, 49, 0.5); /* Red stamp ink */
    border-radius: 50%;
    transform: rotate(-12deg);
    opacity: 0.8;
    z-index: 1;
    box-shadow: 0 0 5px rgba(214, 48, 49, 0.1);
}

.stamp-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1) sepia(1) saturate(8) hue-rotate(-40deg) brightness(0.9) contrast(1.4); /* Perfect red ink effect! */
    opacity: 0.7;
}

.stamp-text {
    position: absolute;
    bottom: 4px;
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 900;
    color: rgba(214, 48, 49, 0.85);
    background-color: #fdfbf7;
    padding: 1px 4px;
    border-radius: 2px;
    letter-spacing: 0.1em;
    border: 1.5px solid rgba(214, 48, 49, 0.5);
}

.receipt-bottom-thanks {
    text-align: center;
    font-size: 0.72rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
    z-index: 1;
}

/* Cart Footer Inputs - Redesigned to Gold & Velvet Dark Theme */
.cart-footer .form-group {
    margin-bottom: 18px;
}

.cart-footer .form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.cart-footer .form-select,
.cart-footer .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    background-color: rgba(7, 5, 4, 0.95); /* Deep charcoal */
    border: 1.5px solid var(--border-light);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition-smooth);
}

/* Fix dropdown options visibility in dark mode */
.form-select option,
select option {
    background-color: #0a0705 !important; /* Matches --bg-base */
    color: #fdfaf7 !important; /* Light text */
    padding: 12px;
}

.cart-footer .form-select:focus,
.cart-footer .form-textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(255, 176, 59, 0.15);
}

.cart-footer .form-textarea {
    height: 55px;
    resize: none;
}

.delivery-toggle-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.toggle-radio-item input {
    display: none;
}

.toggle-card-btn {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: rgba(7, 5, 4, 0.4);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--color-text-muted);
}

.toggle-radio-item input:checked + .toggle-card-btn {
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
}

.gps-success-msg {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-top: 5px;
    display: none;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-total-price {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 1.45rem;
}

/* Floating Cart Trigger */
.cart-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-cyan);
    color: var(--bg-darker);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-cyan-glow);
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-smooth);
}

.cart-float-btn:hover {
    transform: scale(1.1);
    background-color: var(--accent-cyan-hover);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--brand-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-cyan);
}

/* Floating Location Widget (Bottom-Left) */
.location-float-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 60px;
    width: 60px; 
    background-color: rgba(2, 4, 8, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid var(--border-light);
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
    cursor: pointer;
    padding-left: 17px;
}

.location-float-widget:hover {
    width: 280px;
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan-glow);
}

.location-widget-icon {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.location-float-widget:hover .location-widget-icon {
    transform: scale(1.15);
    text-shadow: 0 0 10px var(--accent-cyan);
}

.location-widget-content {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-float-widget:hover .location-widget-content {
    opacity: 1;
    transition-delay: 0.15s;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-desc {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

/* Scroll Reveal Premium Forged-Glow Animation */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    animation: forgeGlow 1.2s ease;
}

@keyframes forgeGlow {
    0% { box-shadow: 0 0 0 rgba(255, 176, 59, 0); }
    40% { box-shadow: 0 0 30px rgba(255, 176, 59, 0.15); }
    100% { box-shadow: 0 0 0 rgba(255, 176, 59, 0); }
}

/* Baking Oven Simulation Overlay */
.baking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020202;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.baking-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Cinematic Fire Sweep & Baking Reveal */
.fire-sweep-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.baking-pizza-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    box-shadow: 0 25px 55px rgba(0,0,0,0.9);
    overflow: hidden; /* Crucial for clip-path sweep */
}

.pizza-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Raw Pizza Base */
.pizza-base-raw {
    width: 320px;
    height: 320px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><circle cx="50" cy="50" r="48" fill="%23ebd4b4"/><circle cx="50" cy="50" r="47" fill="none" stroke="%23dfbe99" stroke-width="1.5"/><circle cx="50" cy="50" r="41" fill="%23e74c3c"/><circle cx="50" cy="50" r="40" fill="%23d63031" opacity="0.3"/><path d="M30 35 Q35 25 45 30 Q55 35 50 45 Q45 55 35 50 Z" fill="%23ffffff" opacity="0.95"/><path d="M60 40 Q70 35 75 45 Q80 55 65 60 Q50 65 55 50 Z" fill="%23ffffff" opacity="0.95"/><path d="M40 60 Q30 70 45 75 Q60 80 55 65 Z" fill="%23ffffff" opacity="0.95"/><path d="M45 45 Q50 38 55 42 Q60 48 50 52 Z" fill="%23ffffff" opacity="0.95"/></svg>');
    background-size: cover;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Baked Pizza Base (Top layer, clipped) */
.baked-state {
    clip-path: inset(0 100% 0 0); /* Hidden by default */
    transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
}

.start-bake .baked-state {
    clip-path: inset(0 0% 0 0); /* Fully revealed */
}

/* The Fire Sweep Line - Wider and Animated Wiggling Flame */
.fire-sweep-line {
    position: absolute;
    top: -30px;
    bottom: -30px;
    width: 22px;
    left: -15px;
    background: linear-gradient(to bottom, transparent 0%, #ff3300 20%, #ff9f43 40%, #ffffff 50%, #ff9f43 60%, #ff3300 80%, transparent 100%);
    box-shadow: 0 0 25px #ff3300, 0 0 50px #ff9f43, 0 0 75px #ffffff;
    transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    animation: flameWiggle 0.1s infinite alternate ease-in-out;
}

@keyframes flameWiggle {
    0% { transform: scaleX(0.85) skewX(-3deg); }
    100% { transform: scaleX(1.15) skewX(3deg); }
}

.start-bake .fire-sweep-line {
    left: 335px; /* Sweeps across the 320px pizza */
    opacity: 1;
}

/* Flying Fire Particles & Embers */
.fire-particle {
    position: absolute;
    background: radial-gradient(circle, #ffeaa7 10%, #ff9f43 55%, #ff3300 100%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 12;
    filter: blur(0.5px);
    box-shadow: 0 0 8px #ff9f43, 0 0 15px #ff3300;
}

@keyframes particleFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.15);
        opacity: 0;
    }
}

/* Temperature Gauge */
.temp-gauge-wrapper {
    position: relative;
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.temp-gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 6;
}

.gauge-fill {
    fill: none;
    stroke: #ffb03b;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 276.46;
    stroke-dashoffset: 276.46;
    transition: stroke-dashoffset 0.1s ease;
}

.temp-text-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.temp-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffb03b;
    text-shadow: 0 0 10px rgba(255, 176, 59, 0.3);
}

.temp-label {
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.baking-text {
    position: absolute;
    bottom: 25px;
    font-family: var(--font-heading);
    color: #ff9f43;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 0 15px rgba(255, 90, 0, 0.8), 0 2px 5px rgba(0,0,0,0.9);
    z-index: 5;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .main-header {
        top: 0;
        background-color: rgba(2, 4, 8, 0.9);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: var(--bg-glass-heavy);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-light);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-grid-layout,
    .alchemy-container,
    .showcase-row,
    .showcase-row.reverse-row,
    .taller-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-3d {
        order: -1; 
        margin-bottom: 20px;
        height: 380px;
    }
    
    .floating-3d-badge {
        position: static;
        width: 320px;
        height: 320px;
    }
    
    .showcase-img {
        height: 260px;
    }
    
    .taller-plate {
        position: static;
        padding: 30px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

}

/* ==========================================================================
   WARM FAMILY PIZZERIA THEME OVERRIDES (LIGHT & CLEAN AESTHETIC)
   ========================================================================== */

/* General Body & Canvas adjustment */
body {
    background-color: var(--bg-base);
    color: var(--color-text);
}

.cursor-glow {
    background: radial-gradient(circle, rgba(211, 78, 54, 0.06) 0%, transparent 70%);
}

/* Header & Navigation Overrides */
.brand-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.open-hours-badge {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background-color: rgba(0,0,0,0.04);
    color: var(--color-text-muted);
}

.open-hours-badge.open {
    color: #D4AF37 !important; /* Elegant gold letters */
    background-color: rgba(197, 168, 128, 0.12) !important; /* Gold background tint */
    border: 1.5px solid rgba(197, 168, 128, 0.4) !important;
}

.open-hours-badge.closed {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.08);
    border: 1.5px solid rgba(231, 76, 60, 0.3) !important;
}

.open-hours-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    background-color: currentColor;
}

.open-hours-badge.open .badge-dot {
    animation: hoursPulse 1.8s infinite;
}

@keyframes hoursPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.15); }
}

.main-header.scrolled {
    background-color: rgba(250, 246, 240, 0.97) !important;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(42, 27, 16, 0.05);
}

.main-header.scrolled .brand-name {
    color: var(--color-text) !important;
}

/* NAVIGATION HOVER/HIGHLIGHT COLOR IN GOLD AS REQUESTED */
.nav-link:hover, .nav-link.active {
    color: #C5A880 !important; /* Elegant gold hover text color */
}

/* Sections Light Gradients & Unified Backgrounds */
.menu-section,
.calculator-section,
.taller-section,
.branches-section {
    background: transparent !important;
    background-color: transparent !important;
}

/* 1. RESTORE RAW PARALLAX BACKGROUNDS ON ABSOLUTE HELPER DIVS (NO WHITISH OR DARK GRADIENTS!) */
.alchemy-bg,
.experience-bg,
.testimonios-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    z-index: -1 !important;
    display: block !important;
    filter: none !important;
    opacity: 1 !important;
}

.alchemy-section,
.experience-section,
.testimonios-section {
    position: relative !important;
    overflow: hidden !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Make testimonies section container narrower and well-distributed to prevent touching viewport margins */
.testimonios-section .container {
    max-width: 1080px !important;
    padding: 0 35px !important;
}

.testimonios-section .menu-grid {
    gap: 35px !important;
    margin-bottom: 30px !important;
}

.testimonios-section .menu-card {
    padding: 30px 24px !important; /* Make cards more compact and smaller */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

/* 2. REMOVE THE SHIT COLOR FROM TEXT AND DIVIDERS - ALL WHITE FOR MAXIMUM CLEAN CONTRAST */
.alchemy-section .section-tagline,
.alchemy-section .section-title,
.alchemy-section .section-lead,
.alchemy-section .section-desc,
.alchemy-section .alchemy-signature *,
.experience-section .section-tagline,
.experience-section .section-title,
.experience-section .experience-text,
.experience-section .experience-stats,
.experience-section .experience-stats *,
.testimonios-section .section-tagline,
.testimonios-section .section-title,
.testimonios-section .section-subtitle {
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}

/* Ensure black text inside the testimonials cards is highly visible against the white glass background */
.testimonios-section .menu-card,
.testimonios-section .menu-card * {
    color: #000000 !important;
    text-shadow: none !important;
}

/* Remove any background overlays on text blocks */
.alchemy-text-block,
.experience-container {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* 3. COMPLETELY HIDE THE DIVIDER LINES (CYAN/GOLD LINES THAT LOOK BAD) */
.alchemy-section .cyan-divider-left,
.experience-section .cyan-divider {
    display: none !important;
}

/* 4. COMPLETELY REMOVE THE SHITTY STAT BOXES (RECUADROS CULEROS) IN EXPERIENCE SECTION */
.experience-stats .stat-item {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Solid Black Text for general sections (outside the dark parallax ones) */
:not(.alchemy-section):not(.experience-section):not(.testimonios-section) > .container > .section-tagline,
:not(.alchemy-section):not(.experience-section):not(.testimonios-section) > .container > .section-subtitle,
:not(.alchemy-section):not(.experience-section):not(.testimonios-section) > .container > .section-lead,
:not(.alchemy-section):not(.experience-section):not(.testimonios-section) > .container > .section-desc,
:not(.alchemy-section):not(.experience-section):not(.testimonios-section) > .container > .alchemy-step-desc,
:not(.alchemy-section):not(.experience-section):not(.testimonios-section) > .container > .deco-icon {
    color: #000000 !important;
    text-shadow: none !important;
}

.section-tagline,
.section-subtitle,
.section-lead,
.section-desc,
.alchemy-step-desc,
.deco-icon {
    color: #000000;
}

/* Promo Pill Style - Dark background with gold border and white text */
.promo-pill {
    background-color: rgba(15, 12, 10, 0.88) !important;
    border: 1.5px solid #C5A880 !important;
}

.pill-highlight {
    background-color: #D34E36 !important; /* Tomato red */
    color: #ffffff !important; /* White text */
    font-weight: 700 !important;
}

.pill-text {
    color: #ffffff !important; /* White text */
    font-weight: 700 !important;
}

/* Panels, Cards & Forms Overrides - WHITE & GOLD THEME WITH SOLID BLACK TEXT */
.menu-card, 
.showcase-item,
.taller-controls-column, 
.taller-plate, 
.branch-card, 
.map-wrapper {
    background: rgba(255, 255, 255, 0.94) !important; /* Elegant white glass background restored! */
    border: 2px solid #C5A880 !important; /* Gold contour */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.18), 0 8px 20px rgba(42, 27, 16, 0.06) !important; /* Reflected shadow */
    color: #000000 !important; /* Force solid black text for readability on white background! */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Hover effects for White & Gold Panels */
.menu-card:hover, 
.showcase-item:hover,
.taller-controls-column:hover,
.branch-card:hover,
.map-wrapper:hover {
    border-color: #D4AF37 !important; /* Bright metallic gold on hover */
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.35), 0 10px 25px rgba(42, 27, 16, 0.12) !important; /* Intense gold-dark reflection */
    transform: translateY(-5px) !important;
}

/* Ensure all internal text, tags, prices, options, labels inherit solid black inside panels */
.menu-card *, 
.showcase-item *, 
.taller-controls-column *, 
.taller-plate *, 
.branch-card *, 
.map-wrapper * {
    color: inherit;
}

/* Highlight specific titles/headers inside panels with solid black */
.menu-card h3, 
.showcase-item h3, 
.taller-group-title, 
.branch-card h3, 
.map-header h3, 
.cart-header h3,
.receipt-printer-slot,
.cart-item-info h4,
.widget-title {
    color: #000000 !important;
    font-weight: 800 !important;
}

/* Prevent menu title text from overlapping absolute badge on the top right */
.menu-card h3 {
    padding-right: 115px !important;
}

.menu-card .ingredients, 
.showcase-item p,
.branch-body p,
.taller-sub-label {
    color: #000000 !important; /* Solid black text */
    opacity: 0.8;
}

.card-price, .item-price, .total-price, .taller-summary-box span, .taller-summary-box strong {
    color: #000000 !important; /* Solid black price tags inside white panels! */
    font-weight: 800 !important;
}

.menu-card.vip-card {
    border-color: rgba(197, 168, 128, 0.8) !important; /* Gold border for vip */
}

/* Small, highly readable and distributed tags inside menu cards */
.card-badge {
    background-color: rgba(211, 78, 54, 0.08) !important;
    border: 1px solid rgba(211, 78, 54, 0.18) !important;
    color: #000000 !important;
    font-size: 0.65rem !important; /* Smaller text */
    padding: 3px 8px !important;
    border-radius: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    top: 20px !important;
    right: 20px !important;
}

.card-badge.green-badge {
    background-color: rgba(78, 125, 88, 0.08) !important;
    border: 1px solid rgba(78, 125, 88, 0.18) !important;
    color: #000000 !important;
}

/* Menu Live Search focus transition */
.menu-search-wrapper input:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.22) !important;
}

/* Form Controls Inside White & Gold Panels */
.form-select, 
.form-textarea,
.taller-form select,
.taller-form input[type="text"],
.taller-form input[type="tel"],
.taller-form input[type="date"],
.taller-form input[type="time"] {
    background-color: #ffffff !important; /* White input background */
    border: 1.5px solid rgba(197, 168, 128, 0.35) !important; /* Soft gold input borders */
    color: #000000 !important;
}

.form-select:focus, 
.form-textarea:focus,
.taller-form select:focus,
.taller-form input:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15) !important;
}

/* Windows Option tags visibility fix in light selects */
select option {
    background-color: #ffffff !important; /* White background */
    color: #000000 !important; /* Solid black */
}

/* Calculator & Creator Specific Adjustments */
.taller-step {
    background-color: var(--accent-cyan) !important;
    color: #ffffff !important;
}

.tile-card {
    background-color: #ffffff !important;
    border: 1.5px solid rgba(197, 168, 128, 0.25) !important;
    color: #000000 !important;
}

.tile-radio input:checked + .tile-card {
    border-color: #D4AF37 !important;
    background-color: rgba(197, 168, 128, 0.1) !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15) !important;
}

.ing-check-box {
    background-color: #ffffff !important;
    border: 1.5px solid rgba(197, 168, 128, 0.25) !important;
    color: #000000 !important;
}

.ing-check-label input:checked + .ing-check-box {
    border-color: #D4AF37 !important;
    background-color: rgba(197, 168, 128, 0.1) !important;
    color: #000000 !important;
}

.radio-btn-text {
    background-color: #ffffff !important;
    border: 1.5px solid rgba(197, 168, 128, 0.25) !important;
    color: #000000 !important;
}

.radio-btn-label input:checked + .radio-btn-text {
    border-color: #D4AF37 !important;
    background-color: rgba(197, 168, 128, 0.05) !important;
    color: #000000 !important;
}

.taller-summary-box {
    background-color: rgba(197, 168, 128, 0.04) !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    box-shadow: none !important;
}

/* Floating Widgets & Cart Sidebar */
.location-float-widget, 
.cart-sidebar {
    background-color: rgba(250, 246, 240, 0.98) !important;
    border: 1.5px solid rgba(197, 168, 128, 0.3) !important;
    box-shadow: 0 10px 40px rgba(42, 27, 16, 0.08) !important;
    color: #000000 !important;
}

.cart-item {
    border-bottom: 1px solid var(--border-light) !important;
}

.cart-footer .form-select,
.cart-footer .form-textarea {
    background-color: #ffffff !important;
}

.toggle-card-btn {
    background-color: #ffffff !important;
    border: 1.5px solid rgba(197, 168, 128, 0.2) !important;
    color: #000000 !important;
}

.toggle-radio-item input:checked + .toggle-card-btn {
    border-color: rgba(197, 168, 128, 0.8) !important;
    background-color: rgba(197, 168, 128, 0.05) !important;
}

/* Map adjustment */
.map-header {
    border-bottom: 1px solid var(--border-light) !important;
}

/* Footer Colors */
.main-footer {
    background-color: var(--bg-darker) !important;
    border-top: 1px solid var(--border-light);
}

.main-footer p, 
.main-footer a {
    color: var(--color-text-muted) !important;
}

.main-footer a:hover {
    color: var(--accent-cyan) !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-light) !important;
}

.footer-bottom p {
    color: var(--color-text-muted) !important;
    opacity: 0.65;
}

/* Reset Button Style */
.btn-outline {
    background-color: transparent !important;
    border: 2px solid var(--accent-cyan) !important;
    color: var(--accent-cyan) !important;
    font-weight: 700;
}

.btn-outline:hover {
    background-color: var(--accent-cyan) !important;
    color: #ffffff !important;
    box-shadow: var(--shadow-cyan-glow);
}

/* Ken Burns Background Animations (Active body background slideshow) */
@keyframes kenBurnsEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.bg-slide.active {
    animation: kenBurnsEffect 14s ease-in-out infinite !important;
}

/* REMOVE ALL TV STATIC NOISE OVERLAYS */
.bg-noise {
    display: none !important;
}

/* SOLID BACKDROP FOR THE HERO SLIDER CONTAINER TO BLOCK THE FADED BACKGROUND CHROME GLITCH */
.hero-slider {
    background-color: #110e0c !important; /* Solid brand charcoal color */
}

/* BASE RULES FOR HERO SLIDER WRAPPER (DOES NOT RUN KEYFRAMES) */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    overflow: hidden !important; /* Clips the zooming inner image */
    transform-origin: center center !important;
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity; /* GPU isolated layer */
}

/* Active state for parent wrapper: Always flat, straight and stable */
.hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
    transform-origin: center center !important;
    transform: rotateY(0deg) rotateX(0deg) translateZ(0) scale(1.0) translate(0, 0) !important;
}

/* Outgoing slide (prev) stays 100% opaque, stationary and flat under the active slide during crossfade! */
.hero-slide.prev {
    opacity: 1 !important; /* Stay opaque under the fading active slide! */
    z-index: 1 !important; /* Positioned directly under active (z-index 2) */
    transform: none !important; /* ALWAYS STAY FLAT AND STATIONARY (NO 3D SHATTER!) */
}

/* INNER IMAGE RULES (HANDLES DYNAMIC ZOOM AND PAN EXCLUSIVELY) */
.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translate3d(0, 0, 0); /* Force independent GPU layer! */
    will-change: transform;
}

/* 4 DYNAMIC CINEMATIC ZOOM & PANS ON INNER ELEMENT (NO STOP-START LAGS!) */
@keyframes zoomPan0 {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.22) translate(-2.5%, -2%);
    }
}

@keyframes zoomPan1 {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.22) translate(2.5%, -2%);
    }
}

@keyframes zoomPan2 {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.22) translate(-2.5%, 2%);
    }
}

@keyframes zoomPan3 {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.22) translate(2.5%, 2%);
    }
}

/* USE :not(.active):not(.prev) SELECTOR SO ONLY THE INCOMING SLIDE ROTATES IN 3D! */
/* TRANSITION 0: Original Centered 3D Y-Swivel */
.transition-0 .hero-slide:not(.active):not(.prev) {
    transform: rotateY(90deg) translateZ(-300px) scale(0.85) !important;
}

/* TRANSITION 1: 3D Flip X (Vertical tumble) */
.transition-1 .hero-slide:not(.active):not(.prev) {
    transform: rotateX(-90deg) translateZ(-300px) scale(0.85) !important;
}

/* TRANSITION 2: 3D Depth Zoom In/Out */
.transition-2 .hero-slide:not(.active):not(.prev) {
    transform: translateZ(600px) scale(1.6) !important;
}

/* TRANSITION 3: 3D Twirl (rotation Y + Z) */
.transition-3 .hero-slide:not(.active):not(.prev) {
    transform: rotateZ(45deg) rotateY(90deg) translateZ(-400px) scale(0.7) !important;
}

/* TRANSITION 4: 3D Elastic Y-Spin Zoom */
.transition-4 .hero-slide:not(.active):not(.prev) {
    transform: rotateY(75deg) scale(0.6) !important;
}

/* FLOATING 3D BADGE NEON & SHADOW EFFECTS (60 FPS OPTIMIZED 2D TRANSFORMS) */
.floating-3d-badge {
    width: 350px;
    height: 350px;
    background: rgba(42, 27, 16, 0.82) !important; /* Dark solid brand backdrop to prevent background conflicts */
    border: 3px solid #C5A880 !important; /* Gold border */
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important; /* Lightweight simple drop shadow */
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.1s ease !important;
    transform: translate3d(0, 0, 0); /* Force independent GPU layer! */
    will-change: transform, box-shadow; /* Prevent repaint leaks! */
    overflow: hidden !important; /* Clips the sliding sheen */
}

/* GPU-ACCELERATED CSS-ONLY SHEEN TRANSLATION EFFECT */
.badge-sheen {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%) !important;
    transform: translateX(-100%) translateY(-100%) rotate(45deg) !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.floating-3d-badge:hover .badge-sheen,
.floating-3d-badge:active .badge-sheen {
    transform: translateX(100%) translateY(100%) rotate(45deg) !important;
}

/* Neon glow ring - strictly 2D glows to avoid blurring the background slide! */
.badge-ring-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(211, 78, 54, 0.4) !important; /* Tomato red neon ring */
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 80%) !important;
    box-shadow: 0 0 15px rgba(211, 78, 54, 0.35) !important; /* Lightweight glow */
    pointer-events: none;
    animation: neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 12px rgba(211, 78, 54, 0.3);
        border-color: rgba(211, 78, 54, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
        border-color: rgba(197, 168, 128, 0.7);
    }
}

/* Outer dashed gold ring */
.floating-3d-badge::before {
    content: '';
    position: absolute;
    top: -22px;
    left: -22px;
    right: -22px;
    bottom: -22px;
    border-radius: 50%;
    border: 2px dashed #C5A880 !important; /* Gold dashed ring */
    opacity: 0.6;
    animation: spinBadgeRing 25s linear infinite;
    pointer-events: none;
}

@keyframes spinBadgeRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover/Touch state with intense premium neon light, fire-orange shadow and scaling */
.floating-3d-badge:hover,
.floating-3d-badge:active {
    border-color: #D4AF37 !important; /* Bright gold */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 
                0 0 30px rgba(211, 78, 54, 0.65), /* Red/Tomato neon glow */
                0 0 45px rgba(197, 168, 128, 0.45) !important; /* Gold ambient glow */
}

/* Make the image inside look amazing */
.badge-logo-img {
    width: 90% !important;
    height: 90% !important;
    border-radius: 50%;
    border: 2.5px solid #C5A880 !important;
    object-fit: cover;
    transition: transform 0.5s ease !important;
}

.floating-3d-badge:hover .badge-logo-img {
    transform: scale(1.05) rotate(2deg) !important;
}

/* Responsive Brand Header Layout fixes & Brand GLITCH effect on hover */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    text-decoration: none;
}

.brand:hover .brand-logo {
    animation: logoGlitch 0.3s steps(2) infinite;
}

.brand:hover .brand-name {
    animation: textGlitch 0.3s steps(2) infinite;
}

@keyframes logoGlitch {
    0% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 1px) rotate(-1deg); }
    100% { transform: translate(1px, 1px) rotate(0deg); }
}

@keyframes textGlitch {
    0% { text-shadow: 2px -1px 0 #D4AF37, -1px 2px 0 var(--accent-cyan); }
    50% { text-shadow: -2px 1px 0 #D4AF37, 2px -2px 0 var(--accent-cyan); }
    100% { text-shadow: 1px 2px 0 #D4AF37, -2px 1px 0 var(--accent-cyan); }
}

.brand-logo {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    border: 2px solid #C5A880 !important;
    transition: transform 0.15s ease;
}

.brand-name {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: #ffffff !important; /* Logo name color starts white */
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.main-header.scrolled .brand-name {
    color: #2E1B10 !important;
}

/* LIVE HOURS BADGE OPTIMIZED AND DISTRIBUTED AS REQUESTED */
.open-hours-badge {
    font-size: 0.52rem !important; /* Smaller size */
    padding: 2px 6px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    height: 16px;
    line-height: 1;
    vertical-align: middle;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em !important; /* More distributed letter spacing */
    cursor: pointer !important; /* Pointer cursor for interactive toggle */
    margin-left: 4px !important;
}

@media (max-width: 991px) {
    .main-header {
        background-color: rgba(250, 246, 240, 0.98) !important;
        border-bottom: 1px solid var(--border-light) !important;
    }
    
    .nav-menu {
        background-color: rgba(250, 246, 240, 0.98) !important;
        border-top: 1px solid var(--border-light) !important;
        top: 100px;
    }
    
    .nav-link {
        color: var(--color-text) !important;
        font-weight: 600 !important;
    }
    
    .brand-name {
        color: #2E1B10 !important; /* Mobile brand text dark */
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.05rem !important;
    }
    .brand-logo {
        width: 38px !important;
        height: 38px !important;
    }
    .open-hours-badge {
        font-size: 0.50rem !important;
        padding: 2px 5px !important;
    }
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100vw !important;
        right: -100vw !important;
        padding: 15px 12px !important;
    }
    .cart-sidebar.active {
        right: 0 !important;
    }
    .cart-items {
        max-height: 50vh !important;
        padding: 15px 12px !important;
    }
}

@media (max-width: 410px) {
    .brand-name {
        font-size: 0.88rem !important;
        gap: 5px !important;
    }
    .brand-logo {
        width: 32px !important;
        height: 32px !important;
    }
    .open-hours-badge {
        font-size: 0.48rem !important;
        padding: 0 3px !important;
    }
    .brand {
        gap: 8px !important;
    }
}
