    /* --- VARIABLES DE COLOR DE MARCA --- */
:root {
    --brand-color: #7B2D8B;       /* Color principal */
    --brand-dark: #5a1f6b;        /* Versión más oscura para gradientes/hover */
    --brand-light: #c084d4;       /* Versión clara para gradientes de mapa */
    --brand-bg-light: rgba(123, 45, 139, 0.1); /* Fondo muy claro */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: #ffffff;
    color: #1e293b;
    font-family: 'DM Sans', 'Inter', sans-serif;
    overflow-x: hidden;
}

/* FONDO PREMIUM — eliminado, fondo blanco en todos los breakpoints */
.premium-background {
    display: none;
}

/* --- ESTILOS BUSCADOR --- */
.search-form {
    position: relative;
    width: 100%;
    max-width: 400px;
}

/* Buscador en el hero — ocupa todo el ancho disponible */
.search-form.hero-search {
    max-width: 100%;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 10px 20px 10px 45px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #1f2937;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    background: #ffffff;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(123, 45, 139, 0.15);
}

.search-icon {
    z-index: 999;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    /* CAMBIO: Color de marca */
    color: var(--brand-color);
    pointer-events: none;
}

/* navbar-search eliminado del header — buscador ahora vive en el hero */

/* NAVBAR DESKTOP */
.navbar-desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 10000;
    background: #050505;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 18px rgba(0,0,0,0.24);
}
.navbar-desktop-inner {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 66px;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 32px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-login-link {
    opacity: 0.92;
}

.nav-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    color: rgba(255,255,255,0.9);
    font-size: 26px;
    text-decoration: none;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-login-icon:hover {
    color: #ffffff;
    background: rgba(123,45,139,0.22);
}

.nav-signup-btn {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(255,255,255,0.09);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.nav-signup-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.32);
    color: #fff;
}

/* Sobreescribir btn-glass dentro del navbar */
.navbar-desktop .btn-glass {
    padding: 8px 18px;
    min-width: auto;
    flex: none;
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    box-shadow: none;
}

.navbar-desktop .btn-glass:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.14);
}

.nav-links a {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-color);
}

.locale-switch,
.floating-locale-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.floating-locale-switch {
    position: fixed;
    top: 84px;
    right: 24px;
    /* En desktop se oculta: los flags ya están dentro del navbar */
    display: none;
    z-index: 1100;
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.floating-locale-switch .locale-link {
    color: rgba(255, 255, 255, 0.88);
}

.floating-locale-switch .locale-link:hover {
    color: #ffffff;
}

.floating-locale-switch .locale-link.active {
    background: #ffffff;
    color: #5a1f6b;
}

.locale-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.locale-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.locale-link.active {
    background: #ffffff;
    color: #5a1f6b;
}

/* ── FLOATING PILL NAV — hidden on mobile, shown on desktop ── */
.pill-nav {
    display: none;
}

@media (min-width: 769px) {
    .pill-nav {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        transform: none;
        z-index: 9990;
        display: block;
        padding: 0;
        background: #7B2D8B;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 6px 18px rgba(90,31,107,0.30);
        white-space: nowrap;
    }

    .pill-nav-inner {
        max-width: 1440px;
        margin: 0 auto;
        min-height: 46px;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .pill-nav-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 0;
        border-radius: 0;
        color: rgba(255,255,255,0.84);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.01em;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        transition: color 0.18s, border-color 0.18s;
    }

    .pill-nav-link:hover {
        color: #ffffff;
        background: none;
        transform: none;
        border-bottom-color: rgba(192,132,212,0.55);
    }

    .pill-nav-link.active {
        color: #ffffff;
        background: none;
        border-bottom-color: #c084d4;
    }

    .pill-nav-link i {
        font-size: 16px;
        opacity: 0.95;
    }
}

/* DESKTOP LAYOUT — página normal con scroll */
.desktop-container {
    display: block;
    padding-top: 70px; /* compensa navbar fija */
}

@media (min-width: 769px) {
    .desktop-container {
        padding-top: 126px;
    }
}

/* Contenedor centrado para todas las secciones desktop */
.desktop-wrapper {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 40px;
}

/* Hero desktop — dos columnas */
.hero-desktop {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: center;
    padding: 72px 0 56px;
}

.hero-left {
    /* columna izquierda: todo el contenido textual */
}

.hero-desktop .badge {
    margin-bottom: 20px;
}

.hero-desktop .main-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    margin-bottom: 20px;
}

.hero-desktop .description {
    font-size: 17px;
    margin-bottom: 10px;
}

.hero-desktop .description-sub {
    margin-bottom: 28px;
}

.hero-desktop .search-form {
    max-width: 500px;
    margin-bottom: 28px;
}

/* Columna derecha del hero — panel de estadísticas */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats-panel {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ede8f2;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 12px 40px rgba(123, 45, 139, 0.10), 0 2px 8px rgba(0,0,0,0.04);
}

.hero-stat-item {
    text-align: center;
    padding: 24px 32px;
}

.hero-stat-item:not(:last-child) {
    border-bottom: 1px solid #f3eef8;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-color);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.hero-stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Sections en desktop */
.desktop-container .home-section {
    padding: 40px 0 0;
    background: #ffffff;
}

.desktop-container .home-section-header {
    padding: 0;
    margin-bottom: 20px;
    align-items: flex-end;
}

.desktop-container .home-section-title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #0f172a;
}

.desktop-container .home-section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border: 1.5px solid var(--brand-color);
    border-radius: 8px;
    color: var(--brand-color);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.desktop-container .home-section-link:hover {
    background: var(--brand-color);
    color: #ffffff;
    text-decoration: none;
}

.desktop-container .hscroll-row {
    padding: 4px 0 20px;
    gap: 16px;
}

/* Cards desktop — uniformes: 220px ancho, 160px imagen */
.desktop-container .card-region-h  { width: 180px; border-radius: 8px; }
.desktop-container .card-region-h-img { height: 250px; }
.desktop-container .card-region-h-img span { font-size: 14px; font-weight: 700; }
.desktop-container .card-region-h-name { font-size: 14px; font-weight: 500; }
.desktop-container .card-region-h-count { font-size: 12px; }

.desktop-container .card-ruta-h    { width: 220px; border-radius: 8px; }
.desktop-container .card-ruta-h-img { height: 160px; }
.desktop-container .card-ruta-h-name { font-size: 14px; font-weight: 500; }
.desktop-container .card-ruta-h-meta { font-size: 12px; }
.desktop-container .card-ruta-h-badge { font-size: 11px; font-weight: 600; }

.desktop-container .card-poi-h     { width: 220px; border-radius: 8px; }
.desktop-container .card-poi-h-img { height: 160px; }
.desktop-container .card-poi-h-name { font-size: 14px; }
.desktop-container .card-poi-h-type { font-size: 11px; font-weight: 600; }
.desktop-container .card-poi-h-region { font-size: 12px; }

.desktop-container .card-vino-h    { width: 170px; border-radius: 8px; }
.desktop-container .card-vino-h-img { height: 210px; padding: 14px 12px 8px; }
.desktop-container .card-vino-h-name { font-size: 14px; font-weight: 500; }
.desktop-container .card-vino-h-tipo { font-size: 11px; }
.desktop-container .card-vino-h-winery { font-size: 12px; }

.desktop-container .section-divider {
    margin-top: 0;
    height: 1px;
    background: #f0ece8;
}

/* Footer — visible solo en desktop */
.content-side {
    display: none; /* clase legacy, no se usa */
}
.map-side {
    display: none; /* clase legacy, no se usa */
}

/* MOBILE APP LAYOUT */
.mobile-container {
    display: none;
}

.mobile-map-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

#mobile-map {
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    touch-action: none;
}

/* MOBILE TOP BAR */
.mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #000000; /* Fondo negro sólido */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 10000;
}

.mobile-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-topbar a[href*="iniciar"] {
    color: #cbd5e1 !important;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-logo img {
    /* CAMBIO: Quitamos filtro */
    /* filter: brightness(0); */
}

/* MOBILE SCROLL CONTENT — contenedor simple entre topbar y bottom-nav */
.bottom-sheet {
    position: fixed;
    top: 60px;
    bottom: 62px;
    left: 0;
    right: 0;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 90;
}

/* handle eliminado — ya no hay mapa */
.sheet-handle-area {
    display: none;
}

.sheet-handle {
    display: none;
}

.sheet-preview {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 8px 0;
}
.sheet-preview {
    display: none;
}

.preview-stat {
    text-align: center;
}

.preview-number {
    font-size: 28px;
    font-weight: 800;
    /* CAMBIO: Gradiente de marca */
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preview-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.sheet-content {
    padding: 0;
}

/* BADGE */
.badge {
    display: inline-block;
    background: var(--brand-bg-light);
    color: var(--brand-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(123, 45, 139, 0.2);
}

/* TÍTULOS */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0f172a;
}

.title-highlight {
    /* CAMBIO: Color de marca */
    color: var(--brand-color);
    font-style: italic;
    display: block;
}

.description {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.description-sub {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* BOTONES */
.btn-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Mantenemos la clase btn-gold pero cambiamos sus estilos al nuevo color */
.btn-gold {
    /* CAMBIO: Gradiente de marca */
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* CAMBIO: Sombra de marca */
    box-shadow: 0 10px 20px rgba(123, 45, 139, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 160px;
}

.btn-gold:active {
    transform: scale(0.97);
}

.btn-glass {
    /*background: #fff;*/
    color: #334155;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 160px;
}

.btn-glass:hover {
    background: #f8fafc;
    /* CAMBIO: Borde y texto de marca al hover */
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.btn-glass:active {
    transform: scale(0.97);
}

/* Vionda — botón principal, fila completa */
.btn-vionda {
    flex-basis: 100%;
    font-size: 16px;
}

/* Botón oscuro — High Contrast style */
.btn-dark {
    background: #000000;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #000000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.btn-dark:hover {
    background: #8B3DA0;
    border-color: #8B3DA0;
    box-shadow: 0 6px 20px rgba(153, 68, 135, 0.35);
    color: #ffffff;
}

.btn-dark:active {
    transform: scale(0.97);
    background: #6a2d80;
    border-color: #6a2d80;
}

/* DESKTOP MAP */
.map-wrapper-desktop {
    position: relative;
    width: 100%;
    height: calc(100vh - 150px);
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

#desktop-map {
    width: 100%;
    height: 100%;
}

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    /* CAMBIO: Resplandor de marca */
    background: radial-gradient(circle, rgba(123, 45, 139, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* STATS DESKTOP */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.stats-grid {
    display: none;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    /* CAMBIO: Gradiente de marca */
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* VINÍCOLAS SECTION */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 24px;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    /* CAMBIO: Subrayado de marca */
    background: var(--brand-color);
}

.grid-vinicolas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.vinicola-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.vinicola-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vinicola-card:active {
    transform: scale(0.98);
}

.card-image {
    position: relative;
    height: 140px;
    background: #f1f5f9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.card-image-placeholder i {
    /* CAMBIO: Icono placeholder tintado */
    color: rgba(123, 45, 139, 0.3);
    font-size: 3rem;
}

.card-content {
    padding: 16px;
}

.card-region {
    /* CAMBIO: Color de marca */
    color: var(--brand-color);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-name {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar-desktop,
    .desktop-container {
        display: none !important;
    }

    .floating-locale-switch {
        display: flex; /* restaurar en móvil */
        top: auto;
        right: 16px;
        bottom: 18px;
        background: rgba(15, 23, 42, 0.78);
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
    }

    .mobile-container {
        display: block;
    }
    .btn-container {
        flex-direction: column;
    }
    .btn-gold, .btn-glass {
        width: 100%;
    }
    .grid-vinicolas {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-container {
        display: none !important;
    }
}

/* SCROLL BEHAVIOR */
.sheet-content::-webkit-scrollbar {
    width: 0px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ═══════════════════════════════════════════════════════════
   MAP INTERACTIVE HINTS & BORDER EFFECTS
   ═══════════════════════════════════════════════════════════ */


/* ── Touch Hint — overlay sobre el mapa ───────────────────── */
.map-touch-hint {
    position: absolute;
    left: 50%;
    top:  50%;
    z-index: 20;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    animation: hintAppear 0.6s ease 1.2s both;
}

@keyframes hintAppear {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.75); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1);    }
}

.map-touch-hint.dismissed {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

/* Anillos de ripple concéntricos */
.hint-rings {
    position: absolute;
    top: 19px; left: 19px; /* centrado sobre el icono 38px */
    pointer-events: none;
}

.hint-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(123, 45, 139, 0.55);
    animation: ringExpand 2.2s ease-out infinite;
    transform: translate(-50%, -50%);
}
.hint-ring:nth-child(1) { animation-delay: 0s;    }
.hint-ring:nth-child(2) { animation-delay: 0.65s; }
.hint-ring:nth-child(3) { animation-delay: 1.3s;  }

@keyframes ringExpand {
    0%   { width: 18px; height: 18px; opacity: 0.85; border-color: rgba(123,45,139,0.55); }
    100% { width: 72px; height: 72px; opacity: 0;    border-color: rgba(123,45,139,0);    }
}

/* Icono circular (dedo toque) */
.hint-icon {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 3px 14px rgba(123, 45, 139, 0.35),
        0 0 0 3px rgba(123, 45, 139, 0.12);
    animation: iconTap 2.4s ease-in-out infinite;
}

.hint-icon i {
    color: var(--brand-color);
    font-size: 15px;
}

@keyframes iconTap {
    0%, 100% { transform: translateY(0)   scale(1);    box-shadow: 0 3px 14px rgba(123,45,139,0.35), 0 0 0 3px rgba(123,45,139,0.12); }
    38%       { transform: translateY(5px) scale(0.90); box-shadow: 0 1px  6px rgba(123,45,139,0.45), 0 0 0 6px rgba(123,45,139,0.18); }
    58%       { transform: translateY(0)   scale(1);    }
}

/* Etiqueta "Toca una región" */
.hint-label {
    margin-top: 9px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(123, 45, 139, 0.75);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    padding: 3px 9px;
    border-radius: 8px;
    border: 1px solid rgba(123, 45, 139, 0.15);
}

/* En mobile el hint también queda centrado */
#mobileMapTouchHint {
    left: 50%;
    top:  50%;
}

/* WebKit Scrollbars (Light Mode) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 8px; }
/* CAMBIO: Hover del scrollbar con color de marca */
::-webkit-scrollbar-thumb:hover { background: var(--brand-color); }
    /* bottom-sheet ya usa top/bottom fixed, no necesita overrides */


/* ════════════════════════════════════════════════════════════════
   VIONDA CHATBOT MODAL
   ════════════════════════════════════════════════════════════════ */

.vionda-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 20, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vionda-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.vionda-chat {
    width: 100%;
    max-width: 500px;
    height: 88vh;
    max-height: 720px;
    background: #ffffff;
    border-radius: 18px 18px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(110%);
    transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
    box-shadow: 0 -24px 80px rgba(123, 45, 139, 0.18), 0 -4px 20px rgba(0,0,0,0.15);
}

.vionda-overlay.open .vionda-chat {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .vionda-overlay {
        align-items: center;
        padding: 20px;
    }
    .vionda-chat {
        border-radius: 18px;
        height: 78vh;
    }
}

/* ── Header ─────────────────────────────────────────────────────── */
.vionda-header {
    background: linear-gradient(135deg, #7B2D8B 0%, #5a1f6b 100%);
    padding: 18px 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
}

.vionda-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

.vionda-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.25);
}

.vionda-avatar-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    animation: vionda-pulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vionda-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(1.15); opacity: 0.2; }
}

.vionda-header-info { flex: 1; min-width: 0; }

.vionda-name {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.vionda-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-top: 2px;
}

.vionda-status-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ade80;
    animation: vionda-blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes vionda-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

.vionda-close {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.vionda-close:hover {
    background: rgba(255,255,255,0.22);
    transform: scale(1.05);
}

/* ── Messages ────────────────────────────────────────────────────── */
.vionda-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f8f5fc;
    scroll-behavior: smooth;
}

.vionda-messages::-webkit-scrollbar { width: 4px; }
.vionda-messages::-webkit-scrollbar-track { background: transparent; }
.vionda-messages::-webkit-scrollbar-thumb { background: #c49ad6; border-radius: 2px; }

.vionda-msg {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    animation: vionda-msg-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes vionda-msg-in {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.vionda-msg.user { flex-direction: row-reverse; }

.vionda-msg-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7B2D8B, #5a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(123, 45, 139, 0.3);
}

.vionda-msg-bubble {
    max-width: 78%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.55;
    color: #1e293b;
    word-break: break-word;
}

.vionda-msg.bot .vionda-msg-bubble {
    background: #ffffff;
    border-bottom-left-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.vionda-msg.user .vionda-msg-bubble {
    background: linear-gradient(135deg, #7B2D8B 0%, #5a1f6b 100%);
    color: #fff;
    border-bottom-right-radius: 6px;
    box-shadow: 0 4px 14px rgba(123, 45, 139, 0.35);
}

/* ── Typing indicator ───────────────────────────────────────────── */
.vionda-typing {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    animation: vionda-msg-in 0.32s ease;
}

.vionda-typing-bubble {
    background: #ffffff;
    border-radius: 8px;
    border-bottom-left-radius: 6px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    gap: 5px;
    align-items: center;
}

.vionda-typing-dot {
    width: 7px;
    height: 7px;
    background: #7B2D8B;
    border-radius: 50%;
    animation: vionda-bounce 1.3s ease-in-out infinite;
}
.vionda-typing-dot:nth-child(2) { animation-delay: 0.18s; }
.vionda-typing-dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes vionda-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
    40%            { transform: translateY(-9px); opacity: 1; }
}

/* ── Suggestion chips ───────────────────────────────────────────── */
.vionda-suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 16px 12px;
    background: #fff;
    border-top: 1px solid #f0e8f5;
    flex-shrink: 0;
}

.vionda-chip {
    background: #fdf0fb;
    border: 1.5px solid #e8b6dc;
    color: #7B2D8B;
    font-size: 12px;
    padding: 7px 13px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'DM Sans', 'Inter', sans-serif;
    white-space: nowrap;
    line-height: 1;
}

.vionda-chip:hover {
    background: #7B2D8B;
    color: #fff;
    border-color: #7B2D8B;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(123, 45, 139, 0.3);
}

.vionda-chip:active { transform: translateY(0); }

/* ── Input area ─────────────────────────────────────────────────── */
.vionda-input-area {
    padding: 12px 14px 18px;
    background: #fff;
    border-top: 1px solid #ede8f5;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-shrink: 0;
}

.vionda-input {
    flex: 1;
    border: 1.5px solid #e2d8f0;
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 14px;
    font-family: 'DM Sans', 'Inter', sans-serif;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #faf8fd;
    resize: none;
    max-height: 110px;
    overflow-y: hidden;
    line-height: 1.5;
}

.vionda-input:focus {
    border-color: #7B2D8B;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(123, 45, 139, 0.12);
}

.vionda-input::placeholder { color: #a0a0b0; }

.vionda-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7B2D8B 0%, #5a1f6b 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.2s;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(123, 45, 139, 0.4);
}

.vionda-send:hover  { transform: scale(1.07); box-shadow: 0 6px 18px rgba(123, 45, 139, 0.5); }
.vionda-send:active { transform: scale(0.93); }
.vionda-send:disabled { opacity: 0.45; cursor: default; transform: none; box-shadow: none; }

/* ════════════════════════════════════════════════════════════════
   NUEVO DISEÑO MÓVIL — Secciones horizontales + Bottom Nav
   ════════════════════════════════════════════════════════════════ */

/* ── Hero simplificado (mobile) ─────────────────────────────── */
.hero-section {
    padding: 18px 20px 0;
    background: #ffffff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-color);
    background: rgba(123, 45, 139, 0.07);
    padding: 3px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(123, 45, 139, 0.18);
}

.hero-title-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 6.2vw;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
    white-space: nowrap;
}

.hero-title-mobile em {
    color: var(--brand-color);
    font-style: italic;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(123, 45, 139, 0.25);
    border-radius: 10px;
    padding: 0 14px;
    height: 42px;
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 0;
}

.hero-search-bar svg {
    width: 15px;
    height: 15px;
    color: var(--brand-color);
    flex-shrink: 0;
}

/* ── Section divider ────────────────────────────────────────── */
.section-divider {
    height: 8px;
    background: #ede8f2;
    margin-top: 16px;
}

/* ── Home section wrapper ───────────────────────────────────── */
.home-section {
    padding: 16px 0 0;
    background: #ffffff;
}

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 10px;
}

.home-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.home-section-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-color);
    text-decoration: none;
}

.home-section-link:hover {
    text-decoration: underline;
}

/* ── Horizontal scroll row ──────────────────────────────────── */
.hscroll-row {
    display: flex;
    gap: 10px;
    padding: 2px 0 12px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.hscroll-row::-webkit-scrollbar {
    display: none;
}

/* Espacio al final del scroll (el padding-right se pierde en flex overflow) */
.hscroll-row::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
}

/* ════════════════════════════════════════════════════════════
   CARDS HORIZONTALES — tamaño uniforme mobile: 150px × 100px img
   ════════════════════════════════════════════════════════════ */

/* ── Region cards ───────────────────────────────────────────── */
.card-region-h {
    flex-shrink: 0;
    width: 130px;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid #e8e4e0;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-region-h:hover,
.card-region-h:active {
    transform: scale(0.97);
    text-decoration: none;
    color: inherit;
}

.card-region-h-img {
    height: 185px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #8b6347 0%, #4a2d18 100%);
    background-size: cover;
    background-position: center top;
}


.card-region-h-body {
    padding: 8px 10px 9px;
}

.card-region-h-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-region-h-count {
    font-size: 13px;
    color: #444;
    margin-top: 2px;
}

/* ── Ruta cards ─────────────────────────────────────────────── */
.card-ruta-h {
    flex-shrink: 0;
    width: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid #e8e4e0;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease;
}

.card-ruta-h:hover,
.card-ruta-h:active {
    transform: scale(0.97);
    text-decoration: none;
    color: inherit;
}

.card-ruta-h-img {
    height: 120px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    background: linear-gradient(150deg, #7b4f2e, #3a2010);
}

.card-ruta-h-badge {
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,.92);
    color: var(--brand-color);
    padding: 3px 8px;
    border-radius: 4px;
}

.card-ruta-h-body {
    padding: 8px 10px 9px;
}

.card-ruta-h-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-ruta-h-meta {
    font-size: 13px;
    color: #444;
}

/* ── POI cards ──────────────────────────────────────────────── */
.card-poi-h {
    flex-shrink: 0;
    width: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid #e8e4e0;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease;
}

.card-poi-h:hover,
.card-poi-h:active {
    transform: scale(0.97);
    text-decoration: none;
    color: inherit;
}

.card-poi-h-img {
    height: 120px;
    background: #c4b8d8;
    overflow: hidden;
}

.card-poi-h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-poi-h-body {
    padding: 8px 10px 9px;
}

.card-poi-h-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--brand-color);
}

.card-poi-h-name {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-poi-h-region {
    font-size: 13px;
    color: #444;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Vino cards (portrait — botella vertical) ───────────────── */
.card-vino-h {
    flex-shrink: 0;
    width: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid #e8e4e0;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease;
}

.card-vino-h:hover,
.card-vino-h:active {
    transform: scale(0.97);
    text-decoration: none;
    color: inherit;
}

.card-vino-h-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    padding: 10px 8px 6px;
}

.card-vino-h-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-vino-h-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #e8d8f0 0%, #c8a8dc 100%);
}

.card-vino-h-placeholder i {
    font-size: 2rem;
    color: rgba(123, 45, 139, 0.4);
}

.card-vino-h-body {
    padding: 7px 9px 9px;
}

.card-vino-h-tipo {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.card-vino-h-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    margin-top: 1px;
}

.card-vino-h-winery {
    font-size: 13px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* ── Vinícola cards ─────────────────────────────────────────── */
.card-vinicola-h {
    flex-shrink: 0;
    width: 150px; /* mismo ancho base que las demás */
    border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid #e8e4e0;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-vinicola-h:hover,
.card-vinicola-h:active {
    transform: scale(0.97);
    text-decoration: none;
    color: inherit;
}

.card-vinicola-h-cover {
    height: 120px;
    position: relative;
    background: linear-gradient(160deg, #2d1b4e 0%, #1a0f2e 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 6px;
}

.card-vinicola-h-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 8px;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.92);
    color: #5a3800;
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.card-vinicola-h-badge--vionda {
    background: rgba(109, 40, 217, 0.9);
    color: #fff;
    text-shadow: none;
}

.card-vinicola-h-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-vinicola-h-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-vinicola-h-body {
    padding: 7px 9px 8px;
}

.card-vinicola-h-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.card-vinicola-h-valle {
    font-size: 13px;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-vinicola-h-region {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

/* ── Tipo de vino cards ──────────────────────────────────────── */
.card-tipo-h {
    flex-shrink: 0;
    width: 130px;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease;
}

.card-tipo-h:hover,
.card-tipo-h:active {
    transform: scale(0.97);
    text-decoration: none;
    color: inherit;
}

.card-tipo-h-img {
    height: 130px;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
}

.card-tipo-h-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-tipo-h-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.card-tipo-h-body {
    padding: 8px 10px 9px;
}

.card-tipo-h-nombre {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.card-tipo-h-dot {
    height: 4px;
    width: 100%;
    flex-shrink: 0;
}

/* ── Marca cards ─────────────────────────────────────────────── */
.card-marca-h {
    flex-shrink: 0;
    width: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ede8f2;
    background: #fff;
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-marca-h:hover,
.card-marca-h:active {
    transform: scale(0.97);
    box-shadow: 0 4px 16px rgba(123,45,139,0.12);
    text-decoration: none;
    color: inherit;
}

.card-marca-h-logo {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f3fc;
    padding: 14px;
}

.card-marca-h-logo img {
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.card-marca-h-initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2D8B 0%, #a855f7 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-marca-h-body {
    padding: 8px 10px 10px;
    border-top: 1px solid #f0ebf7;
}

.card-marca-h-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-marca-h-count {
    font-size: 11px;
    color: #7B2D8B;
    font-weight: 600;
    margin-top: 2px;
}

/* Desktop overrides para nuevas cards — mismo estándar 220px */
.desktop-container .card-vinicola-h { width: 220px; border-radius: 8px; }
.desktop-container .card-vinicola-h-cover { height: 160px; }
.desktop-container .card-vinicola-h-logo { width: 48px; height: 48px; }
.desktop-container .card-vinicola-h-name { font-size: 14px; font-weight: 500; }
.desktop-container .card-vinicola-h-valle { font-size: 12px; }

.desktop-container .card-tipo-h { width: 180px; border-radius: 8px; }
.desktop-container .card-tipo-h-img { height: 180px; }
.desktop-container .card-tipo-h-nombre { font-size: 14px; }

.desktop-container .card-marca-h { width: 160px; border-radius: 10px; }
.desktop-container .card-marca-h-logo { height: 120px; }
.desktop-container .card-marca-h-name { font-size: 14px; }

/* ── Bottom Navigation (mobile only) ───────────────────────── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: #ffffff;
    border-top: 0.5px solid #e8e4e0;
    display: none;
    align-items: stretch;
    z-index: 200;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

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

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 0;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    text-decoration: none;
    color: #bbb;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item i {
    font-size: 18px;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

    .bottom-nav-item.active {
        color: var(--brand-color);
    }

    .bottom-nav-item.active span {
        font-weight: 500;
    }

    @media (hover: hover) {
        .bottom-nav-item:hover {
            color: var(--brand-color);
        }

        .bottom-nav-item:hover span {
            font-weight: 500;
        }
}

/* Vionda center button — special style */
.bottom-nav-item.vionda-btn {
    position: relative;
}

.bottom-nav-item.vionda-btn .vionda-fab {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -16px;
    box-shadow: 0 4px 16px rgba(123, 45, 139, 0.45);
    color: #fff;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bottom-nav-item.vionda-btn:hover .vionda-fab,
.bottom-nav-item.vionda-btn:active .vionda-fab {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(123, 45, 139, 0.55);
    color: #fff;
}

.bottom-nav-item.vionda-btn span {
    color: var(--brand-color);
    font-weight: 500;
}

/* Floating locale switch — ocultar en mobile (ahora va en el topbar) */
@media (max-width: 768px) {
    .floating-locale-switch {
        display: none !important;
    }
}

/* ── Locale switch con banderitas en topbar/navbar ─────────────── */
.nav-locale-flags {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.nav-locale-flags a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.nav-locale-flags a.active {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.nav-locale-flags a:hover:not(.active) {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

/* ════════════════════════════════════════════════════════════════
   SITE FOOTER — copiado de vinicola/index.css para unificar
   ════════════════════════════════════════════════════════════════ */

.site-footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 52px 24px 48px;
    margin-top: 40px;
    display: none; /* oculto en mobile */
}

@media (min-width: 769px) {
    .site-footer {
        display: block;
    }
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.footer-block {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-home-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--brand-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 132, 212, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    width: fit-content;
}

.footer-home-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-block-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.footer-social-btn:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
    transform: translateY(-2px);
}

.footer-support-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.83rem;
    line-height: 1.5;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.footer-support-btn:hover {
    background: rgba(123, 45, 139, 0.22);
    border-color: rgba(123, 45, 139, 0.5);
    color: #fff;
}

.footer-support-btn > i {
    font-size: 1.15rem;
    color: var(--brand-light);
    flex-shrink: 0;
    transition: color 0.25s;
}

.footer-support-btn:hover > i { color: #fff; }

.footer-support-btn strong {
    color: #fff;
    font-weight: 700;
}

.footer-copyright {
    max-width: 1200px;
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    letter-spacing: 0.4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH OMNIBAR v2  (prefijo: som-)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Trigger button (hero desktop) ─────────────────────────────────────── */
.search-trigger-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    padding: 13px 20px 13px 18px;
    border-radius: 50px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    color: #9ca3af;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.search-trigger-btn:hover {
    border-color: #7B2D8B;
    box-shadow: 0 0 0 3px rgba(123, 45, 139, 0.1), 0 2px 8px rgba(0,0,0,0.06);
}
.search-trigger-btn .search-icon {
    position: static;
    transform: none;
    color: #7B2D8B;
    flex-shrink: 0;
    font-size: 13px;
}
.search-trigger-placeholder {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ── Backdrop ───────────────────────────────────────────────────────────── */
.som-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 4, 18, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ── Panel ──────────────────────────────────────────────────────────────── */
.som-panel {
    position: absolute;
    top: 6vh;
    left: 50%;
    transform: translateX(-50%);
    width: min(660px, 96vw);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    max-height: 88vh;
    overflow: hidden;
}

/* ── Input row ──────────────────────────────────────────────────────────── */
.som-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.som-search-icon {
    color: #7B2D8B;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.som-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 400;
    color: #0f172a;
    background: transparent;
    line-height: 1.5;
    caret-color: #7B2D8B;
}
.som-input::placeholder {
    color: #94a3b8;
}
.som-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    color: #64748b;
    font-size: 0.8rem;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
}
.som-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Spinner SVG inline */
.som-spinner {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    animation: som-spin 0.8s linear infinite;
}
@keyframes som-spin { to { transform: rotate(360deg); } }

/* ── Body scrollable ────────────────────────────────────────────────────── */
.som-body {
    overflow-y: auto;
    flex: 1;
    padding: 4px 0 20px;
}
.som-body::-webkit-scrollbar { width: 4px; }
.som-body::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

/* ── Section ────────────────────────────────────────────────────────────── */
.som-section {
    padding: 0;
}
.som-section + .som-section {
    border-top: 1px solid #f8fafc;
    margin-top: 2px;
}
.som-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px 6px;
}
.som-section-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #94a3b8;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}
.som-clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    color: #7B2D8B;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.15s;
}
.som-clear-btn:hover { background: rgba(123,45,139,0.08); }

/* ── Chips de búsquedas recientes ───────────────────────────────────────── */
.som-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 22px 10px;
}
.som-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.som-chip:hover {
    border-color: #7B2D8B;
    background: rgba(123,45,139,0.06);
    color: #7B2D8B;
}
.som-chip-icon {
    font-size: 0.68rem;
    color: #94a3b8;
}
.som-chip:hover .som-chip-icon { color: #7B2D8B; }

/* ── Grid de regiones populares ─────────────────────────────────────────── */
.som-popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 6px 22px 12px;
}
.som-popular-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    padding: 8px 6px;
    border-radius: 8px;
    transition: background 0.15s;
}
.som-popular-item:hover { background: rgba(123,45,139,0.05); }
.som-popular-thumb {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
    flex-shrink: 0;
}
.som-popular-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

/* ── Filas de resultados ────────────────────────────────────────────────── */
.som-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 22px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    border-radius: 0;
}
.som-row:hover { background: rgba(123, 45, 139, 0.05); }
.som-row:active { background: rgba(123, 45, 139, 0.1); }

/* ── Thumbnails ─────────────────────────────────────────────────────────── */
.som-thumb {
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.som-thumb--circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.som-thumb--cover {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.som-vinicola-logo {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.som-vinicola-initials {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2D8B, #5a1f6b);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.som-thumb--wine {
    width: 48px;
    height: 60px;
    border-radius: 10px;
    background: #f8f5ff;
    box-shadow: inset 0 0 0 1px rgba(123,45,139,0.08);
}
.som-wine-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    padding: 2px;
}
.som-wine-placeholder-icon {
    font-size: 1.3rem;
    color: rgba(123,45,139,0.4);
}

/* ── Info de fila ───────────────────────────────────────────────────────── */
.som-row-info {
    flex: 1;
    min-width: 0;
}
.som-row-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    /* Por defecto: 1 línea con truncado */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Vinos: hasta 2 líneas */
.som-row-name--wrap {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: unset;
}
.som-row-sub {
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.som-dot {
    margin: 0 3px;
    color: #cbd5e1;
}
.som-chevron {
    font-size: 0.65rem;
    color: #cbd5e1;
    flex-shrink: 0;
    transition: color 0.15s;
}
.som-row:hover .som-chevron { color: #7B2D8B; }

/* ── Skeletons ──────────────────────────────────────────────────────────── */
.som-skeletons { padding: 16px 22px; }
@keyframes sk-pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.45; }
}
.sk-label, .sk-row {
    background: #f1f5f9;
    border-radius: 8px;
    animation: sk-pulse 1.6s ease-in-out infinite;
}
.sk-label {
    width: 100px;
    height: 9px;
    margin-bottom: 10px;
    border-radius: 50px;
}
.sk-row {
    height: 52px;
    margin-bottom: 8px;
}
.som-mt { margin-top: 20px; }

/* ── Sin resultados ─────────────────────────────────────────────────────── */
.som-empty {
    text-align: center;
    padding: 52px 28px 44px;
}
.som-empty-icon { font-size: 2.8rem; margin-bottom: 14px; }
.som-empty-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 280px;
    margin: 0 auto;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .som-panel {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 0 0 10px 10px;
        max-height: 100svh;
    }
    .som-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .som-input { font-size: 1rem; }
    .som-thumb--cover { width: 46px; height: 46px; }
    .som-thumb--wine  { width: 42px; height: 54px; }
}

/* ═══════════════════════════════════════════════════════
   CARD EVENTO (compartido: home + región + catálogo)
   ═══════════════════════════════════════════════════════ */
.card-evento-h {
    flex-shrink: 0;
    width: 180px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    user-select: none;
}
.card-evento-h:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(123,45,139,0.12);
    border-color: var(--brand-color);
}
.card-evento-h-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(160deg,#2d1b4e 0%,#1a0f2e 100%);
    position: relative;
}
.card-evento-h-img img { width:100%;height:100%;object-fit:cover;display:block; }
.card-evento-h-img-ph {
    width:100%;height:100%;display:flex;align-items:center;
    justify-content:center;font-size:2rem;color:rgba(255,255,255,0.3);
}
.card-evento-h-badge {
    position:absolute;top:8px;left:8px;background:var(--brand-color);color:#fff;
    font-size:10px;font-weight:700;padding:3px 8px;border-radius:50px;
    text-transform:uppercase;letter-spacing:0.4px;max-width:110px;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.card-evento-h-free {
    position:absolute;top:8px;right:8px;background:#16a34a;color:#fff;
    font-size:10px;font-weight:700;padding:3px 8px;border-radius:50px;
}
.card-evento-h-body { padding:12px; }
.card-evento-h-date {
    font-size:11px;color:var(--brand-color);font-weight:600;
    margin-bottom:4px;display:flex;align-items:center;gap:4px;
}
.card-evento-h-name {
    font-size:13px;font-weight:700;color:var(--text-primary);
    line-height:1.3;margin-bottom:5px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.card-evento-h-loc {
    font-size:11px;color:var(--text-secondary);display:flex;align-items:center;gap:4px;
}
.card-evento-h-loc span { overflow:hidden;white-space:nowrap;text-overflow:ellipsis; }

@media (max-width: 768px) {
    .card-evento-h { width: 155px; }
    .card-evento-h-img { height: 140px; }
}

/* ══════════════════════════════════════════════════════════════
   DESKTOP ENHANCED — Vivino-style grid layouts  (≥ 769px)
   Regla de oro: NUNCA afecta a .mobile-container ni sus hijos.
   Todos los selectores usan .desktop-container o .navbar-desktop
   como prefijo exclusivo.
   ══════════════════════════════════════════════════════════════ */

/* ── Navbar: búsqueda central ────────────────────────────────── */
.navbar-search-center {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    margin: 0;
}

.navbar-search-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left;
    box-shadow: none;
}

.navbar-search-btn:hover {
    border-color: rgba(192,132,212,0.5);
    box-shadow: 0 0 0 3px rgba(123,45,139,0.16);
}

.navbar-search-btn .search-icon {
    position: static;
    transform: none;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    flex-shrink: 0;
}

.navbar-right-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.nav-ship-label,
.nav-language-label {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-ship-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-ship-label i {
    font-size: 11px;
}

.navbar-desktop .auth-actions {
    gap: 14px;
}

.navbar-desktop .nav-locale-menu {
    position: relative;
    color: #ffffff;
    flex-shrink: 0;
}

.navbar-desktop .nav-locale-menu summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.navbar-desktop .nav-locale-menu summary::-webkit-details-marker {
    display: none;
}

.navbar-desktop .nav-locale-menu summary::after {
    content: '\f078';
    color: rgba(255,255,255,0.58);
    font-family: 'Font Awesome 6 Free';
    font-size: 10px;
    font-weight: 900;
}

.navbar-desktop .nav-locale-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 132px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: #111111;
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    z-index: 10020;
}

.navbar-desktop .nav-locale-dropdown a {
    display: flex;
    padding: 8px 10px;
    border-radius: 8px;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.navbar-desktop .nav-locale-dropdown a:hover,
.navbar-desktop .nav-locale-dropdown a.active {
    background: rgba(192,132,212,0.16);
    color: #ffffff;
}

.nav-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.18);
}

.nav-profile-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-profile-avatar img,
.nav-profile-avatar span {
    width: 100%;
    height: 100%;
}

.nav-profile-avatar img {
    object-fit: cover;
}

.nav-profile-avatar span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#7B2D8B,#5a1f6b);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (min-width: 769px) and (max-width: 1180px) {
    .navbar-desktop-inner {
        gap: 20px;
        padding-inline: 28px;
    }

    .navbar-search-center {
        max-width: 430px;
    }

    .nav-ship-label,
    .nav-language-label {
        display: none;
    }

    .pill-nav-inner {
        gap: 30px;
    }

    .pill-nav-link {
        font-size: 13px;
    }
}

/* ── Desktop grid sections: quitar overflow horizontal ─────────── */
@media (min-width: 769px) {

    /* Vinicolas, Tipos, Marcas → grid (wrapping flex) */
    .desktop-container .section-vinicolas .hscroll-row,
    .desktop-container .section-tipos      .hscroll-row,
    .desktop-container .section-marcas     .hscroll-row {
        flex-wrap: wrap;
        overflow-x: visible;
        overflow-y: visible;
        padding: 4px 0 20px;
    }

    /* Quitar el spacer final que se usa para scroll en mobile */
    .desktop-container .section-vinicolas .hscroll-row::after,
    .desktop-container .section-tipos     .hscroll-row::after,
    .desktop-container .section-marcas    .hscroll-row::after {
        display: none;
    }

    /* ── Vinícolas: grid 3 columnas ─────────────────────────── */
    .desktop-container .section-vinicolas .card-vinicola-h {
        width: calc(33.333% - 14px);
        flex-shrink: 0;
    }

    /* ── Marcas: grid 4 columnas ─────────────────────────────── */
    .desktop-container .section-marcas .card-marca-h {
        width: calc(25% - 15px);
        flex-shrink: 0;
    }

    /* ── Tipos de Vino: cards anchas landscape (2 cols) ────────── */
    .desktop-container .section-tipos .card-tipo-h {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: calc(50% - 8px);
        height: 168px;
        border-radius: 18px;
        background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
        overflow: hidden;
        flex-shrink: 0;
        border: none;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .desktop-container .section-tipos .card-tipo-h:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 48px rgba(0,0,0,0.38);
    }

    /* Texto a la izquierda */
    .desktop-container .section-tipos .card-tipo-h-body {
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 28px 24px;
    }

    .desktop-container .section-tipos .card-tipo-h-nombre {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        text-align: left;
        letter-spacing: -0.01em;
        white-space: normal;
    }

    /* Imagen (botella) a la derecha */
    .desktop-container .section-tipos .card-tipo-h-img {
        order: 2;
        width: 130px;
        height: 100%;
        flex-shrink: 0;
        padding: 0;
        background: transparent;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .desktop-container .section-tipos .card-tipo-h-img img {
        height: 100%;
        width: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
    }

    /* ── Newsletter ──────────────────────────────────────────── */
    .desktop-newsletter {
        background: linear-gradient(135deg, #0f172a 0%, #1e1040 55%, #2d1b4e 100%);
        border-radius: 8px;
        padding: 52px 64px;
        margin: 40px 0 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        border: 1px solid rgba(123,45,139,0.22);
    }

    .desktop-newsletter-text h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .desktop-newsletter-text p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.56);
        line-height: 1.65;
        margin: 0;
        max-width: 300px;
    }

    .desktop-newsletter-form {
        flex-shrink: 0;
        min-width: 340px;
    }

    .desktop-newsletter-row {
        display: flex;
        gap: 10px;
    }

    .desktop-newsletter-input {
        flex: 1;
        padding: 13px 20px;
        border-radius: 50px;
        border: 1.5px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.07);
        color: #fff;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s, background 0.2s;
    }

    .desktop-newsletter-input::placeholder { color: rgba(255,255,255,0.36); }

    .desktop-newsletter-input:focus {
        border-color: var(--brand-light);
        background: rgba(255,255,255,0.11);
    }

    .desktop-newsletter-btn {
        padding: 13px 26px;
        border-radius: 50px;
        background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
        border: none;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        font-family: inherit;
        cursor: pointer;
        white-space: nowrap;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 14px rgba(123,45,139,0.4);
    }

    .desktop-newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(123,45,139,0.55);
    }

    /* ── Benefits / confianza: 4 columnas ─────────────────────── */
    .desktop-benefits {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding: 32px 0 8px;
        border-top: 1px solid #f0ece8;
        margin-top: 8px;
    }

    .desktop-benefit-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 20px;
        background: #faf9fc;
        border-radius: 10px;
        border: 1px solid #ede8f2;
        transition: box-shadow 0.2s;
    }

    .desktop-benefit-item:hover {
        box-shadow: 0 4px 18px rgba(123,45,139,0.09);
    }

    .desktop-benefit-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        flex-shrink: 0;
    }

    .desktop-benefit-text strong {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.3;
    }

    .desktop-benefit-text span {
        font-size: 11px;
        color: #64748b;
    }
}

/* ── Large screens (≥ 1024px): columnas extra ─────────────────── */
@media (min-width: 1024px) {
    /* Vinícolas: 4 cols */
    .desktop-container .section-vinicolas .card-vinicola-h {
        width: calc(25% - 15px);
    }

    /* Tipos: 3 cols */
    .desktop-container .section-tipos .card-tipo-h {
        width: calc(33.333% - 11px);
    }

    /* Marcas: 5 cols */
    .desktop-container .section-marcas .card-marca-h {
        width: calc(20% - 13px);
    }
}

/* ── Vivino-style cards de estilos (solo desktop, dentro de desktop-container) ── */
.desktop-container .vt-style-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.desktop-container .vt-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.desktop-container .vt-style-card:hover .vt-style-card-bottle {
    transform: translateY(-8px);
}

/* ═══════════════════════════════════════════════════════════════
   TWO-COLUMN HERO LAYOUT  (desktop-only — never leaks to mobile)
   ═══════════════════════════════════════════════════════════════ */

/* ── Contenedor principal 2 columnas ─────────────────────────── */
.desktop-container .vt-two-col {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 20px;
    padding: 24px 32px 32px;
    background: #ffffff;
    min-height: 560px;
}

/* ── Columnas ─────────────────────────────────────────────────── */
.desktop-container .vt-col-left,
.desktop-container .vt-col-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* ── Hero con fondo de viñedo ─────────────────────────────────── */
.desktop-container .vt-hero-bg {
    position: relative;
    flex: 1;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(160deg, #2d1b4e 0%, #1a0f2e 100%);
    background-size: cover;
    background-position: center;
}

.desktop-container .vt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 5, 20, 0.55) 0%,
        rgba(10, 5, 20, 0.30) 40%,
        rgba(10, 5, 20, 0.70) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 28px 32px;
    gap: 18px;
}

/* ── Título del hero ─────────────────────────────────────────── */
.desktop-container .vt-hero-title {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin: 0;
}

/* ── Círculos de tipos de vino ──────────────────────────────── */
.desktop-container .vt-type-circles {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.desktop-container .vt-type-circles::-webkit-scrollbar { display: none; }

.desktop-container .vt-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
}

.desktop-container .vt-type-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.2s, transform 0.2s;
}
.desktop-container .vt-type-item:hover .vt-type-circle {
    background: rgba(255,255,255,0.30);
    transform: scale(1.08);
}
.desktop-container .vt-type-circle img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.desktop-container .vt-type-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── Botón buscador pill ──────────────────────────────────────── */
.desktop-container .vt-search-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    padding: 11px 20px;
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
}
.desktop-container .vt-search-trigger:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.55);
    color: #ffffff;
}
.desktop-container .vt-search-trigger i {
    font-size: 14px;
    opacity: 0.80;
    flex-shrink: 0;
}

/* ── Mini-sección genérica (header + contenido) ──────────────── */
.desktop-container .vt-mini-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 18px 18px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.desktop-container .vt-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.desktop-container .vt-mini-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a0f2e;
    margin: 0;
    line-height: 1.2;
}

.desktop-container .vt-mini-link {
    font-size: 12px;
    font-weight: 600;
    color: #7B2D8B;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
    flex-shrink: 0;
}
.desktop-container .vt-mini-link:hover { color: #5c1f6a; }

/* ── Grid de Regiones (3 columnas) ───────────────────────────── */
.desktop-container .vt-region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.desktop-container .vt-region-card {
    position: relative;
    height: 88px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.2s;
}
.desktop-container .vt-region-card:hover { transform: scale(1.03); }

.desktop-container .vt-region-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,5,20,0.75) 0%, rgba(10,5,20,0.10) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px 10px;
}

.desktop-container .vt-region-card-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    display: block;
}

.desktop-container .vt-region-card-count {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    display: block;
}

/* ── Grid de Vinícolas (3 columnas, columna derecha) ─────────── */
.desktop-container .vt-winery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.desktop-container .vt-winery-card {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ede8f5;
    background: #fff;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
}
.desktop-container .vt-winery-card:hover {
    box-shadow: 0 6px 24px rgba(123,45,139,0.14);
    transform: translateY(-3px);
}

.desktop-container .vt-winery-cover {
    height: 80px;
    position: relative;
    background: linear-gradient(160deg, #2d1b4e 0%, #1a0f2e 100%);
    background-size: cover;
    background-position: center;
}

.desktop-container .vt-winery-logo {
    position: absolute;
    bottom: -14px;
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.desktop-container .vt-winery-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-container .vt-winery-info {
    padding: 18px 10px 10px;
}

.desktop-container .vt-winery-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a0f2e;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desktop-container .vt-winery-valle {
    font-size: 10px;
    color: #7b6b8d;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Fila de Vinos (botellas) ────────────────────────────────── */
.desktop-container .vt-wine-row {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.desktop-container .vt-wine-row::-webkit-scrollbar { display: none; }

.desktop-container .vt-wine-card {
    flex: 1;
    min-width: 80px;
    max-width: 100px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.desktop-container .vt-wine-card:hover { transform: translateY(-4px); }

.desktop-container .vt-wine-img {
    height: 110px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.desktop-container .vt-wine-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-container .vt-wine-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 28px;
    color: #c4b0d6;
}

.desktop-container .vt-wine-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.desktop-container .vt-wine-tipo {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7B2D8B;
}

.desktop-container .vt-wine-name {
    font-size: 11px;
    font-weight: 700;
    color: #1a0f2e;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.desktop-container .vt-wine-winery {
    font-size: 10px;
    color: #7b6b8d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Responsive: colapsa a 1 col en tablet estrecha ─────────── */
@media (min-width: 769px) and (max-width: 960px) {
    .desktop-container .vt-two-col {
        grid-template-columns: 1fr;
        padding: 16px 20px 24px;
    }
    .desktop-container .vt-winery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .desktop-container .vt-wine-card {
        min-width: 70px;
        max-width: 90px;
    }
}

/* ── Wide screens: más espacio ───────────────────────────────── */
@media (min-width: 1280px) {
    .desktop-container .vt-two-col {
        padding: 28px 48px 40px;
        gap: 28px;
    }
    .desktop-container .vt-hero-bg {
        min-height: 340px;
    }
    .desktop-container .vt-winery-cover {
        height: 96px;
    }
    .desktop-container .vt-wine-img {
        height: 130px;
    }
    .desktop-container .vt-wine-card {
        max-width: 120px;
    }
    .desktop-container .vt-region-card {
        height: 100px;
    }
}

/* ════════════════════════════════════════════════════════════════════
   HOME DESKTOP — secciones bajo el hero como CSS grid (≥769px)
   Convierte hscroll-row → grid por sección. Mobile: intacto.
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {

    /* ── Mixin compartido: quitar scroll, activar grid ── */
    .desktop-container .section-regiones  .hscroll-row,
    .desktop-container .section-vinicolas .hscroll-row,
    .desktop-container .section-vinos     .hscroll-row,
    .desktop-container .section-eventos   .hscroll-row,
    .desktop-container .section-marcas    .hscroll-row,
    .desktop-container .section-vionda    .hscroll-row {
        display: grid;
        overflow: visible;
        gap: 18px;
        padding: 4px 0 28px;
        scrollbar-width: unset;
        -webkit-overflow-scrolling: unset;
    }

    .desktop-container .section-regiones  .hscroll-row::after,
    .desktop-container .section-vinicolas .hscroll-row::after,
    .desktop-container .section-vinos     .hscroll-row::after,
    .desktop-container .section-eventos   .hscroll-row::after,
    .desktop-container .section-marcas    .hscroll-row::after,
    .desktop-container .section-vionda    .hscroll-row::after { display: none; }

    /* ── Columnas de grid por sección ─────────────────── */
    .desktop-container .section-regiones  .hscroll-row { grid-template-columns: repeat(4, 1fr); }
    .desktop-container .section-vinicolas .hscroll-row { grid-template-columns: repeat(4, 1fr); }
    .desktop-container .section-vinos     .hscroll-row { grid-template-columns: repeat(5, 1fr); }
    .desktop-container .section-eventos   .hscroll-row { grid-template-columns: repeat(3, 1fr); }
    .desktop-container .section-marcas    .hscroll-row { grid-template-columns: repeat(5, 1fr); }
    .desktop-container .section-vionda    .hscroll-row { grid-template-columns: repeat(4, 1fr); }

    /* ── Quitar anchos fijos — el grid gestiona el tamaño ── */
    .desktop-container .section-regiones  .card-region-h   { width: auto; flex-shrink: initial; }
    .desktop-container .section-vinicolas .card-vinicola-h { width: auto; flex-shrink: initial; }
    .desktop-container .section-vinos     .card-vino-h     { width: auto; flex-shrink: initial; }
    .desktop-container .section-eventos   .card-evento-h   { width: auto; flex-shrink: initial; cursor: pointer; }
    .desktop-container .section-marcas    .card-marca-h    { width: auto; flex-shrink: initial; }
    .desktop-container .section-vionda    .card-vinicola-h,
    .desktop-container .section-vionda    .card-ruta-h,
    .desktop-container .section-vionda    .card-poi-h,
    .desktop-container .section-vionda    .card-vino-h     { width: auto; flex-shrink: initial; }

    /* ── Alturas de imagen en grid ─────────────────────── */
    .desktop-container .section-regiones  .card-region-h-img       { height: 220px; }
    .desktop-container .section-vinicolas .card-vinicola-h-cover   { height: 180px; }
    .desktop-container .section-vinos     .card-vino-h-img         { height: 230px; padding: 16px 14px 10px; }
    .desktop-container .section-eventos   .card-evento-h-img       { height: 200px; }
    .desktop-container .section-marcas    .card-marca-h-logo       { height: 140px; }
    .desktop-container .section-vionda    .card-vinicola-h-cover   { height: 160px; }
    .desktop-container .section-vionda    .card-ruta-h-img         { height: 140px; }
    .desktop-container .section-vionda    .card-poi-h-img          { height: 140px; }
    .desktop-container .section-vionda    .card-vino-h-img         { height: 200px; padding: 14px 12px 8px; }

    /* ── Hover lift en todas las secciones ─────────────── */
    .desktop-container .section-regiones  .card-region-h:hover,
    .desktop-container .section-vinicolas .card-vinicola-h:hover,
    .desktop-container .section-marcas    .card-marca-h:hover,
    .desktop-container .section-eventos   .card-evento-h:hover,
    .desktop-container .section-vionda    .card-vinicola-h:hover,
    .desktop-container .section-vionda    .card-ruta-h:hover,
    .desktop-container .section-vionda    .card-poi-h:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(123,45,139,0.12);
    }

    .desktop-container .section-vinos .card-vino-h:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    }
}

/* ── Pantallas ≥ 1280px: una columna más en regiones y vinos ── */
@media (min-width: 1280px) {
    .desktop-container .section-regiones .hscroll-row { grid-template-columns: repeat(5, 1fr); }
    .desktop-container .section-vinos    .hscroll-row { grid-template-columns: repeat(6, 1fr); }
    .desktop-container .section-marcas   .hscroll-row { grid-template-columns: repeat(6, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECCIÓN: Layout moderno desktop (Vivino-style)
   Movido desde el inline <style> del blade welcome.blade.php
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) {

    /* ── Secciones y wrappers ──────────────────────────────────────────── */
    .vt-desktop-section-modern { padding: 40px; margin-bottom: 20px; }
    .vt-bg-soft-modern { background: #f8fafc; border-radius: 32px; }
    .vt-desktop-section-modern { border-radius: 10px; margin: 0 0 8px; background: #fff; }

    /* ── Mini secciones (columna lateral) ─────────────────────────────── */
    .vt-mini-section-modern { margin-top: 24px; }
    .vt-mini-header-modern { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
    .vt-mini-title-modern { font-size: 1.2rem; font-weight: 800; color: #1e293b; margin: 0; }
    .vt-mini-link-modern { font-size: 12px; font-weight: 700; color: #7B2D8B; text-decoration: none; }

    .vt-region-mini-grid-modern { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .vt-region-mini-card-modern { height: 140px; border-radius: 10px; overflow: hidden; position: relative; background-size: cover; background-position: center; display: block; text-decoration: none; }
    .vt-region-mini-overlay-modern { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; color: #fff; }
    .vt-region-mini-overlay-modern .name { font-weight: 800; font-size: 14px; }
    .vt-region-mini-overlay-modern .count { font-size: 11px; opacity: 0.8; }

    .vt-wine-mini-list-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .vt-wine-mini-card-modern { display: flex; align-items: center; gap: 8px; background: #fff; padding: 10px; border-radius: 10px; border: 1px solid #f1f5f9; text-decoration: none; transition: all 0.2s; }
    .vt-wine-mini-card-modern:hover { transform: translateX(5px); border-color: #7B2D8B; }
    .vt-wine-mini-img-modern { width: 40px; height: 60px; display: flex; align-items: center; justify-content: center; background: #f8fafc; border-radius: 8px; flex-shrink: 0; }
    .vt-wine-mini-img-modern img { height: 80%; width: auto; object-fit: contain; }
    .vt-wine-mini-info-modern { display: flex; flex-direction: column; }
    .vt-wine-mini-info-modern .name { font-weight: 700; font-size: 13px; color: #1e293b; }
    .vt-wine-mini-info-modern .winery { font-size: 11px; color: #64748b; }

    /* ── Encabezados de sección ────────────────────────────────────────── */
    .vt-section-header-modern-wide { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
    .vt-section-header-modern { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
    .vt-badge-modern { display: inline-block; padding: 4px 8px; background: rgba(123,45,139,0.10); color: #6f247d; border-radius: 50px; font-size: 10px; font-weight: 800; margin-bottom: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
    .vt-title-modern { font-family: 'Playfair Display', serif; font-size: clamp(1.22rem, 1.65vw, 1.65rem); font-weight: 700; margin: 0; color: #1a0a2e; letter-spacing: -0.03em; }
    .vt-title-modern-small { font-size: 1.05rem; font-weight: 800; color: #1a0a2e; }
    .vt-link-modern-all { display: inline-flex; align-items: center; padding: 7px 8px; border: 1px solid #ead6ff; border-radius: 999px; background: #fff; box-shadow: 0 8px 18px rgba(123,45,139,0.08); font-size: 13px; font-weight: 700; color: #7B2D8B; text-decoration: none; transition: transform .18s, box-shadow .18s, background .18s; }
    .vt-link-modern-all:hover { transform: translateY(-2px); background: #fbf7ff; box-shadow: 0 12px 24px rgba(123,45,139,0.14); }
    .vt-link-modern-small { font-size: 12px; font-weight: 700; color: #7B2D8B; text-decoration: none; }
    .vt-link-modern-small:hover { text-decoration: underline; }

    /* ── Trust bar ─────────────────────────────────────────────────────── */
    .vt-trust-bar { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 0; box-sizing: border-box; width: 100%; padding: 28px 32px; background: linear-gradient(135deg, #180022, #2d073d 58%, #4b135f); color: #fff; border-color: rgba(255,255,255,0.10); }
    .vt-trust-item { display: flex; align-items: center; gap: 16px; padding: 0 24px; }
    .vt-trust-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); }
    .vt-trust-icon i { font-size: 1.2rem; color: #f2d7ff; }
    .vt-trust-body { display: flex; flex-direction: column; gap: 3px; }
    .vt-trust-title { font-size: .78rem; font-weight: 800; color: #fff; line-height: 1.3; }
    .vt-trust-desc { font-size: .68rem; color: rgba(255,255,255,0.68); line-height: 1.4; }
    .vt-trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.13); }

    /* ── Grid de vinícolas (catálogo-style) ────────────────────────────── */
    .vt-cat-vinicolas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .vt-cat-vinicola-card { background: #fff; border: none; border-radius: 10px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; text-decoration: none; display: block; position: relative; box-shadow: 0 10px 34px rgba(15,0,24,0.08); }
    .vt-cat-vinicola-card:hover { transform: translateY(-8px); border-color: #7B2D8B; box-shadow: 0 15px 30px rgba(123,45,139,0.15); }
    .vt-cat-card-image { position: relative; height: 205px; background: #f1f5f9; overflow: hidden; }
    .vt-cat-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .vt-cat-vinicola-card:hover .vt-cat-card-image img { transform: scale(1.05); }
    .vt-cat-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
    .vt-cat-card-placeholder i { color: #94a3b8; font-size: 3rem; }
    .vt-cat-star-badge { position: absolute; top: 10px; right: 10px; background: rgba(245,158,11,0.92); color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 50px; backdrop-filter: blur(4px); }
    .vt-cat-card-content { padding: 18px 18px 20px; }
    .vt-cat-card-region { color: #7B2D8B; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
    .vt-cat-no-visits { margin-left: 6px; font-size: 0.7rem; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 1px 6px; border-radius: 4px; white-space: nowrap; }
    .vt-cat-card-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: #1e293b; line-height: 1.3; margin-bottom: 5px; }
    .vt-cat-card-desc { font-size: .76rem; color: #64748b; margin-top: 4px; }
    .vt-cat-card-amenidades { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
    .vt-cat-amenidad-mini { width: 10px; height: 10px; border-radius: 50%; background: rgba(123,45,139,0.08); color: #7B2D8B; display: inline-flex; align-items: center; justify-content: center; font-size: 0.65rem; border: 1px solid rgba(123,45,139,0.15); flex-shrink: 0; transition: background 0.2s; }
    .vt-cat-vinicola-card:hover .vt-cat-amenidad-mini { background: rgba(123,45,139,0.14); }
    .vt-cat-amenidad-more { font-size: 0.6rem; font-weight: 700; color: #64748b; }

    /* ── Sección Vionda / vinos recomendados ───────────────────────────── */
    .vt-vionda-header-left { display: flex; align-items: center; gap: 14px; }
    .vt-vionda-avatar-sm { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid #7B2D8B; flex-shrink: 0; box-shadow: 0 10px 10px rgba(123,45,139,0.22); }
    .vt-vionda-wines-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
    .vt-vionda-wine-card { background: #16001f; border: none; border-radius: 10px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: all 0.3s; box-shadow: 0 10px 34px rgba(15,0,24,0.16); }
    .vt-vionda-wine-card:hover { transform: translateY(-6px); border-color: #7B2D8B; box-shadow: 0 12px 28px rgba(123,45,139,0.12); }
    .vt-vionda-wine-img { position: relative; height: 160px; background: #ffffff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .vt-vionda-wine-img img { height: 85%; width: auto; object-fit: contain; transition: transform 0.4s; }
    .vt-vionda-wine-card:hover .vt-vionda-wine-img img { transform: scale(1.06); }
    .vt-vionda-wine-placeholder { color: #c4b5d4; font-size: 2.5rem; }
    .vt-vionda-wine-badge { position: absolute; top: 8px; left: 8px; background: rgba(123,45,139,0.85); color: #fff; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 50px; letter-spacing: 0.4px; backdrop-filter: blur(4px); }
    .vt-vionda-wine-info { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 3px; background: #16001f; }
    .vt-vionda-wine-tipo { font-size: 10px; color: #7B2D8B; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; }
    .vt-vionda-wine-name { font-size: .78rem; font-weight: 700; color: #ffffff; line-height: 1.25; }
    .vt-vionda-wine-winery { font-size: .68rem; color: rgba(255,255,255,0.58); margin-top: 1px; }

    /* ── Vionda sub-sections (vinícolas, rutas, POIs) ──────────────────── */
    .vt-vionda-subsection { margin-top: 32px; }
    .vt-vionda-subsection-label { font-size: 16px; font-weight: 700; color: #1a0f2e; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .vt-vionda-subsection-label::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.10); }
    .vt-vionda-items-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .vt-vionda-item-card { background: #16001f; border-radius: 10px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: all 0.3s; box-shadow: 0 4px 16px rgba(15,0,24,0.18); border: 1px solid rgba(123,45,139,0.15); }
    .vt-vionda-item-card:hover { transform: translateY(-4px); border-color: #7B2D8B; box-shadow: 0 8px 24px rgba(123,45,139,0.22); }
    .vt-vionda-item-img { position: relative; height: 110px; overflow: hidden; background: #2a0030; }
    .vt-vionda-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .vt-vionda-item-card:hover .vt-vionda-item-img img { transform: scale(1.05); }
    .vt-vionda-item-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.18); font-size: 2rem; }
    .vt-vionda-item-info { padding: 10px 12px 13px; display: flex; flex-direction: column; gap: 3px; }
    .vt-vionda-item-cat { font-size: 9px; color: rgba(196,154,214,0.75); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
    .vt-vionda-item-name { font-size: .76rem; font-weight: 700; color: #ffffff; line-height: 1.25; }
    .vt-vionda-item-detail { font-size: .65rem; color: rgba(255,255,255,0.45); margin-top: 1px; }

    /* ── Split Marcas & Newsletter ─────────────────────────────────────── */
    .vt-split-modern { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; background: transparent; border: none; box-shadow: none; padding: 0; }
    .vt-split-col, .vt-eventos-card { background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none; }
    .vt-brand-modern-item { display: flex; align-items: center; gap: 15px; padding: 8px; border-radius: 10px; text-decoration: none; border: 1px solid #efe7f5; margin-bottom: 10px; transition: all 0.2s; background: #fff; }
    .vt-brand-modern-item:hover { background: #f8fafc; border-color: #7B2D8B; }
    .vt-brand-modern-item .logo { width: 44px; height: 44px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid #eee; overflow: hidden; }
    .vt-brand-modern-item .logo img { width: 80%; height: 80%; object-fit: contain; }
    .vt-brand-modern-item .info { display: flex; flex-direction: column; }
    .vt-brand-modern-item .info .name { font-weight: 700; font-size: 13px; color: #1e293b; line-height: 1.2; }
    .vt-brand-modern-item .info .count { font-size: 10px; color: #94a3b8; margin-top: 1px; }
    .vt-newsletter-modern-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin: 0 0 8px; line-height: 1.2; }
    .vt-newsletter-modern-inner p { font-size: .85rem; opacity: .7; line-height: 1.6; margin: 0; }

    /* ── Eventos ───────────────────────────────────────────────────────── */
    .vt-eventos-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #1a0a2e; margin: 8px 0 0; }
    .vt-eventos-list { display: flex; flex-direction: column; gap: 4px; }
    .vt-evento-row { display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: 10px; transition: background 0.18s; background: #fff; border: 1px solid #f3edf7; }
    .vt-evento-row:hover { background: #fafafa; }
    .vt-evento-fecha { display: flex; flex-direction: column; align-items: center; min-width: 36px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 6px 8px; }
    .vt-evento-dia { font-size: 1.1rem; font-weight: 800; color: #d97706; line-height: 1; }
    .vt-evento-mes { font-size: 9px; font-weight: 700; color: #d97706; letter-spacing: 0.5px; margin-top: 2px; }
    .vt-evento-info { flex: 1; display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
    .vt-evento-nombre { font-size: .78rem; font-weight: 700; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .vt-evento-lugar { font-size: 10px; color: #94a3b8; display: flex; align-items: center; gap: 4px; }
    .vt-evento-free { font-size: 10px; font-weight: 800; color: #16a34a; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 2px 8px; border-radius: 50px; white-space: nowrap; }
    .vt-eventos-empty { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #94a3b8; padding: 20px 0; }
    .vt-eventos-empty i { font-size: 2rem; opacity: 0.4; }
    .vt-eventos-empty p { font-size: 0.85rem; margin: 0; }

    /* ── Spotlight cards ───────────────────────────────────────────────── */
    .star-badge { position: absolute; top: 10px; right: 10px; background: rgba(245,158,11,0.92); color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 50px; backdrop-filter: blur(4px); }
    .vt-spotlight-card { background: #fff; border-radius: 8px; border: 1px solid #f1e8f8; display: flex; flex-direction: column; overflow: hidden; }
    .vt-spotlight-vionda { border-top: 3px solid #7B2D8B; }
    .vt-spotlight-event  { border-top: 3px solid #f59e0b; }
    .vt-spotlight-header { padding: 14px 18px 10px; }
    .vt-spotlight-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; background: #f5f0ff; color: #7B2D8B; margin-bottom: 6px; }
    .vt-badge-event { background: #fffbeb; color: #d97706; }
    .vt-spotlight-title { margin: 0; font-size: .88rem; font-weight: 700; color: #1e293b; line-height: 1.3; }
    .vt-spotlight-content { padding: 12px 18px; flex: 1; }
    .vt-spotlight-item { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; transition: opacity .2s; }
    .vt-spotlight-item:hover { opacity: .78; }
    .vt-spotlight-img { width: 46px; height: 68px; flex-shrink: 0; background: #f8f5fc; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .vt-spotlight-img img { height: 90%; width: auto; object-fit: contain; }
    .vt-spotlight-info { display: flex; flex-direction: column; gap: 3px; }
    .vt-spotlight-info .vt-spotlight-type { font-size: 10px; color: #94a3b8; text-transform: uppercase; font-weight: 700; letter-spacing: .5px; }
    .vt-spotlight-info .vt-spotlight-name { font-size: .85rem; font-weight: 700; color: #1e293b; line-height: 1.25; }
    .vt-spotlight-info .vt-spotlight-desc { font-size: .72rem; color: #64748b; line-height: 1.4; margin-top: 1px; }
    .vt-spotlight-event-info { display: flex; flex-direction: column; gap: 7px; }
    .vt-event-date { font-size: .72rem; color: #d97706; font-weight: 800; letter-spacing: .4px; }
    .vt-event-name { font-size: .9rem; font-weight: 800; color: #1e293b; line-height: 1.25; }
    .vt-event-loc  { font-size: .72rem; color: #64748b; display: flex; align-items: center; gap: 5px; }
    .vt-spotlight-footer { padding: 10px 18px 16px; border-top: 1px solid #faf5ff; }
    .vt-spotlight-btn { display: inline-block; font-size: .78rem; font-weight: 700; color: #7B2D8B; text-decoration: none; padding: 7px 10px; border: 1.5px solid #e9d5f5; border-radius: 50px; transition: background .18s, color .18s, border-color .18s; cursor: pointer; background: transparent; font-family: inherit; }
    .vt-spotlight-btn:hover { background: #7B2D8B; color: #fff; border-color: #7B2D8B; }
    .vt-btn-event { color: #d97706; border-color: #fde68a; }
    .vt-btn-event:hover { background: #d97706; color: #fff; border-color: #d97706; }

    /* ── Secciones lineales (Vivino-style) ─────────────────────────────── */

    /* Desktop container y wrapper */
    .desktop-container { background: #ffffff; padding-bottom: 42px; }
    .desktop-wrapper { width: 100%; box-sizing: border-box; display: flex; flex-direction: column; gap: 46px; }
    .vt-desktop-section-modern { margin: 0; padding: 0; border: none; background: transparent; box-shadow: none; }
    /* Restaurar trust bar después del reset de vt-desktop-section-modern */
    .vt-desktop-section-modern.vt-trust-bar { padding: 28px 32px; background: linear-gradient(135deg, #180022, #2d073d 58%, #4b135f); color: #fff; }
    .vt-section-header-modern-wide { margin-bottom: 20px; }

    /* Regiones */
    .vt-regions-linear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; align-items: stretch; }
    .vt-region-new-card { background: #fff; border-radius: 10px; overflow: hidden; text-decoration: none; display: block; box-shadow: 0 10px 34px rgba(15,0,24,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .vt-region-new-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(123,45,139,0.15); }
    .vt-region-new-img { overflow: hidden; background: #f1f5f9; }
    .vt-region-new-img img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
    .vt-region-new-card:hover .vt-region-new-img img { transform: scale(1.03); }
    .vt-region-new-placeholder { width: 100%; min-height: 180px; }
    .vt-region-new-body { padding: 14px 16px 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; background: #fff; }
    .vt-region-new-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: #1e293b; line-height: 1.3; }
    .vt-region-new-count { flex-shrink: 0; padding: 5px 11px; border-radius: 999px; background: #7B2D8B; color: #fff; font-size: 11px; font-weight: 700; white-space: nowrap; }

    /* Tipos de vino */
    .vt-types-linear-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 18px; }
    .vt-type-linear-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; width: auto; padding: 18px 10px; border: 1px solid #f0e6f5; border-radius: 10px; background: #fff; transition: transform .2s, border-color .2s, box-shadow .2s; }
    .vt-type-linear-item:hover { transform: translateY(-5px); border-color: rgba(123,45,139,0.32); box-shadow: 0 14px 28px rgba(123,45,139,0.12); }
    .vt-type-linear-circle { width: 92px; height: 92px; border-radius: 50%; border: none; background: radial-gradient(circle at 30% 25%, #ffffff, #efe1f7); display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .vt-type-linear-circle img { width: 62px; height: 62px; object-fit: contain; }
    .vt-type-linear-label { font-size: 12px; font-weight: 600; color: #374151; text-align: center; white-space: nowrap; }

    /* Vinos destacados */
    .vt-wine-row-linear { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; overflow: visible; padding-bottom: 0; scrollbar-width: none; }
    .vt-wine-row-linear::-webkit-scrollbar { display: none; }
    .vt-wine-card-linear { flex-shrink: 0; width: auto; min-height: 282px; text-decoration: none; color: inherit; display: flex; flex-direction: column; background: #fff; border: 1px solid #eee7f4; border-radius: 10px; overflow: hidden; transition: all .2s; box-shadow: 0 10px 10px rgba(15,0,24,0.05); }
    .vt-wine-card-linear:hover { border-color: #7B2D8B; transform: translateY(-5px); box-shadow: 0 10px 24px rgba(123,45,139,.12); }
    .vt-wine-img-linear { height: 205px; display: flex; align-items: center; justify-content: center; background: transparent; overflow: hidden; }
    .vt-wine-img-linear img { height: 85%; width: auto; object-fit: contain; transition: transform .3s; }
    .vt-wine-card-linear:hover .vt-wine-img-linear img { transform: scale(1.05); }
    .vt-wine-img-linear .vt-wine-placeholder { font-size: 2rem; color: #c4b0d6; }
    .vt-wine-info-linear { padding: 13px 15px 16px; display: flex; flex-direction: column; gap: 2px; }
    .vt-wine-tipo-linear { font-size: 10px; color: #7B2D8B; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
    .vt-wine-name-linear { font-size: .78rem; font-weight: 700; color: #1e293b; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .vt-wine-winery-linear { font-size: .68rem; color: #94a3b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ── Tablets (769px – 1100px) ────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1100px) {
    .vt-regions-linear-grid,
    .vt-wine-row-linear,
    .vt-cat-vinicolas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vt-vionda-wines-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vt-vionda-items-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vt-trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .vt-trust-divider { display: none; }
    .vt-trust-item { padding: 0; }
    .vt-split-modern { grid-template-columns: 1fr; }
}
