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

:root {
    /* Paleta de colores elegante basada en el logo */
    --crema-premium: #D4C4AA;
    --marron-elegante: #6B4C3B;
    --marron-oscuro: #4A3429;
    --dorado-sutil: #C9A961;
    --dorado-brillante: #E4D4A8;
    --blanco-perla: #FDFBF7;
    --beige-claro: #F5EFE6;
    --negro-carbon: #1A1A1A;
    --gris-elegante: #8B8680;
    --sombra-suave: rgba(107, 76, 59, 0.08);
    --sombra-media: rgba(107, 76, 59, 0.15);
    --sombra-intensa: rgba(107, 76, 59, 0.25);
}

::selection {
    background: var(--dorado-sutil);
    color: var(--blanco-perla);
}

body {
    font-family: 'Causten', 'Outfit', 'Poppins', sans-serif;
    font-weight: 300; /* Light */
    background: var(--blanco-perla);
    color: var(--marron-elegante);
    overflow-x: hidden;
    cursor: default;
    line-height: 1.6;
    position: relative;
}

/* Textura de fondo elegante */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top left, rgba(212, 196, 170, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201, 169, 97, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, var(--blanco-perla) 0%, var(--beige-claro) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Custom Scrollbar Elegante */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--beige-claro);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--marron-elegante), var(--dorado-sutil));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--marron-oscuro), var(--dorado-brillante));
}

/* ===============================================
   ANIMACIONES PREMIUM
   =============================================== */

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201, 169, 97, 0); }
}

@keyframes elegantReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ===============================================
   PRELOADER PREMIUM
   =============================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--crema-premium) 0%, var(--blanco-perla) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: elegantReveal 1s ease-out;
}

.loader-logo {
    width: 400px;
    height: 400px;
    margin: 0 auto 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-main {
    width: 320px;
    height: 320px;
    position: relative;
    z-index: 3;
    animation: floatSmooth 3s ease-in-out infinite;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px var(--sombra-media));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 2px solid var(--dorado-sutil);
    border-radius: 50%;
    opacity: 0.6;
    animation: goldPulse 2.5s ease-out infinite;
}

.pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 1px solid var(--marron-elegante);
    border-radius: 50%;
    opacity: 0.3;
    animation: goldPulse 2.5s ease-out infinite 0.7s;
}

.loader-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--marron-elegante);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: elegantReveal 1.5s ease-out 0.5s both;
}

/* ===============================================
   HEADER CON EFECTO GLASS MORPHISM
   =============================================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px var(--sombra-suave);
    border-bottom: 1px solid rgba(212, 196, 170, 0.2);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(253, 251, 247, 0.95);
    box-shadow: 0 4px 30px var(--sombra-media);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

header.scrolled .header-container {
    padding: 15px 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-section:hover {
    transform: translateY(-3px) scale(1.02);
}

.navbar-logo {
    height: 140px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 15px var(--sombra-suave));
}

header.scrolled .navbar-logo {
    height: 100px;
}

/* ===============================================
   CORRECCIÓN SCROLL PARA NAVBAR FIJO
   =============================================== */

/* Todas las secciones necesitan espacio para el navbar fijo */
section[id] {
    scroll-margin-top: 180px;
}

/* Ajuste cuando el header está scrolleado (más pequeño) */
@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 120px;
    }
}

/* ===============================================
   NAVEGACIÓN ELEGANTE
   =============================================== */

nav {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-link {
    color: var(--marron-elegante);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--dorado-sutil), var(--dorado-brillante));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--dorado-brillante), var(--dorado-sutil));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.nav-link:hover {
    color: var(--dorado-sutil);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--dorado-sutil);
}

.nav-link.active::before,
.nav-link.active::after {
    width: 100%;
}

/* Botón de Reserva Premium */
.reservation-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--marron-elegante), var(--marron-oscuro));
    color: var(--blanco-perla);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--sombra-suave);
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(201, 169, 97, 0.4),
        transparent);
    transition: left 0.8s ease;
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--sombra-media);
    background: linear-gradient(135deg, var(--dorado-sutil), var(--dorado-brillante));
}

.reservation-btn:hover::before {
    left: 100%;
    animation: shimmer 0.8s ease;
}

.reservation-btn span {
    position: relative;
    z-index: 1;
}

/* ===============================================
   HERO SECTION LUXURY
   =============================================== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            rgba(107, 76, 59, 0.7) 0%,
            rgba(212, 196, 170, 0.4) 50%,
            rgba(201, 169, 97, 0.5) 100%),
        url('https://res.cloudinary.com/dxvl2i2fy/image/upload/v1764181801/_MG_8945_pjgoxy.webp') center/cover;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--blanco-perla), transparent);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 80px 40px;
    background: rgba(253, 251, 247, 0.1);
    backdrop-filter: blur(15px) brightness(1.1);
    -webkit-backdrop-filter: blur(15px) brightness(1.1);
    border-radius: 30px;
    border: 1px solid rgba(212, 196, 170, 0.3);
    box-shadow: 0 30px 60px var(--sombra-intensa);
    max-width: 900px;
    animation: elegantReveal 1.5s ease;
}

.hero-title {
    font-family: 'Valerius', 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 400;
    font-style: normal; /* Cambiado de italic a normal */
    line-height: 1;
    margin-bottom: 30px;
    color: var(--blanco-perla);
    text-shadow: 0 5px 20px rgba(26, 26, 26, 0.3);
    position: relative;
    letter-spacing: 2px; /* Mejorado para Valerius */
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--dorado-brillante),
        var(--dorado-sutil),
        var(--dorado-brillante),
        transparent);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: normal;
    color: var(--dorado-brillante);
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(26, 26, 26, 0.2);
    animation: elegantReveal 1.5s ease 0.3s both;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(253, 251, 247, 0.95);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(26, 26, 26, 0.2);
    animation: elegantReveal 1.5s ease 0.6s both;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--dorado-brillante);
    color: var(--blanco-perla);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: elegantReveal 1.5s ease 0.9s both;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--dorado-sutil), var(--marron-elegante));
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.hero-cta:hover {
    color: var(--blanco-perla);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
    border-color: var(--dorado-sutil);
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0.9;
}

/* ===============================================
   SECCIÓN DE CATEGORÍAS PREMIUM
   =============================================== */

.categories-section {
    padding: 200px 0 120px 0;
    background: var(--blanco-perla);
    position: relative;
    display: none;
}

.categories-section.active {
    display: block;
    animation: elegantReveal 0.8s ease;
}

/* Decoración de fondo con patrón sutil */
.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(212, 196, 170, 0.03) 35px,
            rgba(212, 196, 170, 0.03) 70px
        );
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-overtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--dorado-sutil);
    margin-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.section-overtitle::before,
.section-overtitle::after {
    content: '◆';
    color: var(--dorado-sutil);
    margin: 0 15px;
    font-size: 0.6rem;
    display: inline-block;
    vertical-align: middle;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: normal;
    color: var(--marron-elegante);
    margin-bottom: 25px;
    position: relative;
    text-align: center;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gris-elegante);
    max-width: 700px;
    text-align: center;
    line-height: 1.8;
}

/* Ornamento decorativo */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--dorado-sutil),
        transparent);
}

.ornament-center {
    width: 10px;
    height: 10px;
    background: var(--dorado-sutil);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* Grid de categorías */
.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Tarjetas de categoría con imagen de fondo */
.category-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px var(--sombra-media);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px var(--sombra-intensa);
}

/* Overlay degradado elegante */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(74, 52, 41, 0.95) 0%,
        rgba(74, 52, 41, 0.75) 35%,
        rgba(74, 52, 41, 0.4) 70%,
        rgba(74, 52, 41, 0.2) 100%
    );
    transition: all 0.6s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(
        to top,
        rgba(74, 52, 41, 0.9) 0%,
        rgba(74, 52, 41, 0.6) 35%,
        rgba(74, 52, 41, 0.25) 70%,
        rgba(74, 52, 41, 0.1) 100%
    );
}

/* Contenido de la tarjeta */
.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
}

/* Línea decorativa dorada */
.category-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--dorado-sutil), var(--dorado-brillante));
    margin-bottom: 18px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.category-card:hover .category-line {
    width: 90px;
}

/* Nombre de categoría */
.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.category-card:hover .category-name {
    transform: translateY(-3px);
    color: var(--dorado-brillante);
}

/* Descripción de categoría */
.category-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    transition: all 0.4s ease;
}

.category-card:hover .category-desc {
    color: rgba(255, 255, 255, 0.95);
}

/* Categoria Destacada - Mar y Tierra */
.category-card.featured .category-overlay {
    background: linear-gradient(
        to top,
        rgba(201, 169, 97, 0.95) 0%,
        rgba(107, 76, 59, 0.85) 40%,
        rgba(74, 52, 41, 0.5) 70%,
        rgba(74, 52, 41, 0.2) 100%
    );
}

.category-card.featured:hover .category-overlay {
    background: linear-gradient(
        to top,
        rgba(201, 169, 97, 0.9) 0%,
        rgba(107, 76, 59, 0.75) 40%,
        rgba(74, 52, 41, 0.35) 70%,
        rgba(74, 52, 41, 0.1) 100%
    );
}

.category-card.featured .category-line {
    background: linear-gradient(90deg, #fff, var(--dorado-brillante));
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.5);
}

.category-card.featured .category-name {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.category-card.featured:hover .category-name {
    color: #fff;
}

/* ===============================================
   SECCIÓN DE MENÚ ELEGANTE
   =============================================== */

.menu-section {
    min-height: 100vh;
    padding: 200px 0 120px 0;
    background: linear-gradient(180deg, var(--beige-claro), var(--blanco-perla));
    display: none;
    position: relative;
}

.menu-section.active {
    display: block;
    animation: elegantReveal 0.8s ease;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========================================
   MENU PREMIUM - MAR Y TIERRA
======================================== */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.menu-item {
    background: var(--blanco-perla);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(74, 52, 41, 0.08);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 52, 41, 0.15);
}

/* Imagen del plato */
.menu-item-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--crema-premium), var(--beige-claro));
}

.menu-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}

.menu-item:hover .menu-item-image-wrapper img {
    transform: scale(1.08);
}

/* Tags posicionados sobre la imagen */
.menu-item-tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-tag {
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.menu-tag.nuevo {
    background: rgba(201, 169, 97, 0.9);
    color: #fff;
}

.menu-tag.popular {
    background: rgba(107, 76, 59, 0.9);
    color: #fff;
}

.menu-tag.vegano {
    background: rgba(139, 134, 128, 0.9);
    color: #fff;
}

/* Contenido del plato */
.menu-item-content {
    padding: 28px 24px 24px;
    text-align: center;
}

/* Linea decorativa dorada */
.menu-item-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dorado-sutil), transparent);
    margin: 0 auto 20px;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--marron-elegante);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.menu-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gris-elegante);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 50px;
}

.menu-item-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(212, 196, 170, 0.3);
}

.menu-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--dorado-sutil);
    letter-spacing: 2px;
    font-weight: 400;
}

/* Efecto de overlay sutil en hover */
.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dorado-sutil), var(--marron-elegante), var(--dorado-sutil));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.menu-item:hover::after {
    transform: scaleX(1);
}

/* Ocultar items filtrados */
.menu-item.hidden {
    display: none;
}

/* ===============================================
   SECCIÓN DE CONTACTO LUXURY
   =============================================== */

.contact-section {
    padding: 200px 0 120px 0;
    background: linear-gradient(135deg, var(--beige-claro) 0%, var(--blanco-perla) 100%);
    display: none;
    position: relative;
}

.contact-section.active {
    display: block;
    animation: elegantReveal 0.8s ease;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.contact-info {
    padding: 50px;
    background: var(--blanco-perla);
    border-radius: 15px;
    border: 1px solid rgba(212, 196, 170, 0.2);
    box-shadow: 0 10px 30px var(--sombra-suave);
    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--sombra-media);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: normal;
    color: var(--marron-elegante);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--dorado-sutil), transparent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dorado-sutil), var(--dorado-brillante));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blanco-perla);
    fill: none;
    stroke-width: 2;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dorado-sutil);
    margin-bottom: 8px;
}

.contact-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: var(--marron-elegante);
    line-height: 1.5;
}

.hours-grid {
    display: grid;
    gap: 25px;
    padding: 50px;
    background: var(--blanco-perla);
    border-radius: 15px;
    border: 1px solid rgba(212, 196, 170, 0.2);
    box-shadow: 0 10px 30px var(--sombra-suave);
    transition: all 0.4s ease;
}

.hours-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--sombra-media);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 196, 170, 0.2);
}

.hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--marron-elegante);
    letter-spacing: 1px;
}

.hour-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    color: var(--dorado-sutil);
    letter-spacing: 1px;
    font-weight: 400;
}

/* ===============================================
   SECCIÓN DE RESERVAS PREMIUM
   =============================================== */

.reservation-info-section {
    padding: 200px 20px 120px 20px;
    background: linear-gradient(135deg, var(--beige-claro) 0%, var(--blanco-perla) 100%);
    position: relative;
    display: none;
}

.reservation-info-section.active {
    display: block;
    animation: elegantReveal 0.8s ease;
}

.reservation-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tipos de Reserva Grid Premium */
.reservation-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.reservation-type-card {
    background: var(--blanco-perla);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px var(--sombra-media);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(212, 196, 170, 0.2);
    position: relative;
}

.reservation-type-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.reservation-type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px var(--sombra-intensa);
}

.reservation-type-card:hover::before {
    opacity: 1;
}

.reservation-type-card.featured {
    border: 2px solid var(--dorado-sutil);
    position: relative;
}

.reservation-type-card.featured::after {
    content: 'RECOMENDADO';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--dorado-sutil), var(--dorado-brillante));
    color: var(--blanco-perla);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px var(--sombra-media);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.card-image img[src=""],
.card-image img:not([src]) {
    display: none;
}

.plan-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.plan-image img[src=""],
.plan-image img:not([src]) {
    display: none;
}

.reservation-type-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.reservation-type-card .card-header {
    background: linear-gradient(135deg, var(--marron-elegante), var(--marron-oscuro));
    color: var(--blanco-perla);
    padding: 30px;
    position: relative;
}

.reservation-type-card.featured .card-header {
    background: linear-gradient(135deg, var(--dorado-sutil), var(--dorado-brillante));
}

.reservation-type-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 400;
}

.card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-content {
    padding: 35px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(212, 196, 170, 0.15);
    color: var(--gris-elegante);
    font-size: 0.95rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .icon {
    color: var(--dorado-sutil);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* ===============================================
   MODAL DE RESERVAS ELEGANTE
   =============================================== */

.reservation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    overflow-y: auto;
}

.reservation-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reservation-modal-container {
    position: relative;
    max-width: 750px;
    width: 100%;
    background: linear-gradient(135deg, var(--blanco-perla), var(--beige-claro));
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(26, 26, 26, 0.4);
    transform: scale(0.8) rotateX(10deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(212, 196, 170, 0.3);
}

.reservation-modal-overlay.active .reservation-modal-container {
    transform: scale(1) rotateX(0);
}

.reservation-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--blanco-perla);
    border-radius: 50%;
    display: none !important; /* Hidden by default with !important */
    visibility: hidden; /* Double protection */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px var(--sombra-suave);
    border: 1px solid rgba(212, 196, 170, 0.2);
    pointer-events: none; /* Prevent interaction when hidden */
}

/* Only show when modal is active */
.reservation-modal-overlay.active .reservation-modal-close {
    display: flex !important;
    visibility: visible;
    pointer-events: auto;
}

.reservation-modal-close:hover {
    background: var(--marron-elegante);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px var(--sombra-media);
}

.reservation-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--marron-elegante);
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.reservation-modal-close:hover svg {
    stroke: var(--blanco-perla);
}

.reservation-modal-content {
    padding: 50px;
}

.reservation-header {
    text-align: center;
    margin-bottom: 45px;
}

.reservation-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: normal;
    color: var(--marron-elegante);
    margin-bottom: 15px;
}

.reservation-subtitle {
    color: var(--gris-elegante);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Formulario Elegante */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--marron-elegante);
    margin-bottom: 10px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(212, 196, 170, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--blanco-perla);
    font-family: 'Poppins', sans-serif;
    color: var(--marron-elegante);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dorado-sutil);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    background: var(--blanco-perla);
}

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

/* Botones del formulario */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 196, 170, 0.2);
}

.btn-cancel,
.btn-submit,
.btn-primary {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cancel {
    background: transparent;
    color: var(--gris-elegante);
    border: 1px solid rgba(212, 196, 170, 0.3);
}

.btn-cancel:hover {
    background: rgba(212, 196, 170, 0.1);
    border-color: var(--marron-elegante);
    color: var(--marron-elegante);
}

.btn-submit,
.btn-primary {
    background: linear-gradient(135deg, var(--marron-elegante), var(--marron-oscuro));
    color: var(--blanco-perla);
    min-width: 180px;
    box-shadow: 0 4px 15px var(--sombra-suave);
    position: relative;
    overflow: hidden;
}

.btn-submit::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--dorado-brillante), var(--dorado-sutil));
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-submit:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--sombra-media);
}

.btn-submit:hover::before,
.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit span,
.btn-primary span {
    position: relative;
    z-index: 1;
}

/* ===============================================
   MODAL DE PLATOS PREMIUM
   =============================================== */

.dish-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(107, 76, 59, 0.97) 0%,
        rgba(26, 26, 26, 0.97) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    overflow-y: auto;
}

.dish-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dish-modal-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    background: linear-gradient(145deg, var(--blanco-perla), var(--beige-claro));
    border-radius: 30px;
    border: 2px solid var(--dorado-sutil);
    box-shadow:
        0 50px 100px -20px rgba(107, 76, 59, 0.6),
        0 30px 60px -30px rgba(201, 169, 97, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: scale(0.7) translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

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

.dish-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
        rgba(201, 169, 97, 0.3) 0%,
        rgba(212, 196, 170, 0.4) 100%);
    border-radius: 50%;
    display: none !important;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(15px);
    border: 2px solid var(--dorado-sutil);
    box-shadow:
        0 8px 25px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

/* Only show when modal is active */
.dish-modal-overlay.active .dish-modal-close {
    display: flex !important;
    visibility: visible;
    pointer-events: auto;
}

/* Detail Modal Close Button */
.detail-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--blanco-perla);
    border-radius: 50%;
    display: none !important;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px var(--sombra-suave);
    border: 1px solid rgba(212, 196, 170, 0.2);
    pointer-events: none;
}

.detail-modal-overlay.active .detail-modal-close {
    display: flex !important;
    visibility: visible;
    pointer-events: auto;
}

.detail-modal-close:hover {
    background: var(--marron-elegante);
    transform: rotate(90deg) scale(1.1);
}

.detail-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--marron-elegante);
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.detail-modal-close:hover svg {
    stroke: var(--blanco-perla);
}

.dish-modal-close:hover {
    background: linear-gradient(135deg, var(--marron-elegante), var(--marron-oscuro));
    transform: rotate(90deg) scale(1.1);
    border-color: var(--marron-elegante);
    box-shadow:
        0 12px 35px rgba(107, 76, 59, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dish-modal-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--dorado-sutil);
    stroke-width: 3;
    transition: stroke 0.3s ease;
}

.dish-modal-close:hover svg {
    stroke: var(--dorado-brillante);
}

.dish-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.dish-modal-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--crema-premium), var(--beige-claro));
}

.dish-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dish-modal-container:hover .dish-modal-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(107, 76, 59, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.dish-modal-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--blanco-perla);
}

.dish-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 196, 170, 0.2);
}

.dish-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: normal;
    color: var(--marron-elegante);
    line-height: 1.2;
    flex: 1;
}

.dish-modal-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--dorado-sutil);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.2);
}

.dish-modal-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gris-elegante);
    line-height: 1.8;
}

.dish-modal-actions {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 196, 170, 0.2);
    margin-top: auto;
}

.modal-btn.elegant-close {
    background: linear-gradient(135deg, var(--dorado-sutil), var(--dorado-brillante));
    color: var(--marron-oscuro);
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 30px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.modal-btn.elegant-close:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--dorado-brillante), var(--dorado-sutil));
    box-shadow:
        0 15px 40px rgba(201, 169, 97, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.modal-btn {
    flex: 1;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-btn.secondary {
    background: transparent;
    color: var(--marron-elegante);
    border: 1px solid rgba(212, 196, 170, 0.3);
}

.modal-btn.secondary:hover {
    background: rgba(212, 196, 170, 0.1);
    border-color: var(--marron-elegante);
    transform: translateY(-2px);
}

.modal-btn.primary {
    background: linear-gradient(135deg, var(--marron-elegante), var(--marron-oscuro));
    color: var(--blanco-perla);
    box-shadow: 0 5px 20px var(--sombra-suave);
}

.modal-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--sombra-media);
    background: linear-gradient(135deg, var(--dorado-sutil), var(--dorado-brillante));
}

/* ===============================================
   MOBILE MENU PREMIUM
   =============================================== */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--marron-elegante);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===============================================
   BOTONES Y CONTROLES ELEGANTES
   =============================================== */

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(212, 196, 170, 0.3);
    color: var(--marron-elegante);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
}

.back-btn:hover {
    background: rgba(212, 196, 170, 0.1);
    border-color: var(--dorado-sutil);
    transform: translateX(-5px);
}

.back-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Controles de busqueda y filtros - Premium */
.menu-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(253, 251, 247, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(212, 196, 170, 0.2);
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid rgba(212, 196, 170, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: var(--blanco-perla);
    transition: all 0.3s ease;
    color: var(--marron-elegante);
}

.search-box input:focus {
    outline: none;
    border-color: var(--dorado-sutil);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: var(--gris-elegante);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid rgba(212, 196, 170, 0.4);
    border-radius: 6px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--marron-elegante);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--dorado-sutil);
}

.filter-btn.active {
    background: var(--marron-elegante);
    color: var(--blanco-perla);
    border-color: var(--marron-elegante);
}

/* ===============================================
   RESPONSIVE DESIGN LUXURY
   =============================================== */

@media (max-width: 1024px) {
    .header-container {
        padding: 18px 40px;
    }

    .navbar-logo {
        height: 110px;
    }

    header.scrolled .navbar-logo {
        height: 85px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        padding: 0 40px;
        gap: 25px;
    }

    .category-card {
        height: 280px;
    }

    .category-content {
        padding: 28px;
    }

    .category-name {
        font-size: 1.7rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--blanco-perla), var(--beige-claro));
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px var(--sombra-media);
    }

    nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-content {
        padding: 50px 30px;
        margin: 0 15px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .category-card {
        height: 260px;
    }

    .category-content {
        padding: 25px;
    }

    .category-name {
        font-size: 1.5rem;
    }

    .category-desc {
        font-size: 0.9rem;
    }

    .category-line {
        width: 40px;
        height: 2px;
    }

    .category-card:hover .category-line {
        width: 70px;
    }

    .menu-container {
        padding: 0 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .menu-item-image-wrapper {
        height: 200px;
    }

    .menu-item-name {
        font-size: 1.2rem;
    }

    .menu-item-content {
        padding: 24px 20px 20px;
    }

    .menu-controls {
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .reservation-modal-content {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .dish-modal-image {
        height: 250px;
    }

    .dish-modal-info {
        padding: 35px 25px;
    }
}

/* ===============================================
   ANIMACIONES FINALES
   =============================================== */

.fade-in {
    animation: elegantReveal 1s ease;
}

.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.menu-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.menu-item.hidden {
    display: none;
}

/* Print styles elegantes */
@media print {
    body {
        background: white;
    }

    header, .hero, .back-btn, .menu-controls {
        display: none;
    }

    .menu-section {
        display: block !important;
        padding: 20px;
    }

    .menu-item {
        page-break-inside: avoid;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }
}

/* ===============================================
   ESTILOS DEL MAPA INTERACTIVO
   =============================================== */

.map-container {
    margin-top: 80px;
    padding: 0 15px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

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

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--marron-elegante);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dorado-sutil), transparent);
}

.map-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--gris-elegante);
    margin-top: 20px;
}

.map-wrapper {
    position: relative;
    background: var(--beige-claro);
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 10px 40px var(--sombra-media),
        0 2px 10px var(--sombra-suave),
        inset 0 0 0 1px rgba(201, 169, 97, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 50px var(--sombra-intensa),
        0 5px 20px var(--sombra-media),
        inset 0 0 0 1px rgba(201, 169, 97, 0.2);
}

.map-frame {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--crema-premium), var(--dorado-brillante));
    padding: 3px;
}

.map-frame iframe {
    border-radius: 12px;
    width: 100%;
    height: 450px;
    filter: saturate(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-frame:hover iframe {
    filter: saturate(1) contrast(1);
}

/* Decoraciones elegantes en las esquinas */
.map-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--dorado-sutil);
    opacity: 0.3;
}

.map-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 15px;
}

.map-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 15px;
}

.map-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 15px;
}

.map-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 15px;
}

/* Animación de entrada para el mapa */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de pulso suave para las esquinas */
@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.map-wrapper:hover .map-corner {
    animation: cornerPulse 2s ease infinite;
}

/* Responsive para el mapa */
@media (max-width: 768px) {
    .map-container {
        margin-top: 50px;
    }

    .map-title {
        font-size: 2rem;
    }

    .map-wrapper {
        padding: 15px;
    }

    .map-frame iframe {
        height: 350px;
    }

    .map-corner {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .map-frame iframe {
        height: 300px;
    }
}