/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --gold-accent: #ffd700;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-dark: #2a2a2a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.7);
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   PATRÓN DE FONDO DECORATIVO
   ============================================ */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   NAVEGACIÓN SUPERIOR
   ============================================ */
.top-nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-darker);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 100;
    border-bottom: 1px solid var(--border-dark);
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-nav svg {
    width: 18px;
    height: 18px;
}

.btn-back:hover svg {
    transform: translateX(-2px);
}

.btn-home:hover svg {
    transform: scale(1.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 80px 40px 60px;
    text-align: center;
    background: var(--bg-darker);
    overflow: hidden;
    border-bottom: 2px solid var(--gold-primary);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 20 Q45 10 40 20 Q35 30 40 40 Q45 50 50 40 Q55 50 60 40 Q65 30 60 20 Q55 10 50 20" fill="rgba(212,175,55,0.02)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-decorative-line {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto 30px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title-carta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-secondary);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.title-vinos {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 12px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 30px;
    letter-spacing: 2px;
}

.hero-grape-illustration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 200px;
    color: var(--gold-primary);
    opacity: 0.1;
}

/* ============================================
   FILTROS
   ============================================ */
.filters-section {
    padding: 40px 40px 20px;
    background: transparent;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: var(--bg-darker);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.filter-btn.active {
    background: var(--gold-primary);
    color: var(--bg-darker);
    border-color: var(--gold-primary);
}

/* ============================================
   GRID DE PRODUCTOS
   ============================================ */
.products-main {
    padding: 40px 40px 80px;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.producto-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-dark);
    cursor: pointer;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: var(--gold-primary);
}

.producto-imagen-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.producto-imagen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.producto-card:hover .producto-imagen {
    transform: scale(1.05);
}

.badge-agotado {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c62828;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.producto-contenido {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    background: var(--bg-card);
}

.producto-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gold-primary);
    line-height: 1.3;
    margin-bottom: 5px;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 15px;
}

.producto-descripcion {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
    flex: 1;
}

.producto-precio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    margin: 10px 0;
}

.btn-whatsapp {
    width: 100%;
    padding: 16px;
    background: #25D366;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover:not(.disabled) {
    background: #1ea952;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp.disabled {
    background: #555555;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.wine-footer {
    position: relative;
    padding: 40px 20px;
    background: var(--bg-darker);
    text-align: center;
    overflow: hidden;
    border-top: 2px solid var(--gold-primary);
}

.footer-vine-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold-primary) 50%,
            transparent 100%);
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ============================================
   MODAL DE PRODUCTO
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-darker);
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image-container {
    background: var(--bg-darker);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-dark);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.modal-info {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.modal-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.2;
    border-bottom: 2px solid var(--border-dark);
    padding-bottom: 20px;
}

.modal-descripcion {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.modal-precio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    margin: 20px 0;
}

.btn-whatsapp-modal {
    width: 100%;
    padding: 18px;
    background: #25D366;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp-modal:hover {
    background: #1ea952;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   MODAL DE PRODUCTO
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 8px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-dark);
    z-index: 1001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-darker);
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 1002;
}

.modal-close:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-image-container {
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid var(--border-dark);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.modal-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--bg-card);
}

.modal-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.2;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-dark);
}

.modal-descripcion {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.modal-precio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 15px 0;
    text-align: center;
}

.btn-whatsapp-modal {
    width: 100%;
    padding: 18px;
    background: #25D366;
    border: none;
    border-radius: 4px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.btn-whatsapp-modal:hover {
    background: #1ea952;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Tablets */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .title-vinos {
        font-size: 4rem;
    }

    .hero-grape-illustration {
        display: none;
    }

    .modal-content {
        margin: 30px 20px;
    }

    .modal-image-container {
        padding: 50px 30px;
    }

    .modal-info {
        padding: 50px 30px;
    }

    .modal-nombre {
        font-size: 2.2rem;
    }

    .modal-precio {
        font-size: 3rem;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .top-nav {
        padding: 15px 20px;
        /* FIX: flex-wrap prevents navbar items from overflowing */
        flex-wrap: wrap;
        gap: 10px;
    }

    /* FIX: hide reservar when space is tight */
    .nav-reservar {
        display: none;
    }

    .btn-nav {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 60px 30px 50px;
    }

    .title-carta {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .title-vinos {
        font-size: 3rem;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .filters-container {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .products-main {
        padding: 30px 20px 60px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .producto-nombre {
        font-size: 1.5rem;
    }

    .producto-descripcion {
        font-size: 0.9rem;
    }

    .producto-precio {
        font-size: 2.2rem;
    }

    /* Modal responsive para tablets */
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-container {
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
        padding: 30px;
    }

    .modal-image {
        max-height: 400px;
    }

    .modal-info {
        padding: 40px 30px;
    }

    .modal-nombre {
        font-size: 2rem;
    }

    .modal-descripcion {
        font-size: 0.95rem;
    }

    .modal-precio {
        font-size: 2.5rem;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .top-nav {
        padding: 12px 15px;
        justify-content: center;
    }

    .btn-nav {
        flex: 1;
        padding: 8px 15px;
        font-size: 0.8rem;
        min-width: 100px;
    }

    .btn-nav span {
        display: none;
    }

    .hero-section {
        padding: 50px 20px 40px;
    }

    .title-carta {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .title-vinos {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .hero-decorative-line {
        width: 100px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .filters-section {
        padding: 30px 15px 15px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .products-main {
        padding: 25px 15px 50px;
    }

    .products-grid {
        gap: 20px;
    }

    .producto-card {
        border-radius: 15px;
    }

    .producto-imagen-wrapper {
        height: 250px;
        padding: 15px;
    }

    .producto-contenido {
        padding: 25px 20px;
    }

    .producto-nombre {
        font-size: 1.4rem;
        padding-bottom: 12px;
    }

    .producto-descripcion {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .producto-precio {
        font-size: 2rem;
    }

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

    .badge-agotado {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    /* Modal responsive para móviles */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 4px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .modal-image-container {
        padding: 20px;
    }

    .modal-image {
        max-height: 300px;
    }

    .modal-info {
        padding: 30px 20px;
        gap: 20px;
    }

    .modal-nombre {
        font-size: 1.6rem;
        padding-bottom: 15px;
    }

    .modal-descripcion {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .modal-precio {
        font-size: 2rem;
        margin: 10px 0;
    }

    .btn-whatsapp-modal {
        padding: 16px;
        font-size: 1rem;
    }
}

/* ── 360px: small phones ── */
@media (max-width: 360px) {
    .top-nav {
        padding: 10px 12px;
    }

    .btn-nav {
        padding: 7px 10px;
        font-size: 0.75rem;
        min-height: 44px;
    }

    .hero-section {
        padding: 40px 16px 36px;
    }

    .title-carta {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .title-vinos {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 0.82rem;
    }

    .products-main {
        padding: 20px 12px 40px;
    }

    .producto-contenido {
        padding: 18px 14px;
    }

    .producto-nombre {
        font-size: 1.2rem;
    }

    .producto-precio {
        font-size: 1.8rem;
    }

    /* FIX: WhatsApp button 44px min-height for accessibility */
    .btn-whatsapp {
        padding: 12px;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .modal-image {
        max-height: 220px;
    }

    .modal-nombre {
        font-size: 1.4rem;
    }

    .modal-precio {
        font-size: 1.8rem;
    }

    .btn-whatsapp-modal {
        padding: 14px;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* ============================================
   NAV RIGHT GROUP
   ============================================ */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-reservar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    color: var(--bg-darker);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-reservar:hover {
    background: var(--gold-secondary);
    border-color: var(--gold-secondary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    background: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.lang-current:hover,
.lang-switcher.open .lang-current {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-code {
    font-size: 0.7rem;
}

.lang-arrow {
    font-size: 0.95rem !important;
    transition: transform 0.25s ease;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 12, 3, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 150, 42, 0.25);
    border-radius: 12px;
    padding: 6px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.18s ease;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-option.active {
    background: rgba(200, 150, 42, 0.15);
    color: #e8b84b;
}

/* Responsive adjustments for nav-right-group */
@media (max-width: 768px) {
    .nav-right-group {
        gap: 8px;
    }

    .nav-reservar {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-reservar span {
        display: none;
    }

    .nav-reservar {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}