@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #FF6B01;
    --primary-dark: #E65A00;
    --dark: #151515;
    --light: #F8F8F8;
    --white: #FFFFFF;
    --text: #333333;
    --text-muted: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preloader-logo {
    width: 180px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.08); opacity: 0.85; }
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF8A50, #FF6B01);
    border-radius: 4px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}

@keyframes preloaderFill {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

h1, h2, h3, h4 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.9;
}

/* Header - Final Precision */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 60px;
    background-color: #000; /* Solid black background */
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo svg {
    height: 45px;
    width: auto;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-top {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: -5px;
}

.logo-text-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text-cursive {
    color: #fff;
    font-family: 'Caveat', cursive;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.logo-icon-fire {
    font-size: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff; /* On the orange side */
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #fff;
}

/* Desktop Navigation */
.header-nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .header-nav-desktop {
        display: flex;
        gap: 35px;
        align-items: center;
    }
    .mobile-only {
        display: none !important;
    }
    .nav-dropdown {
        display: none !important;
    }
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #FFB300;
}

.btn-header-wa {
    background: #FF6B01;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px; /* Pill shaped */
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    animation: attentionPulse 2s infinite;
}

.btn-header-wa i {
    font-size: 16px;
}

.btn-header-wa:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 1, 0.4);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 60px;
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0;
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 999;
}

.nav-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 16px 28px;
    color: #fff;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a:hover {
    background: #FF6B01;
    padding-left: 35px;
}

/* Hero Section - The "Royal" Rebuild */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: #0a0a0a;
}

.hero-bg-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/fondo.png') center right / cover no-repeat;
    z-index: 1;
}

/* Gradient overlay to ensure text readability on the left */
.hero-bg-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 35%, rgba(0,0,0,0) 70%);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 100%;
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-text-area {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px; /* Increased to account for fixed header */
    padding-right: 60px; /* Add margin to prevent overlapping the orange curve */
}

.top-subtitle {
    font-size: 13px;
    font-weight: 900;
    color: #FF6B01;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title-main {
    font-size: clamp(46px, 7.5vw, 115px);
    line-height: 1.05;
    font-family: 'Anton', sans-serif;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.text-white {
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.text-yellow {
    background: linear-gradient(to bottom, #FFD54F, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Use drop-shadow filter to create stroke around gradient text without hiding it */
    filter: drop-shadow(2px 2px 0px #000) drop-shadow(-1px -1px 0px #000) drop-shadow(1px -1px 0px #000) drop-shadow(-1px 1px 0px #000) drop-shadow(4px 4px 5px rgba(0,0,0,0.8));
}

.hero-desc-handwritten {
    font-family: 'Caveat', cursive;
    font-size: clamp(28px, 4vw, 42px);
    color: #fff;
    margin-bottom: 40px;
    transform: rotate(-3deg);
    transform-origin: left bottom;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

.hero-desc-handwritten::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2%;
    width: 104%;
    height: 3px;
    background: #fff;
    border-radius: 50% / 100%;
    opacity: 0.9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 14px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.feature-item i {
    font-size: 32px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-order {
    background: linear-gradient(135deg, #FF8A50, #FF6B01);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 1, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: attentionPulse 2s infinite;
}

@keyframes attentionPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 1, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255, 107, 1, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 1, 0); }
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #0a0a0a;
}

/* Interactive Thumbnails */
.hero-thumbnails {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    height: 100px; /* reserve space */
    align-items: center;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    padding: 5px;
    /* Apple-like scroll reveal starting state */
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.thumb.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.thumb:hover, .thumb.active {
    border: 2px solid #FF6B01;
    box-shadow: 0 8px 25px rgba(255, 107, 1, 0.2);
    transform: translateY(-5px) scale(1.05); /* slightly scale up active/hover */
}

.hero-image-area {
    grid-column: 6 / 13;
    position: relative;
    display: flex;
    align-items: center;
}

@keyframes subtleSmoke {
    0% { transform: translateY(10px) scaleX(0.8); opacity: 0; filter: blur(10px); }
    50% { opacity: 0.15; filter: blur(15px); transform: translateY(-40px) scaleX(1.2); }
    100% { transform: translateY(-80px) scaleX(1.5); opacity: 0; filter: blur(25px); }
}

.smoke-effect {
    position: absolute;
    top: 30%;
    left: 25%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 60%);
    z-index: 25; /* Above main image */
    animation: subtleSmoke 6s infinite ease-in-out;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
}

.main-food-img {
    width: 110%;
    max-width: 1050px;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.4));
    z-index: 20;
    transform: translateY(60px); /* Moved down */
    margin-left: -5%; /* Center the 110% width */
}

.side-food-img {
    position: absolute;
    right: -25%;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    width: 40%;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
    opacity: 0.9;
    z-index: 10;
}

.ingredients-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.ing {
    position: absolute;
    mix-blend-mode: multiply;
    filter: brightness(1.15) contrast(1.1);
}

.ing-1 { top: 25%; left: 38%; width: 60px; transform: rotate(-15deg); }
.ing-2 { top: 48%; left: 42%; width: 85px; transform: rotate(10deg); }
.ing-3 { bottom: 25%; left: 36%; width: 70px; transform: rotate(20deg); }
.ing-4 { top: 15%; left: 45%; width: 50px; }


/* Decoration */
.decoration-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#eee 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    z-index: 0;
}

.floating-profile {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 99999;
}

.floating-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   WhatsApp Widget
   ========================================= */
.whatsapp-widget {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99999;
    font-family: 'Inter', sans-serif;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-header {
    background-color: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wa-header i.fa-whatsapp {
    font-size: 30px;
}

.wa-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-info strong {
    font-size: 15px;
    font-weight: 600;
}

.wa-info span {
    font-size: 12px;
    opacity: 0.8;
}

.wa-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.wa-close:hover {
    opacity: 1;
}

.wa-body {
    padding: 20px;
    background-color: #E5DDD5;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}

.wa-body p {
    background: white;
    padding: 12px 15px;
    border-radius: 0 10px 10px 10px;
    font-size: 14px;
    color: #333;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    line-height: 1.5;
}

.wa-body p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid white;
    border-left: 10px solid transparent;
}

.wa-footer {
    padding: 15px 20px;
    background: #fff;
    text-align: center;
}

.wa-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.wa-btn:hover {
    background: #128C7E;
}

/* Animations */
@keyframes float_simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float_complex {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

.main-img {
    animation: float_complex 6s ease-in-out infinite;
}

.floating-burger-small img {
    animation: float_simple 5s ease-in-out infinite;
}

.hero-side-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.4;
    z-index: 2;
}

.hero-side-image img {
    width: 100%;
}

/* =========================================
   NEW MENU SECTION ("Nuestra Carta")
   ========================================= */
.section-menu {
    padding: 60px 0 0 0;
    background-color: #f8f8f8; /* Light off-white background */
    font-family: 'Inter', sans-serif;
}

.container-menu {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.menu-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.menu-subtitle-new {
    color: #FF6B01;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.menu-title-new {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.menu-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.menu-card-new {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card-img-wrap {
    position: relative;
    background: #ececec;
    height: 220px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF6B01;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.card-content-new {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content-new h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card-content-new p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.price-new {
    font-family: 'Anton', sans-serif;
    color: #FF6B01;
    font-size: 22px;
}

.btn-order-small {
    background: #FF6B01;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.btn-order-small:hover {
    background: #e65c00;
}

.promo-card {
    background: linear-gradient(to bottom, #990000, #4d0000);
    border-radius: 12px;
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-content h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
}

.promo-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-weight: 700;
    font-size: 14px;
}

.promo-content ul li {
    margin-bottom: 5px;
}

.promo-content img {
    max-width: 150px;
    margin: 0 auto 15px auto;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.promo-price-box {
    margin-top: auto;
}

.promo-price {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.btn-promo-yellow {
    background: #FFB300;
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

/* Benefits Bar */
.benefits-bar {
    background: #111;
    border-radius: 12px 12px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 30px;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.benefit-item i {
    color: #FFB300;
    font-size: 28px;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 3px;
}

.benefit-text span {
    font-size: 11px;
    color: #aaa;
}

@media (max-width: 1200px) {
    .menu-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-grid-new {
        grid-template-columns: 1fr;
    }
    
    /* Horizontal Menu Cards for Mobile */
    .menu-card-new {
        flex-direction: row;
        align-items: center;
    }
    
    .card-img-wrap {
        width: 40%;
        height: 100%;
        min-height: 140px;
        padding: 10px;
    }
    
    .card-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .card-content-new {
        width: 60%;
        padding: 15px 15px 15px 5px;
    }
    
    .card-content-new h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .card-content-new p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .card-footer-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-order-small {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    
    /* Promo Card for Mobile - Column Layout */
    .promo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .promo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }
    
    .promo-content img {
        width: auto;
        max-width: 140px;
        margin: 0 auto;
        position: static;
        transform: none;
    }
    
    .promo-price-box {
        margin-top: 5px;
        width: 100%;
    }
    
    .benefits-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .benefit-item i {
        font-size: 24px;
    }
    
    header.scrolled {
        padding: 10px 20px !important;
    }
    
    /* Hero Mobile Adjustments */
    .hero-sticky-container {
        align-items: flex-start !important; /* Prevent vertical centering from cutting off top text */
    }
    
    .hero-grid {
        display: block;
        padding: 180px 20px 20px 20px;
        width: 100%;
        height: auto;
    }
    
    .hero-text-area {
        display: block;
    }
    
    .hero-title-main {
        font-size: 44px;
        text-align: center;
        line-height: 1.05;
        margin-bottom: 15px;
    }

    .hero-desc-handwritten {
        font-size: 20px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .hero-features {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .feature-item div {
        font-size: 11px;
    }
    
    .hero-cta-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        position: relative;
        z-index: 30;
    }
    
    .hero-cta-row button, .hero-cta-row a {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 14px;
        padding: 15px;
    }
    
    .hero-image-area {
        position: relative;
        top: 0;
        right: 0;
        width: 120%;
        margin-left: -10%;
        margin-top: 30px;
        height: auto;
        display: block;
        z-index: 20;
    }
    
    .main-food-img {
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none;
    }
    
    .smoke-effect {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
    }
    
    .hero-thumbnails {
        display: none; /* Hidden on mobile */
    }
}
/* =============================================
   GALLERY SECTION (FOTOS Y VIDEOS)
   ============================================= */
.gallery-section {
    background-color: #050505;
    background-image: url('../assets/images/fondo.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-subtitle-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.gallery-line {
    width: 50px;
    height: 2px;
    background: #FF6B01;
    border-radius: 2px;
}

.gallery-subtitle {
    color: #FF6B01;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
}

.gallery-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 6vw, 75px);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.1;
}

.gallery-ribbon {
    display: inline-block;
    background-color: #FF6B01;
    color: #fff;
    padding: 6px 30px;
    font-family: 'Anton', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
    transform: rotate(-2deg);
    margin-bottom: 20px;
    /* Brush fade effect */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 5%, black 15%, black 85%, rgba(0,0,0,0.5) 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 5%, black 15%, black 85%, rgba(0,0,0,0.5) 95%, transparent 100%);
}

.gallery-instagram-text {
    font-size: 16px;
    color: #ccc;
    font-weight: 400;
}

.gallery-instagram-text strong {
    color: #FF6B01;
}

/* Carousel Layout */
.gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: #FF6B01;
    border-color: #FF6B01;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.gallery-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

/* Gallery Cards */
.gallery-card {
    flex: 0 0 auto;
    width: 250px;
    height: 380px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    scroll-snap-align: center;
    border: 2px solid rgba(255, 107, 1, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card:hover {
    border-color: #FF6B01;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 1, 0.2);
}

/* Gradient Overlay for bottom text */
.gallery-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 1;
}

/* Play Button */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    padding-left: 3px; /* visual center for play icon */
}

.gallery-card:hover .play-btn-circle {
    background: #FF6B01;
    border-color: #FF6B01;
    transform: scale(1.1);
}

/* Label */
.card-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15,15,15,0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    z-index: 3;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.card-label i {
    color: #fff;
}

/* Footer Button */
.gallery-footer {
    text-align: center;
    margin-top: 10px;
}

.btn-instagram-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 107, 1, 0.4);
    border-radius: 8px;
    color: #FF6B01;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-instagram-outline:hover {
    background: #FF6B01;
    color: #fff;
}

.btn-instagram-outline i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .gallery-nav-btn {
        display: none; /* Hide arrows on mobile */
    }
    
    .gallery-card {
        width: 220px;
        height: 330px;
    }
}

/* Branches Section */
.branches-bg {
    background: var(--dark);
    color: var(--white);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.branch-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.branch-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.branch-item p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.branch-item .link {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/* Footer */
.footer-dark {
    background-color: #0d0d0d;
    background-image: url('../assets/images/fondo.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    border-top: 2px solid rgba(255, 107, 1, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

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

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255, 107, 1, 0.3);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 1, 0.4);
}

.footer-links {
    padding-left: 20px;
}

.footer-links-middle {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
}

.footer-links h4 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 20px;
}

.footer-links ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.link-icon {
    color: var(--primary);
    font-size: 12px;
    margin-right: 10px;
}

.sedes-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.location-icon {
    color: var(--primary);
    font-size: 16px;
    margin-right: 15px;
    margin-top: 3px;
}

.sedes-list li div {
    display: flex;
    flex-direction: column;
}

.sedes-list li strong {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.sedes-list li span {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.footer-bottom-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto 30px;
    width: 80%;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.footer-fire-icon {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 1, 0.4));
}

/* =============================================
   RESPONSIVE - Mobile / iPhone / Safari
   ============================================= */
@media (max-width: 992px) {
    
    /* Disable sticky scroll on mobile - show normal layout */
    #inicio.hero {
        height: auto !important;
        min-height: 100vh;
        min-height: -webkit-fill-available; /* Safari fix */
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-sticky-container {
        position: relative !important;
        height: auto !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 20px;
        overflow: visible !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-text-area {
        grid-column: 1 / -1;
        padding: 30px 20px 0;
        align-items: center;
    }
    
    .hero h1 {
        font-size: clamp(42px, 11vw, 72px);
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-cta-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-area {
        grid-column: 1 / -1;
        position: relative;
        right: auto;
        height: 300px;
        margin-top: 20px;
    }
    
    .main-food-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        right: auto;
        bottom: auto;
    }
    
    .side-food-img {
        display: none; /* Hide side image on mobile */
    }

    .hero-thumbnails {
        justify-content: center;
        margin-top: 20px;
    }

    .thumb {
        /* Show all thumbs on mobile, no scroll needed */
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-divider {
        display: none; /* Hide complex SVG on mobile, use gradient bg instead */
    }

    .hero-sticky-container {
        background: linear-gradient(135deg, #fff 50%, #FF8A50 50%);
    }
    
    .ingredients-layer {
        display: none; /* Hide floating ingredients on mobile */
    }
    
    header {
        padding: 15px 20px;
    }
    
    .menu-trigger span {
        color: #333;
    }
    
    .hamburger span {
        background: #333;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 15px;
    }
    
    .footer-logo {
        font-size: 26px;
    }

    .footer-info p {
        font-size: 12px;
        line-height: 1.4;
    }

    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links ul li a {
        font-size: 12px;
    }

    .sedes-list li {
        margin-bottom: 15px;
    }

    .sedes-list li strong {
        font-size: 12px;
    }

    .sedes-list li span {
        font-size: 11px;
    }

    .footer-links-middle {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .btn-order {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* =============================================
   ORDER MODAL STYLES
   ============================================= */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.order-modal {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.order-modal-overlay.active .order-modal {
    transform: translateY(0) scale(1);
}

.order-modal-header {
    background: #111;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #FF6B01;
}

.order-modal-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    margin: 0;
    letter-spacing: 1px;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #FF6B01;
}

.order-modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
#captchaAnswer {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
#captchaAnswer:focus {
    outline: none;
    border-color: #FF6B01;
}

.captcha-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.btn-submit-order {
    width: 100%;
    padding: 15px;
    background: #FF6B01;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-transform: uppercase;
}

.btn-submit-order:hover {
    background: #e65c00;
}

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

/* =============================================
   WHATSAPP VIBRATION ANIMATION
   ============================================= */
@keyframes wa-vibrate {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation: wa-vibrate 2s infinite;
}

/* =============================================
   CAPTCHA & BUTTON STYLES
   ============================================= */
.captcha-label {
    font-weight: 600;
    color: #666;
    margin-right: 10px;
}

.captcha-styled-text {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: #FF6B01;
    letter-spacing: 2px;
    margin-right: 15px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    border: 1px dashed #FF6B01;
}

/* Submit Button Pulse Effect */
@keyframes order-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 1, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 107, 1, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 1, 0); }
}

.btn-pulse {
    animation: order-pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
