/*
Theme Name: Chamos Grill Theme Multipage
Author: Antigravity
Description: A modern multipage theme for Chamos Grill.
Version: 2.0
*/

        :root {
            --bg-primary: #0A0A0A;
            --bg-secondary: #121212;
            --bg-card: rgba(30, 30, 30, 0.6);
            --accent: #FF6A00;
            --accent-hover: #E65C00;
            --highlight: #FFD400;
            --text-main: #FFFFFF;
            --text-muted: #A0A0A0;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 32px;
            --font-main: 'Poppins', sans-serif;
            --font-heading: 'Bebas Neue', cursive;
            --font-accent: 'Playfair Display', serif;
            --container-width: 1200px;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { 
            scroll-behavior: smooth; 
            overflow-x: hidden;
            width: 100%;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-main);
            font-family: var(--font-main);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* =====================
           HEADER / NAVBAR
        ===================== */
        header {
            background-color: rgba(10, 10, 10, 0.8);
            padding: 12px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            transition: var(--transition);
        }

        header.scrolled {
            padding: 8px 0;
            background-color: rgba(10, 10, 10, 0.95);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo image in navbar */
        .logo-img {
            height: 90px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
            filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.4));
        }

        .logo-img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 14px rgba(255, 106, 0, 0.7));
        }

        /* Language Modal Styles */
        .lang-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: opacity 0.5s ease, visibility 0.5s;
        }
        .lang-modal-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* Flicker prevention - Force hide if seen */
        html.preload-seen #videoPreloader {
            display: none !important;
        }

        /* Video Preloader Styles */
        .video-preloader {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            width: 100vw; height: 100vh;
            background: #000;
            display: flex; align-items: center; justify-content: center;
            z-index: 10001;
            opacity: 1;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            /* Safety fallback: Hide automatically after 6s */
            animation: forceHidePL 6s forwards;
        }

        @keyframes forceHidePL {
            0% { opacity: 1; visibility: visible; }
            90% { opacity: 1; visibility: visible; }
            100% { opacity: 0; visibility: hidden; pointer-events: none; }
        }

        .video-preloader.hidden {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .video-preloader video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-preloader.fade-out {
            opacity: 0;
            pointer-events: none;
        }
        .lang-modal-content {
            text-align: center;
            background: var(--bg-card);
            padding: 50px;
            border-radius: var(--radius-lg);
            border: 2px solid var(--accent);
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 50px rgba(255,106,0,0.2);
        }
        .lang-modal-content h2 {
            font-size: 40px;
            margin-bottom: 30px;
            color: var(--text-main);
        }
        .lang-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        .btn-lang {
            padding: 15px 30px;
            font-family: var(--font-heading);
            font-size: 24px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--accent);
            background: transparent;
            color: var(--text-main);
            width: 150px;
        }
        .btn-lang:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-5px);
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .mobile-menu-title { display: none; }

        /* Language Selector in Navbar */
        .lang-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-size: 14px;
            color: var(--text-muted);
            margin-right: 10px;
        }

        .lang-btn {
            cursor: pointer;
            transition: var(--transition);
            padding: 2px 5px;
            border-radius: 4px;
        }

        .lang-btn:hover { color: var(--accent); }
        .lang-btn.active { color: var(--accent); border: 1px solid rgba(255,106,0,0.3); }
        .lang-divider { opacity: 0.3; }

        .nav-link {
            font-family: var(--font-main);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover { color: var(--text-main); }
        .nav-link:hover::after { width: 100%; }

        .btn-order {
            background: linear-gradient(135deg, var(--accent), #FF8C00);
            color: var(--text-main);
            padding: 11px 28px;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-size: 20px;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
            transition: var(--transition);
        }

        .btn-order:hover {
            background: linear-gradient(135deg, var(--accent-hover), var(--accent));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* =====================
           HERO
        ===================== */
        .hero {
            height: 100vh;
            min-height: 700px;
            background-color: #000;
            background-image: 
                linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%),
                url('https://chamosgrill.com/wp-content/uploads/2026/03/Sketch_morphs_into_202603221042-ezgif.com-video-to-webp-converter.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll !important;
                background-position: center center !important;
                height: auto;
                min-height: 100vh;
                padding: 120px 0 60px;
            }
            .hero-content h1 {
                font-size: 45px !important;
                letter-spacing: -1px !important;
                word-wrap: break-word;
            }
            .hero-content p {
                font-size: 15px !important;
                padding: 0 15px;
                margin-bottom: 30px;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .btn-cta, .btn-glass {
                width: 280px;
                text-align: center;
            }
        }


        .hero::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 150px;
            background: linear-gradient(to top, var(--bg-primary), transparent);
            pointer-events: none;
            z-index: 2;
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 35px;
        }

        .btn-glass {
            display: inline-block;
            padding: 16px 35px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff !important;
            text-decoration: none;
            font-weight: 700;
            font-family: var(--font-heading);
            letter-spacing: 2px;
            border-radius: var(--radius-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 16px;
            text-transform: uppercase;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0; 
            margin-top: 40px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(230, 126, 34, 0.1);
            border: 1px solid rgba(230, 126, 34, 0.3);
            color: var(--accent);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 24px;
            backdrop-filter: blur(5px);
        }

        .hero-content h1 {
            font-size: clamp(40px, 12vw, 120px);
            margin-bottom: 10px;
            line-height: 0.9;
            text-shadow: 0 10px 40px rgba(0,0,0,0.5);
            letter-spacing: -2px;
        }

        .hero-content h1 span { 
            color: var(--accent); 
            text-shadow: 0 0 50px rgba(230, 126, 34, 0.4);
        }

        .hero-content p {
            font-family: var(--font-accent);
            font-size: clamp(16px, 4vw, 22px);
            font-style: italic;
            color: rgba(255,255,255,0.9);
            max-width: 650px;
            margin: 0 auto 45px;
            line-height: 1.4;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .btn-order {
            background: var(--accent);
            color: white;
            padding: 14px 36px;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-size: 22px;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-order:hover {
            background: var(--accent-hover);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(230, 126, 34, 0.5);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.05);
            color: var(--text-main);
            padding: 14px 36px;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-size: 22px;
            letter-spacing: 1px;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-5px);
        }

        /* =====================
           SECTION TITLES
        ===================== */
        .section { padding: 100px 0; }
        .section-alt { background-color: var(--bg-secondary); }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title .label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title h2 {
            font-size: 54px;
            color: var(--text-main);
            line-height: 1;
        }

        .section-title h2 span { color: var(--accent); }

        .section-title .divider {
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            border-radius: 2px;
            margin: 16px auto 20px;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 550px;
            margin: 0 auto;
        }

        /* =====================
           FEATURED ITEMS (3 cards)
        ===================== */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .menu-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .menu-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(230, 126, 34, 0.4);
            box-shadow: 0 30px 60px rgba(0,0,0,0.6);
            background: rgba(40, 40, 40, 0.8);
        }

        .card-img {
            height: 240px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .card-img::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg-card), transparent);
        }

        .card-badge {
            position: absolute;
            top: 16px; right: 16px;
            background: var(--accent);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .card-content { padding: 22px; }

        .card-content h3 {
            font-size: 28px;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .card-content p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        /* =====================
           FULL MENU TABLE
        ===================== */
        .menu-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .menu-category {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.06);
            transition: var(--transition);
        }

        .menu-category:hover {
            border-color: rgba(255,106,0,0.3);
        }

        .menu-category h3 {
            font-size: 26px;
            color: var(--accent);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,106,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
        }

        .menu-item:last-child { border-bottom: none; }

        .menu-item-name {
            font-weight: 500;
            font-size: 15px;
            flex: 1;
        }

        .menu-item-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .menu-item-price {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--highlight);
            white-space: nowrap;
            margin-left: 16px;
        }

        /* =====================
           ABOUT / HISTORIA
        ===================== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
        }

        .about-img img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-img:hover img { transform: scale(1.04); }

        .about-img::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            border: 2px solid rgba(255,106,0,0.3);
            z-index: 2;
            pointer-events: none;
        }

        .about-content .section-title {
            text-align: left;
            margin-bottom: 30px;
        }

        .about-content p {
            color: var(--text-muted);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .stat {
            text-align: center;
            background: var(--bg-card);
            padding: 20px 24px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255,106,0,0.2);
        }

        .stat .stat-num {
            font-family: var(--font-heading);
            font-size: 42px;
            color: var(--accent);
            line-height: 1;
        }

        .stat .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* =====================
           GALLERY
        ===================== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto;
            gap: 16px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: var(--radius-md);
            position: relative;
            cursor: pointer;
            display: block; /* ensure a tags behave as blocks */
        }

        .gallery-item img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img { transform: scale(1.08); }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(255,106,0,0.8), rgba(0,0,0,0.4));
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after { opacity: 0.95; }

        .gallery-content {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 2;
            text-align: left;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-content {
            transform: translateY(0);
        }

        .gallery-content h3 {
            font-size: 24px;
            color: white;
            margin-bottom: 5px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .gallery-content i {
            font-size: 14px;
            color: var(--highlight);
            background: rgba(0,0,0,0.4);
            padding: 8px 12px;
            border-radius: 50px;
            margin-top: 5px;
            display: inline-block;
        }

        .gallery-item.large { grid-column: span 2; }

        .gallery-item.large img { height: 360px; }

        /* =====================
           TESTIMONIALS
        ===================== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 28px;
            border: 1px solid rgba(255,255,255,0.06);
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 16px; left: 20px;
            font-family: Georgia, serif;
            font-size: 80px;
            color: rgba(255,106,0,0.15);
            line-height: 1;
        }

        .review-stars {
            color: var(--highlight);
            font-size: 16px;
            margin-bottom: 16px;
        }

        .review-text {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .review-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--highlight));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 20px;
            flex-shrink: 0;
        }

        .footer-col h4 {
            color: var(--accent);
            font-size: 20px;
            margin-bottom: 25px;
            font-family: var(--font-heading);
            letter-spacing: 1px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--text-main); /* Asegurar visibilidad */
            font-size: 14px;
        }

        .contact-item i {
            color: var(--accent);
            font-size: 18px;
            width: 20px;
            text-align: center;
        }

        .contact-item span, .contact-item a {
            color: var(--text-main) !important;
            opacity: 0.9;
        }

        /* =====================
           CTA BANNER
        ===================== */
        .cta-section {
            background:
                linear-gradient(135deg, rgba(255,106,0,0.9), rgba(230,92,0,0.85)),
                url('https://chamosgrill.com/wp-content/uploads/2026/03/348s-1-300x300.webp');
            background-size: cover;
            background-position: center;
            padding: 90px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            font-size: 62px;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 36px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .btn-cta {
            background: var(--bg-primary);
            color: var(--accent);
            padding: 15px 40px;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-size: 24px;
            letter-spacing: 1.5px;
            position: relative;
            z-index: 2;
            display: inline-block;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn-cta:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
        }

        /* =====================
           FOOTER
        ===================== */
        .footer {
            background-color: #050505;
            padding: 70px 0 30px;
            border-top: 1px solid rgba(255, 106, 0, 0.15);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand img {
            height: 110px;
            margin-bottom: 16px;
            filter: drop-shadow(0 0 8px rgba(255,106,0,0.3));
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            max-width: 240px;
        }

        .footer-col h4 {
            font-size: 18px;
            color: var(--accent);
            margin-bottom: 18px;
            letter-spacing: 2px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

        .footer-col .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 14px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-col .contact-item i {
            color: var(--accent);
            margin-top: 3px;
            width: 16px;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 126, 34, 0.1);
            border: 1px solid rgba(255, 126, 34, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-link:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 126, 34, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            color: #555;
            font-size: 13px;
        }

        /* =====================
           RESPONSIVE
        ===================== */
        /* --- DESKTOP DROPDOWN (Hover based) --- */
        .order-dropdown {
            position: relative;
            display: inline-block;
        }

        .chamos-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: #1A1A1A;
            border: 2px solid var(--accent);
            border-radius: var(--radius-sm);
            width: 280px;
            display: none; /* Hidden on PC by default */
            flex-direction: column;
            box-shadow: 0 10px 40px rgba(0,0,0,0.8);
            z-index: 10002;
            margin-top: 10px;
            list-style: none;
            padding: 0;
        }

        .order-dropdown:hover .chamos-dropdown-menu {
            display: flex; /* Show only on hover in PC */
        }

        .chamos-dropdown-menu li a {
            padding: 10px 20px;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-align: left;
            text-transform: uppercase;
            transition: background 0.3s;
            display: block;
        }

        .chamos-dropdown-menu li a:hover {
            background: var(--accent);
        }

        .chamos-dropdown-menu li:not(:last-child) {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        /* --- MOBILE NAVIGATION FIX (Side Drawer) --- */
        @media (max-width: 900px) {
            .nav-container {
                display: flex !important;
                justify-content: space-between !important;
                padding: 0 20px !important;
            }

            .hamburger {
                display: flex !important;
                flex-direction: column;
                gap: 6px;
                z-index: 30000 !important;
                position: relative;
                cursor: pointer;
                margin-left: auto;
            }

            .hamburger span {
                width: 30px;
                height: 3px;
                background-color: var(--accent) !important;
                transition: 0.3s;
            }

            .hamburger.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed !important;
                top: 0 !important;
                right: -310px !important;
                width: 300px !important;
                height: 100vh !important;
                background: linear-gradient(rgba(13, 13, 13, 0.95), rgba(13, 13, 13, 0.95)), url('https://chamosgrill.com/wp-content/uploads/2026/04/Gemini_Generated_Image_7rfr0p7rfr0p7rfr.webp') !important;
                background-size: cover !important;
                background-position: center !important;
                display: flex !important;
                flex-direction: column !important;
                padding: 40px 25px !important;
                gap: 15px !important;
                transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0) !important;
                z-index: 25000 !important;
                border-left: 1px solid var(--accent);
                overflow-y: auto !important;
                backdrop-filter: blur(10px);
            }

            .nav-menu::before {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0; height: 150px;
                background: url('https://chamosgrill.com/wp-content/uploads/2026/04/Gemini_Generated_Image_uybr9duybr9duybr-300x226.webp') no-repeat center;
                background-size: cover;
                opacity: 0.3;
                z-index: -1;
                mask-image: linear-gradient(to bottom, black, transparent);
            }

            .nav-menu.open {
                right: 0 !important;
            }

            .nav-menu .nav-link {
                color: #FFFFFF !important;
                font-size: 20px !important;
                padding: 8px 0 !important;
            }

            .nav-menu .btn-order {
                margin-top: 10px !important;
                padding: 12px !important;
                font-size: 18px !important;
                background: var(--accent) !important;
                color: #FFF !important;
                text-align: center;
                border-radius: var(--radius-sm);
            }

            /* Corregir dropdown en móvil */
            .nav-menu .chamos-dropdown-menu {
                position: relative !important;
                width: 100% !important;
                right: 0 !important;
                left: 0 !important;
                display: none !important;
                background: rgba(255, 140, 0, 0.1) !important;
                border: 1px solid rgba(255, 140, 0, 0.2) !important;
                margin-top: 10px !important;
                box-shadow: none !important;
            }

            .nav-menu .chamos-dropdown-menu.show {
                display: block !important;
            }

            .chamos-dropdown-menu {
                right: 0 !important;
                left: auto !important;
                min-width: 260px;
                max-width: calc(100vw - 40px);
            }
        }

        .hero-btn-large {
            font-size: 24px !important;
            padding: 16px 40px !important;
            box-shadow: 0 4px 15px rgba(255,106,0,0.3);
            margin: 10px auto;
        }

        /* --- MODERN REVEAL ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.active, .no-js .reveal {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-left.active, .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Delay utilities */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        /* Premium accents */
        .premium-border {
            position: relative;
        }
        .premium-border::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .serif {
            font-family: var(--font-accent);
        }

        /* Text Gradients */
        .text-gradient {
            background: linear-gradient(135deg, var(--text-main) 30%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* =====================
           MENU PAGE STYLES
        ===================== */
        .menu-page {
            padding: 120px 0 80px;
            background: radial-gradient(circle at top, #1a1a1a 0%, #0d0d0d 100%);
            min-height: 100vh;
        }

        .menu-category-section {
            margin-bottom: 60px;
        }

        .menu-category-title {
            font-family: var(--font-heading);
            color: var(--accent);
            font-size: 32px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255,106,0,0.15);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }

        .menu-item-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: var(--radius-md);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .menu-item-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }

        .menu-item-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .menu-item-card-name {
            font-family: var(--font-heading);
            font-size: 22px;
            color: #fff;
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .menu-item-card-price {
            color: var(--accent);
            font-weight: 700;
            font-size: 20px;
            font-family: 'Poppins', sans-serif;
            background: rgba(255,106,0,0.1);
            padding: 2px 10px;
            border-radius: 6px;
        }

        .menu-item-card-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            font-style: italic;
        }

        .menu-tag {
            display: inline-block;
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        .tag-weekend { background: #e74c3c; color: #fff; }
        .tag-picanha { background: var(--accent); color: #fff; }
        .tag-popular { background: #2ecc71; color: #fff; }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .menu-page { padding-top: 100px; }
            .menu-category-title { font-size: 26px; }
            .menu-grid { grid-template-columns: 1fr; }

            .section-title h2 {
                font-size: clamp(32px, 8vw, 42px);
            }
            .cta-section h2 {
                font-size: clamp(34px, 10vw, 46px);
                line-height: 1.1;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about-img img, .about-img video {
                height: 320px !important;
            }
            .about-content .section-title {
                text-align: center;
            }
            .about-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-item.large {
                grid-column: span 2;
            }
            .gallery-item img {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-brand p {
                margin: 0 auto 16px;
            }
            .social-links {
                justify-content: center;
            }
            .footer-bottom {
                justify-content: center;
                text-align: center;
                flex-direction: column;
                gap: 8px;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .gallery-item.large {
                grid-column: span 1;
            }
            .gallery-item img {
                height: 240px;
            }
        }

        @media (max-width: 400px) {
            .lang-buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .btn-lang {
                width: 100%;
                max-width: 200px;
            }
        }
