/* ========================================
   FASTFOOD EXPRESS - STYLES
   Orange Vibrant Theme (25, 95%, 55%)
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);

    /* Accent Color - Orange Vibrant */
    --color-accent-h: 25;
    --color-accent-s: 95%;
    --color-accent-l: 55%;
    --color-accent: hsl(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l));
    --color-accent-rgb: 250, 130, 25;
    --color-accent-dark: hsl(var(--color-accent-h), var(--color-accent-s), 40%);
    --color-accent-light: hsl(var(--color-accent-h), var(--color-accent-s), 70%);

    /* Typography */
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vh, 150px);
    --container-padding: clamp(20px, 5vw, 80px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.theme-transitioning * { transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease !important; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

h1 { font-size: clamp(3rem, 10vw, 7rem); }
h2 { font-size: clamp(2.2rem, 6vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

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

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }

/* ===== UTILITY CLASSES ===== */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--container-padding); }

.section { padding: var(--section-padding) 0; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(var(--color-accent-rgb), 0.1);
    border-radius: 30px;
}

.section-title { margin-bottom: 20px; }

.section-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

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

.highlight { background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--color-accent-rgb), 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-icon { width: 20px; height: 20px; transition: transform 0.3s ease; }

.btn:hover .btn-icon { transform: translateX(5px); }

/* ===== CANVAS BACKGROUNDS ===== */
#webgl-canvas, #bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#webgl-canvas { opacity: 0.4; }
#bg-canvas { z-index: 1; }

/* ===== CUSTOM CURSOR ===== */
.cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cursor-container.active {
    opacity: 1;
    visibility: visible;
}

.cursor { position: fixed; pointer-events: none; z-index: 10000; mix-blend-mode: difference; }
.cursor-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, border-color 0.3s; }
.cursor-outline.hover { width: 60px; height: 60px; border-color: var(--color-accent); }
.cursor-outline.click { width: 30px; height: 30px; }
.cursor-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 12px; font-weight: 600; opacity: 0; transition: opacity 0.3s; white-space: nowrap; }
.cursor-outline.hover .cursor-text { opacity: 1; }

@media (pointer: coarse) { .cursor { display: none; } }

/* ===== PRELOADER - BOLSA DE COMIDA ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-bg);
    overflow: hidden;
}

/* Bolsas de papel */
.bag {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.bag-left {
    left: 0;
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 50%, #A0522D 100%);
}

.bag-right {
    right: 0;
    background: linear-gradient(225deg, #D2691E 0%, #8B4513 50%, #A0522D 100%);
}

.bag-front {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Pliegue superior de la bolsa */
.bag-fold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg,
        #C4A87C 0%,
        #B8956E 50%,
        transparent 100%
    );
}

.bag-left .bag-fold {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

.bag-right .bag-fold {
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

/* Logo en la bolsa */
.bag-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-logo-icon {
    font-size: clamp(4rem, 15vw, 8rem);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: bagBounce 2s ease-in-out infinite;
}

@keyframes bagBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.bag-right .bag-logo-icon {
    animation-delay: 0.5s;
}

/* Textura de papel */
.bag::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

/* Sombra interior */
.bag-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3));
}

.bag-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(270deg, transparent, rgba(0,0,0,0.3));
}

/* Contenido central */
.preloader-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(var(--color-accent-rgb), 0.4));
}

.preloader-logo svg {
    width: 100%;
    height: 100%;
}

.preloader-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preloader-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
}

.preloader-tagline {
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

/* Estado abierto de las bolsas */
.preloader.bags-open .bag-left {
    transform: translateX(-100%);
}

.preloader.bags-open .bag-right {
    transform: translateX(100%);
}

.preloader.show-content .preloader-center {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Ocultar preloader */
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease 0.2s, visibility 0.5s ease 0.2s;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 101;
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-accent);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-link:hover { color: var(--color-text); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }

.theme-selector { display: flex; gap: 8px; }

.theme-option {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.theme-option:hover { transform: scale(1.15); }
.theme-option.active { border-color: #fff; }
.theme-option[data-theme="orange"] { background: hsl(25, 95%, 55%); }
.theme-option[data-theme="red"] { background: hsl(0, 85%, 55%); }
.theme-option[data-theme="yellow"] { background: hsl(45, 95%, 55%); }
.theme-option[data-theme="green"] { background: hsl(120, 60%, 45%); }
.theme-option[data-theme="blue"] { background: hsl(210, 90%, 55%); }

.language-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
}

.lang-option {
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 16px;
    transition: var(--transition-fast);
}

.lang-option:hover {
    color: var(--color-text);
}

.lang-option.active {
    background: var(--color-accent);
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    padding: 100px var(--container-padding);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-nav-list { list-style: none; }

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 70%);
}

.floating-element {
    position: absolute;
    color: var(--color-accent);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-text {
    margin-bottom: 50px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 10px 24px;
    background: rgba(var(--color-accent-rgb), 0.1);
    border-radius: 30px;
}

.hero-title {
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-stat {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

.floating-badge {
    position: absolute;
    background: var(--color-bg-secondary);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.floating-badge.badge-1 { top: 20%; left: -10%; }
.floating-badge.badge-2 { bottom: 20%; right: -5%; }

.floating-badge-icon { width: 40px; height: 40px; background: var(--color-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.floating-badge-icon svg { width: 20px; height: 20px; fill: #fff; }
.floating-badge-text { font-family: var(--font-display); font-weight: 600; }
.floating-badge-text span { display: block; font-size: 0.8rem; color: var(--color-text-muted); font-weight: 400; }

/* ===== MENU SECTION ===== */
.menu-section {
    background: var(--color-bg-secondary);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-category {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-category:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 24px;
    text-align: center;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.category-price {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    padding: 8px 20px;
    background: rgba(var(--color-accent-rgb), 0.1);
    border-radius: var(--radius-xl);
}

/* ===== PROMOS SECTION ===== */
.promos-section {
    background: var(--color-bg-secondary);
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.promo-card.featured {
    border: 2px solid var(--color-accent);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-content {
    padding: 24px;
}

.promo-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.promo-validity {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    padding: 8px 16px;
    background: rgba(var(--color-accent-rgb), 0.1);
    border-radius: var(--radius-xl);
}

/* ===== COMBOS SECTION ===== */
.combos-section {
    background: var(--color-bg);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.combo-card {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-medium);
    position: relative;
}

.combo-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.combo-card.popular {
    border-color: var(--color-accent);
}

.combo-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
}

.combo-badge {
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
}

.combo-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.combo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.combo-card:hover .combo-image img {
    transform: scale(1.1);
}

.combo-content {
    padding: 24px;
    text-align: center;
}

.combo-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.combo-items {
    list-style: none;
    margin-bottom: 20px;
}

.combo-items li {
    padding: 8px 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.combo-items li:last-child {
    border-bottom: none;
}

.combo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-old {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ===== HOURS SECTION ===== */
.hours-section {
    background: var(--color-bg);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-content {
    padding-right: 40px;
}

.hours-content .section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.hours-content .section-title {
    margin-bottom: 20px;
}

.hours-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hours-list {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: 10px 0;
    overflow: hidden;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.hours-item.special {
    background: rgba(var(--color-accent-rgb), 0.1);
}

.hours-item.special .hours-day,
.hours-item.special .hours-time {
    color: var(--color-accent);
}

.hours-day {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-time {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.hours-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hours-image .image-wrapper {
    width: 100%;
    height: 100%;
}

.hours-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
    background: var(--color-bg-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--color-accent-rgb), 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.location-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-accent);
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.location-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.location-phone {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ===== ORDER SECTION ===== */
.order-section {
    background: var(--color-bg);
}

.order-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.order-option {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-option:hover {
    transform: translateY(-10px);
    background: var(--color-bg-tertiary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

.order-icon {
    width: 90px;
    height: 90px;
    background: rgba(var(--color-accent-rgb), 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.order-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--color-accent);
}

.order-option h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.order-option p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-btn {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(var(--color-accent-rgb), 0.1);
    color: var(--color-accent);
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.store-btn:hover {
    background: var(--color-accent);
    color: #fff;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--color-bg-secondary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(var(--color-accent-rgb), 0.2);
}

.faq-question {
    width: 100%;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--color-accent);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p { padding: 0 30px 24px; color: var(--color-text-secondary); line-height: 1.8; }

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 40px; }

.contact-details { list-style: none; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--color-accent-rgb), 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg { width: 24px; height: 24px; fill: var(--color-accent); }

.contact-item-text h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 1.1rem; color: var(--color-text); }
.contact-item-text a:hover { color: var(--color-accent); }

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover { background: var(--color-accent); transform: translateY(-5px); }
.social-link svg { width: 22px; height: 22px; fill: var(--color-text); }
.social-link:hover svg { fill: #fff; }

.contact-form-wrapper {
    background: var(--color-bg-secondary);
    padding: 50px;
    border-radius: var(--radius-xl);
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-group { position: relative; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: var(--color-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-muted); }

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg-secondary);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-logo .logo-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-accent);
}

.footer-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text);
    transition: var(--transition-fast);
}

.footer-social a:hover svg {
    fill: var(--color-bg);
}

.footer-links h4,
.footer-contact h4,
.footer-app h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

.footer-links a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-app .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-app .app-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-fast);
}

.footer-app .app-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.scroll-progress.visible { opacity: 1; visibility: visible; }

.scroll-progress svg { transform: rotate(-90deg); }
.scroll-progress-bg { fill: none; stroke: rgba(255, 255, 255, 0.1); stroke-width: 3; }
.scroll-progress-bar { fill: none; stroke: var(--color-accent); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 283; stroke-dashoffset: 283; transition: stroke-dashoffset 0.1s; }

.scroll-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 100;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }
.back-to-top svg { width: 24px; height: 24px; fill: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu { display: block; }

    .theme-selector,
    .language-selector,
    .header-actions > .btn {
        display: none !important;
    }

    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 30px; }
    .stat-number { font-size: 2rem; }

    .menu-categories { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .promos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .order-options { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .hours-grid { grid-template-columns: 1fr; gap: 40px; }
    .hours-content { padding-right: 0; text-align: center; }
    .hours-image { order: -1; }
    .hours-image img { height: 350px; }

    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: clamp(60px, 10vh, 100px); }

    .header-actions { gap: 10px; }
    .theme-selector { display: none; }

    .hero-section { padding: 100px 0 60px; }
    .hero-label { font-size: 0.85rem; padding: 8px 18px; }
    .hero-description { font-size: 1.1rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
    .hero-stat { padding: 12px; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.75rem; }
    .scroll-indicator { display: none; }
    .floating-element { display: none; }

    .menu-categories { grid-template-columns: 1fr; gap: 20px; }
    .category-image { height: 180px; }
    .category-content { padding: 20px; }
    .category-content h3 { font-size: 1.25rem; }

    .promos-grid { grid-template-columns: 1fr; gap: 20px; }
    .promo-image { height: 180px; }
    .promo-content { padding: 20px; }

    .combos-grid { grid-template-columns: 1fr; gap: 20px; }
    .combo-image { height: 160px; }
    .combo-content { padding: 20px; }

    .locations-grid { grid-template-columns: 1fr; gap: 20px; }
    .location-card { padding: 30px 24px; }

    .hours-image img { height: 280px; }
    .hours-item { padding: 16px 20px; }
    .hours-day { font-size: 1rem; }

    .order-options { grid-template-columns: 1fr; gap: 20px; }
    .order-option { padding: 40px 30px; }

    .faq-question { padding: 22px 24px; font-size: 1rem; }
    .faq-answer p { padding: 0 24px 20px; }

    .floating-badge { display: none; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 20px auto 0; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .footer-legal { justify-content: center; }

    .scroll-progress { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .back-to-top { bottom: 20px; left: 20px; width: 45px; height: 45px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .btn { padding: 14px 28px; font-size: 0.9rem; }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
    .stat-number { font-size: 1.4rem; }

    .contact-form-wrapper { padding: 30px 20px; }

    .combo-card, .location-card, .order-option { border-radius: var(--radius-lg); }
}

/* ===== ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].revealed { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* Split Text Animation */
.split-char { display: inline-block; opacity: 0; transform: translateY(100%); }
.split-char.animate { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }

/* Parallax */
[data-parallax-img] { overflow: hidden; }
[data-parallax-img] img { transform: scale(1.2); }

/* Magnetic effect */
[data-magnetic] { transition: transform 0.3s ease; }

/* Tilt effect */
[data-tilt] { transform-style: preserve-3d; }
