
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0A0C12;
            color: #EDEDF0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #1A1E2A;
        }

        ::-webkit-scrollbar-thumb {
            background: #F4B642;
            border-radius: 12px;
        }

        /* Navbar moderna */
        .navbar {
            background: rgba(10, 12, 18, 0.85);
            backdrop-filter: blur(16px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            padding: 0.7rem 2rem;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #FFDE9C, #F4B642);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .navbar-brand img {
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
        }

        .nav-link {
            font-weight: 600;
            margin: 0 0.2rem;
            border-radius: 40px;
            color: #E2E2E8 !important;
            transition: 0.2s;
        }

        .nav-link:hover {
            background: #F4B642;
            color: #0A0C12 !important;
            transform: translateY(-2px);
        }

        /* Hero mejorado */
        .hero {
            position: relative;
            background: linear-gradient(115deg, #0B0D14 0%, #181E2C 100%), var(--hero-bg, url('img/2024-01-17.jpg'));
            background-size: cover;
            background-blend-mode: overlay;
            background-position: center 40%;
            text-align: center;
            padding: 130px 20px 100px;
            border-bottom: 3px solid #F4B642;
        }

        .hero img {
            width: 130px;
            animation: floatLogo 3s ease infinite;
            filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.6));
        }

        @keyframes floatLogo {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(125deg, #FFE5B4, #F4B642);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-top: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 650px;
            margin: 16px auto 0;
            color: #CFD5E6;
        }

        /* Secciones */
        .section {
            padding: 5rem 2rem;
        }

        .section h2 {
            font-size: 2.7rem;
            font-weight: 700;
            color: #F4B642;
            margin-bottom: 2rem;
            display: inline-block;
            border-left: 5px solid #F4B642;
            padding-left: 20px;
        }

        /* CATEGORÍAS Y TARJETAS (versión definitiva con alérgenos pequeños) */
        .category-block {
            margin-bottom: 3.5rem;
        }

        .category-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: #FFE2AE;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px dashed rgba(244, 182, 66, 0.3);
            padding-bottom: 10px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.2rem;
            list-style: none;
            padding: 0;
        }

        .menu-card {
            background: #12161F;
            border-radius: 28px;
            padding: 1rem 1.4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            transition: all 0.25s ease;
            border: 1px solid #262D3A;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .menu-card:hover {
            transform: translateY(-4px);
            border-color: #F4B642;
            background: #171E2A;
            box-shadow: 0 18px 28px -8px black;
        }

        .card-info {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 2;
        }

        .item-name {
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.2px;
            color: #FFFFFF;
        }

        /* Fila de alérgenos mejorada: iconos pequeños y etiqueta compacta */
        .allergen-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }

        .allergen-label {
            font-size: 0.65rem;
            font-weight: 600;
            background: #2A2F3D;
            padding: 2px 8px;
            border-radius: 30px;
            color: #C0CAF0;
            letter-spacing: 0.3px;
        }

        .alergeno-icons {
            display: inline-flex;
            gap: 5px;
            align-items: center;
            flex-wrap: wrap;
        }

        /* TAMAÑO REDUCIDO de los iconos de alérgenos */
        .icon-alergeno {
            width: 14px;
            height: 14px;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.1);
            transition: transform 0.1s;
            vertical-align: middle;
        }

        .menu-card:hover .icon-alergeno {
            filter: brightness(1);
        }

        .item-price {
            font-weight: 800;
            font-size: 1.2rem;
            color: #F4B642;
            background: rgba(244, 182, 66, 0.12);
            padding: 4px 14px;
            border-radius: 60px;
            white-space: nowrap;
            margin-left: 12px;
        }

        /* Tés */
        .tea-premium-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
        }

        .tea-card {
            background: #131824;
            border-radius: 26px;
            padding: 0.8rem 0.8rem;
            text-align: center;
            font-weight: 500;
            border: 1px solid #2D3442;
            transition: all 0.2s;
            font-size: 0.9rem;
        }

        .tea-card:hover {
            background: #F4B642;
            color: #0A0C12;
            transform: scale(1.02);
        }

        /* Contacto premium */
        .contact-premium {
            background: linear-gradient(145deg, #0D111A, #0A0E16);
            padding: 3rem 2rem;
            border-radius: 48px;
            margin: 2rem 1rem;
            text-align: center;
            border: 1px solid #2C3242;
        }

        .contact-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .contact-card {
            background: #161C28;
            border-radius: 48px;
            padding: 1.5rem 1.5rem;
            width: 220px;
            transition: 0.25s;
        }

        .contact-card i {
            font-size: 2rem;
            color: #F4B642;
        }

        .contact-card h4 {
            margin: 12px 0 6px;
            font-size: 1.2rem;
            color: #FFE5B4;
        }

        .contact-card a {
            color: #F4B642;
            text-decoration: none;
            font-size: 0.9rem;
        }

        /* Mapa y footer */
        .map-modern {
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px black;
        }

        .footer {
            background: #05070C;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid #F4B64230;
        }

        .footer-links a {
            color: #F4B642;
            margin: 0 10px;
            text-decoration: none;
        }

        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #0F131EEF;
            backdrop-filter: blur(12px);
            padding: 0.9rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            z-index: 1100;
            border-top: 1px solid #F4B642;
            font-size: 0.85rem;
        }

        .cookie-btn {
            background: #F4B642;
            border: none;
            padding: 5px 20px;
            border-radius: 60px;
            font-weight: bold;
        }

        .cookie-banner.hidden {
            display: none;
        }

        @media (max-width: 700px) {
            .menu-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .item-price {
                margin-left: 0;
                align-self: flex-start;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .icon-alergeno {
                width: 12px;
                height: 12px;
            }
        }

        .bg-dark-custom {
            background: #0A0E16;
        }

        .text-gold {
            color: #F4B642;
        }
    
        .subcategory-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #E8C97A;
            margin: 1.35rem 0 0.85rem;
            padding-left: 10px;
            border-left: 3px solid rgba(244, 182, 66, 0.35);
        }

        .dish-thumb {
            width: 52px;
            height: 52px;
            object-fit: cover;
            border-radius: 14px;
            margin-right: 10px;
            border: 1px solid #2D3442;
        }