/* ═══════════════════════════════════════════════════════════════════
   EL QUEBRACHO · styles.css
   Asador argentino · Brasas y humo · Mismo diseño en móvil y desktop.
   Todo encapsulado en .pv-biolink para no romper Elementor.
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   RESET GLOBAL · evitar bordes blancos (asegurar pantalla completa)
   Estas reglas se aplican fuera del scope .pv-biolink porque tienen
   que afectar al html/body que envuelven a Elementor.
   ═══════════════════════════════════════════════════════════════════ */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #0a0805 !important;     /* mismo char que el fondo de .pv-biolink */
    overflow-x: hidden;
}

/* El propio bloque .pv-biolink debe extenderse a todo el ancho posible
   incluso si Elementor lo coloca dentro de un contenedor con padding */
.pv-biolink {
    margin-left: calc(50% - 50vw);      /* trick para romper contenedores con padding */
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    /* Paleta brasas */
    --ember:        #dc5c03;   /* color principal de marca */
    --ember-deep:   #b34403;
    --ember-bright: #ff7a1a;
    --ember-glow:   #ffb066;
    --gold:         #d4a45a;
    --char:         #0a0805;   /* casi negro · carbón */
    --char-soft:    #1a1410;
    --smoke:        #2a221c;
    --bone:         #f4ead8;   /* texto sobre oscuro */
    --bone-soft:    #c9bfa9;
    --paper:        #f5e9cf;   /* papel envejecido (carta) */
    --paper-deep:   #e6d4ac;
    --paper-ink:    #3d2817;
    --paper-accent: #b34403;
    --shadow-warm:  rgba(220, 92, 3, 0.25);
    --shadow-deep:  rgba(0, 0, 0, 0.55);

    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--bone);
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 120% 80% at 50% 100%, rgba(220, 92, 3, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 122, 26, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0a0805 0%, #14100c 40%, #1f1610 80%, #2a1a0c 100%);
    overflow-x: hidden;
    padding-bottom: 120px;
}

.pv-biolink *,
.pv-biolink *::before,
.pv-biolink *::after { box-sizing: border-box; }

.pv-biolink a { text-decoration: none; }


/* ═══════════════════════════════════════════════════════════════════
   FONDO · Brasas, humo y chispas
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .pv-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Resplandor de brasas en la base · FIXED para que esté siempre al pie del viewport */
.pv-biolink .pv-emberglow {
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 380px;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 122, 26, 0.45) 0%, rgba(220, 92, 3, 0.25) 28%, rgba(220, 92, 3, 0.08) 55%, transparent 75%);
    filter: blur(20px);
    animation: pv-emberPulse 5s ease-in-out infinite;
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
}
@keyframes pv-emberPulse {
    0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
    50%      { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

/* Vetas de madera muy sutiles */
.pv-biolink .pv-woodgrain {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            92deg,
            transparent 0,
            transparent 80px,
            rgba(120, 75, 35, 0.04) 80px,
            rgba(120, 75, 35, 0.04) 82px,
            transparent 82px,
            transparent 180px,
            rgba(80, 50, 25, 0.03) 180px,
            rgba(80, 50, 25, 0.03) 183px
        );
    opacity: 0.6;
    mix-blend-mode: overlay;
}

/* Humo ondulando · también FIXED */
.pv-biolink .pv-smoke {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.pv-biolink .pv-smoke-layer {
    position: absolute;
    bottom: -40%;
    left: -25%;
    width: 150%;
    height: 140%;
    border-radius: 45%;
    opacity: 0.5;
    filter: blur(35px);
    pointer-events: none;
}
.pv-biolink .pv-smoke-1 {
    background: radial-gradient(ellipse at 50% 80%, rgba(180, 140, 100, 0.18) 0%, transparent 60%);
    animation: pv-smokeRise 22s ease-in-out infinite;
}
.pv-biolink .pv-smoke-2 {
    background: radial-gradient(ellipse at 30% 70%, rgba(150, 110, 80, 0.14) 0%, transparent 55%);
    animation: pv-smokeRise 28s ease-in-out infinite;
    animation-delay: -8s;
}
.pv-biolink .pv-smoke-3 {
    background: radial-gradient(ellipse at 70% 75%, rgba(220, 180, 130, 0.10) 0%, transparent 55%);
    animation: pv-smokeRise 36s ease-in-out infinite;
    animation-delay: -15s;
}
@keyframes pv-smokeRise {
    0%   { transform: translateY(20%) scale(1) rotate(0deg);    opacity: 0; }
    15%  { opacity: 0.5; }
    50%  { transform: translateY(-15%) scale(1.15) rotate(3deg); opacity: 0.6; }
    85%  { opacity: 0.3; }
    100% { transform: translateY(-50%) scale(1.3) rotate(-2deg); opacity: 0; }
}

/* Chispas (partículas) flotando hacia arriba · viven en posición FIXED para que
   estén siempre visibles cubriendo todo el viewport, suban desde el pie hasta
   muy por encima del header sin importar el scroll de la página */
.pv-biolink .pv-sparks {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.pv-biolink .pv-sparks span {
    position: absolute;
    bottom: -20px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--ember-bright);
    box-shadow:
        0 0 6px var(--ember-bright),
        0 0 14px rgba(255, 122, 26, 0.75);
    opacity: 0;
    animation: pv-sparkRise var(--dur, 12s) linear infinite;
}
@keyframes pv-sparkRise {
    0%   { transform: translate3d(0, 0, 0)             scale(1);    opacity: 0;    }
    5%   { opacity: 1; }
    35%  { transform: translate3d(8px, -35vh, 0)       scale(0.9);  opacity: 0.95; }
    65%  { transform: translate3d(-12px, -70vh, 0)     scale(0.7);  opacity: 0.7;  }
    90%  { transform: translate3d(6px, -100vh, 0)      scale(0.5);  opacity: 0.35; }
    100% { transform: translate3d(0, -110vh, 0)        scale(0.3);  opacity: 0;    }
}
/* 20 chispas distribuidas con duraciones, retrasos y tamaños variados.
   Las duraciones largas (10-16s) hacen que algunas chispas estén siempre visibles
   en la parte ALTA del fondo (sobre el header), no solo abajo. */
.pv-biolink .pv-sparks span:nth-child(1)  { left:  4%; --dur: 14s; animation-delay: -0.5s; }
.pv-biolink .pv-sparks span:nth-child(2)  { left: 12%; --dur: 16s; animation-delay: -3s;   }
.pv-biolink .pv-sparks span:nth-child(3)  { left: 20%; --dur: 11s; animation-delay: -7s;   }
.pv-biolink .pv-sparks span:nth-child(4)  { left: 28%; --dur: 13s; animation-delay: -1s;   }
.pv-biolink .pv-sparks span:nth-child(5)  { left: 36%; --dur: 15s; animation-delay: -9s;   }
.pv-biolink .pv-sparks span:nth-child(6)  { left: 44%; --dur: 12s; animation-delay: -4s;   }
.pv-biolink .pv-sparks span:nth-child(7)  { left: 52%; --dur: 14s; animation-delay: -10s;  }
.pv-biolink .pv-sparks span:nth-child(8)  { left: 60%; --dur: 11s; animation-delay: -2.5s; }
.pv-biolink .pv-sparks span:nth-child(9)  { left: 68%; --dur: 16s; animation-delay: -6s;   }
.pv-biolink .pv-sparks span:nth-child(10) { left: 76%; --dur: 13s; animation-delay: -8.5s; }
.pv-biolink .pv-sparks span:nth-child(11) { left: 84%; --dur: 12s; animation-delay: -1.5s; }
.pv-biolink .pv-sparks span:nth-child(12) { left: 92%; --dur: 15s; animation-delay: -5s;   }
/* Chispas pequeñas (más rápidas, secundarias) */
.pv-biolink .pv-sparks span:nth-child(13) { left:  8%; --dur: 10s; animation-delay: -3.5s; width: 2px; height: 2px; }
.pv-biolink .pv-sparks span:nth-child(14) { left: 24%; --dur: 11s; animation-delay: -8s;   width: 2px; height: 2px; }
.pv-biolink .pv-sparks span:nth-child(15) { left: 40%; --dur:  9s; animation-delay: -2s;   width: 2px; height: 2px; }
.pv-biolink .pv-sparks span:nth-child(16) { left: 56%; --dur: 10s; animation-delay: -6.5s; width: 2px; height: 2px; }
/* Chispas grandes (lentas, brillantes) */
.pv-biolink .pv-sparks span:nth-child(17) { left: 16%; --dur: 17s; animation-delay: -4.5s; width: 4px; height: 4px; }
.pv-biolink .pv-sparks span:nth-child(18) { left: 48%; --dur: 18s; animation-delay: -11s;  width: 4px; height: 4px; }
.pv-biolink .pv-sparks span:nth-child(19) { left: 72%; --dur: 16s; animation-delay: -2.2s; width: 4px; height: 4px; }
.pv-biolink .pv-sparks span:nth-child(20) { left: 88%; --dur: 17s; animation-delay: -7.5s; width: 4px; height: 4px; }


/* ═══════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 18px;
    position: relative;
    z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .topbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0 6px;
}
.pv-biolink .status-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(26, 20, 16, 0.6);
    border: 1px solid rgba(220, 92, 3, 0.35);
    border-radius: 33px; padding: 6px 13px;
    font-size: 12px; color: var(--bone); font-weight: 600;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px var(--shadow-deep);
}
.pv-biolink .status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.9);
    animation: pv-pulseDot 2s ease-in-out infinite;
}
.pv-biolink .status-dot.closed {
    background: var(--ember);
    box-shadow: 0 0 10px var(--ember-bright);
}
@keyframes pv-pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.7; }
}
/* Switch de idioma (estilo iOS) */
.pv-biolink .lang-switch {
    background: rgba(26, 20, 16, 0.7);
    border: 1px solid rgba(220, 92, 3, 0.35);
    border-radius: 33px;
    padding: 3px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px var(--shadow-deep);
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}
.pv-biolink .lang-switch:hover {
    border-color: var(--ember);
    box-shadow: 0 4px 14px var(--shadow-deep), 0 0 12px rgba(220, 92, 3, 0.3);
}
.pv-biolink .lang-switch-track {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 30px;
    padding: 3px;
    overflow: hidden;
}
.pv-biolink .lang-switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(220, 92, 3, 0.55);
    transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
    z-index: 1;
    pointer-events: none;
}
.pv-biolink .lang-switch[aria-checked="true"] .lang-switch-thumb {
    transform: translateX(100%);
}
.pv-biolink .lang-switch-option {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--bone-soft);
    transition: color 0.25s;
    pointer-events: none;
    user-select: none;
}
.pv-biolink .lang-switch-option .lang-flag { font-size: 13px; line-height: 1; }
/* La opción activa la pinta blanca (porque el thumb es brasa) */
.pv-biolink .lang-switch[aria-checked="false"] .lang-switch-es { color: #fff; }
.pv-biolink .lang-switch[aria-checked="true"]  .lang-switch-en { color: #fff; }


/* ═══════════════════════════════════════════════════════════════════
   S-HEAD (encabezado de cada sección)
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .s-head {
    text-align: center;
    margin: 36px 0 18px;
}
.pv-biolink .s-head .s-kicker {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px; font-weight: 700;
    color: var(--ember-bright);
    line-height: 1;
    text-shadow: 0 2px 12px var(--shadow-warm);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pv-biolink .s-head .s-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--bone-soft);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN · HERO
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .sec-hero {
    padding: 26px 0 20px;
    text-align: center;
    position: relative;
}
.pv-biolink .hero-logo {
    position: relative;
    width: 200px; height: 200px;
    margin: 0 auto 22px;
}

/* Logo de marca · rectangular, centrado */
.pv-biolink .hero-logo--brand {
    width: 100%;
    height: auto;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo imagen · blanco transparente, centrado */
.pv-biolink .brand-logo {
    display: block;
    margin: 0 auto;
    width: 280px;
    max-width: 88%;
    height: auto;
    object-fit: contain;
    animation: pv-logoGlow 3s ease-in-out infinite;
}
@keyframes pv-logoGlow {
    0%, 100% { filter: drop-shadow(0 0 14px rgba(220, 92, 3, 0.45)) drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
    50%      { filter: drop-shadow(0 0 28px rgba(255, 122, 26, 0.7)) drop-shadow(0 4px 20px rgba(0,0,0,0.5)); }
}
.pv-biolink .hero-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; letter-spacing: 4px;
    color: var(--ember-bright);
    text-transform: uppercase; font-weight: 700;
    margin-bottom: 14px;
}
.pv-biolink .hero-label::before { content: '🇦🇷'; font-size: 16px; letter-spacing: 0; }
.pv-biolink .hero-label::after  { content: '🥩'; font-size: 16px; letter-spacing: 0; }
.pv-biolink .hero-tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 28px; font-weight: 400;
    color: var(--bone-soft);
    margin-bottom: 14px;
    line-height: 1.1;
}
.pv-biolink .hero-location {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; letter-spacing: 1px;
    color: var(--bone-soft);
    background: rgba(26, 20, 16, 0.6);
    border: 1px solid rgba(220, 92, 3, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.pv-biolink .hero-location svg {
    width: 13px; height: 13px;
    color: var(--ember-bright);
}


/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN · PESTAÑAS
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .tabs-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 2px 12px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.pv-biolink .tabs-strip::-webkit-scrollbar { display: none; }

.pv-biolink .tab-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(26, 20, 16, 0.7);
    border: 1.5px solid rgba(220, 92, 3, 0.3);
    color: var(--bone-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px var(--shadow-deep);
    white-space: nowrap;
}
.pv-biolink .tab-chip:hover {
    background: rgba(220, 92, 3, 0.15);
    color: var(--bone);
    transform: translateY(-2px);
    border-color: var(--ember);
}
.pv-biolink .tab-chip.active {
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    border-color: var(--ember-bright);
    box-shadow: 0 6px 18px rgba(220, 92, 3, 0.5), 0 0 14px rgba(255, 122, 26, 0.3);
    transform: translateY(-2px);
}
.pv-biolink .tab-chip .emoji { font-size: 15px; }


/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN · CARTA (hoja con preview)
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .book-wrap {
    position: relative;
    margin: 0 auto;
    padding: 14px 10px 20px;
    cursor: pointer;
    max-width: 100%;
}
.pv-biolink .book-wrap:focus { outline: none; }
.pv-biolink .book-wrap:focus-visible .book {
    box-shadow: 0 10px 30px var(--shadow-deep), 0 0 0 3px var(--ember);
}

.pv-biolink .book-stack {
    position: absolute;
    inset: 14px 10px 20px 10px;
    pointer-events: none;
    z-index: 0;
}
.pv-biolink .book-stack-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #efddb4 0%, #d8c189 100%);
    border: 1px solid rgba(168, 120, 70, 0.3);
    border-radius: 10px;
}
.pv-biolink .book-stack-layer.l1 { transform: translate(5px, 6px) rotate(1.2deg);   box-shadow: 0 6px 16px var(--shadow-deep); opacity: 0.85; }
.pv-biolink .book-stack-layer.l2 { transform: translate(-4px, 10px) rotate(-1.5deg); box-shadow: 0 8px 20px var(--shadow-deep); opacity: 0.7; }
.pv-biolink .book-stack-layer.l3 { transform: translate(3px, 14px) rotate(0.7deg);   box-shadow: 0 10px 24px var(--shadow-deep); opacity: 0.55; }

.pv-biolink .book {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.4;
    z-index: 2;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(180, 130, 70, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(120, 70, 30, 0.10) 0%, transparent 50%),
        linear-gradient(135deg, var(--paper) 0%, var(--paper-deep) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(220, 92, 3, 0.18),
        inset 0 0 60px rgba(180, 130, 70, 0.12);
    transition: transform 0.3s;
}
.pv-biolink .book-wrap:hover .book { transform: translateY(-3px); }

.pv-biolink .book-open-hint {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 5;
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 92, 3, 0.5);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: pv-hintBob 2.4s ease-in-out infinite;
}
.pv-biolink .book-open-hint svg { width: 12px; height: 12px; }
@keyframes pv-hintBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

.pv-biolink .page-inner {
    position: absolute;
    inset: 18px;
    display: flex;
    flex-direction: column;
    color: var(--paper-ink);
    min-height: 0;
}
.pv-biolink .page-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(179, 68, 3, 0.25);
    border-radius: 4px;
    pointer-events: none;
}

.pv-biolink .page-kicker {
    font-family: 'Great Vibes', cursive;
    font-size: 26px;
    color: var(--paper-accent);
    text-align: center;
    margin-top: 6px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}
.pv-biolink .page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #5d3a1f;
    text-align: center;
    margin: 4px 0 8px;
    line-height: 1.1;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pv-biolink .page-divider {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.pv-biolink .page-divider .p-line     { width: 32px; height: 1px; background: var(--paper-accent); opacity: 0.55; }
.pv-biolink .page-divider .p-diamond  { width: 6px; height: 6px; background: var(--paper-accent); transform: rotate(45deg); opacity: 0.7; }

.pv-biolink .page-items {
    flex: 1 1 0;
    overflow: hidden;
    padding: 2px 8px;
    font-family: 'Montserrat', sans-serif;
    min-height: 0;
}
.pv-biolink .page-item {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(179, 68, 3, 0.28);
}
.pv-biolink .page-item:last-child { border-bottom: none; }
.pv-biolink .page-item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5d3a1f;
    flex: 1;
}
.pv-biolink .page-item-desc {
    display: block;
    font-size: 10.5px;
    color: #8a6a4a;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.35;
}
.pv-biolink .page-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--paper-accent);
    white-space: nowrap;
}
.pv-biolink .page-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(179, 68, 3, 0.55);
    text-align: center;
    padding-top: 8px;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   POPUP · CARTA COMPLETA
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: flex-start;          /* arranca arriba para evitar que el header quede oculto */
    justify-content: center;
    padding: 40px 20px 20px;          /* padding-top mayor: corrige el bug de solape */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;                 /* scroll seguro si la pantalla es muy baja */
}
.pv-biolink .menu-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.pv-biolink .menu-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 5, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.pv-biolink .menu-modal-panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 60px);   /* deja respiración arriba y abajo */
    background:
        radial-gradient(ellipse at 30% 20%, rgba(180, 130, 70, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(120, 70, 30, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--paper) 0%, var(--paper-deep) 100%);
    border-radius: 18px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(179, 68, 3, 0.3),
        0 0 40px rgba(220, 92, 3, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pv-biolink .menu-modal.open .menu-modal-panel {
    transform: translateY(0) scale(1);
}

.pv-biolink .menu-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px 14px;
    border-bottom: 1px solid rgba(179, 68, 3, 0.22);
    flex-shrink: 0;
    background: rgba(245, 233, 207, 0.6);
}
.pv-biolink .menu-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #5d3a1f;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pv-biolink .menu-modal-title .emoji {
    font-size: 26px;
    filter: drop-shadow(0 2px 4px rgba(179, 68, 3, 0.3));
}
.pv-biolink .menu-modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(179, 68, 3, 0.12);
    border: none;
    color: var(--paper-accent);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.pv-biolink .menu-modal-close:hover {
    background: var(--ember);
    color: #fff;
    transform: rotate(90deg);
}


/* ═══════════════════════════════════════════════════════════════════
   SUB-PESTAÑAS DE VINOS (dentro del modal)
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .wine-subtabs {
    display: none;                  /* oculto por defecto, JS lo activa solo en Vinos */
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 12px 18px;
    background: rgba(245, 233, 207, 0.5);
    border-bottom: 1px dashed rgba(179, 68, 3, 0.22);
    flex-shrink: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.pv-biolink .wine-subtabs.active { display: flex; }
.pv-biolink .wine-subtabs::-webkit-scrollbar { display: none; }
.pv-biolink .wine-subtab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(179, 68, 3, 0.25);
    color: #5d3a1f;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pv-biolink .wine-subtab:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--ember);
}
.pv-biolink .wine-subtab.active {
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    border-color: var(--ember-deep);
    box-shadow: 0 3px 10px rgba(220, 92, 3, 0.4);
}
.pv-biolink .wine-subtab .emoji { font-size: 13px; }


/* ═══════════════════════════════════════════════════════════════════
   FILTROS DE ALÉRGENOS · PLEGABLE
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .allergen-filters {
    border-bottom: 1px dashed rgba(179, 68, 3, 0.22);
    flex-shrink: 0;
    background: rgba(245, 233, 207, 0.4);
}
.pv-biolink .allergen-filters-toggle {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    color: var(--paper-ink);
    transition: background 0.2s;
}
.pv-biolink .allergen-filters-toggle:hover {
    background: rgba(179, 68, 3, 0.05);
}
.pv-biolink .allergen-filters-label {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--paper-accent);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.02em;
    line-height: 1;
}
.pv-biolink .allergen-filters-label svg {
    width: 16px; height: 16px;
    color: var(--paper-accent);
}
.pv-biolink .allergen-filters-count {
    background: var(--ember);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    line-height: 1.4;
    display: none;
}
.pv-biolink .allergen-filters-count.visible { display: inline-block; }
.pv-biolink .allergen-filters-chevron {
    width: 18px; height: 18px;
    color: var(--paper-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.pv-biolink .allergen-filters-toggle[aria-expanded="true"] .allergen-filters-chevron {
    transform: rotate(180deg);
}

.pv-biolink .allergen-filters-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.pv-biolink .allergen-filters-body.open {
    max-height: 240px;              /* suficiente para todos los chips */
}
.pv-biolink .allergen-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 20px 14px;
}
.pv-biolink .allergen-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(179, 68, 3, 0.22);
    color: #5d3a1f;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.pv-biolink .allergen-chip:hover {
    border-color: var(--ember);
    background: rgba(255, 255, 255, 0.8);
}
.pv-biolink .allergen-chip.active {
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    border-color: var(--ember-deep);
    box-shadow: 0 3px 10px rgba(220, 92, 3, 0.4);
}
.pv-biolink .allergen-chip .ic { font-size: 12px; }
.pv-biolink .allergen-reset {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: transparent;
    border: 1.5px dashed rgba(179, 68, 3, 0.32);
    color: #8a6a4a;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
}
.pv-biolink .allergen-reset:hover {
    border-color: var(--ember);
    color: var(--ember-deep);
}
.pv-biolink .allergen-reset.hidden { display: none; }


/* ═══════════════════════════════════════════════════════════════════
   CUERPO DEL MODAL
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .menu-modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 24px;
    color: var(--paper-ink);
    scrollbar-width: thin;
    scrollbar-color: rgba(179, 68, 3, 0.35) transparent;
    -webkit-overflow-scrolling: touch;
}
.pv-biolink .menu-modal-body::-webkit-scrollbar { width: 6px; }
.pv-biolink .menu-modal-body::-webkit-scrollbar-thumb {
    background: rgba(179, 68, 3, 0.35);
    border-radius: 3px;
}

.pv-biolink .menu-section { margin-bottom: 24px; }
.pv-biolink .menu-section:last-child { margin-bottom: 0; }
.pv-biolink .menu-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--paper-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(179, 68, 3, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}
.pv-biolink .menu-section-title::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--paper-accent);
    transform: rotate(45deg);
    opacity: 0.6;
}
.pv-biolink .menu-section-empty {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    color: #8a6a4a;
    text-align: center;
    padding: 14px 0;
    opacity: 0.7;
}

/* ── GUARNICIÓN BLOCK ── */
.pv-biolink .garnish-block {
    margin: 8px 0 4px;
    border-radius: 10px;
    border: 1px solid rgba(220, 92, 3, 0.25);
    background: rgba(220, 92, 3, 0.07);
    padding: 10px 13px;
}
.pv-biolink .garnish-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.pv-biolink .garnish-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #dc5c03;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pv-biolink .garnish-title svg {
    width: 14px; height: 14px;
    stroke: #dc5c03;
    flex-shrink: 0;
}
.pv-biolink .garnish-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #dc5c03;
}
.pv-biolink .garnish-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pv-biolink .garnish-pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #b34403;
    background: rgba(220, 92, 3, 0.10);
    border: 0.5px solid rgba(220, 92, 3, 0.30);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}
.pv-biolink .page-item-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 5px;
}
.pv-biolink .page-item-allergen-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
    background: rgba(179, 68, 3, 0.1);
    color: #8a6a4a;
    border: 1px solid rgba(179, 68, 3, 0.18);
    white-space: nowrap;
}
.pv-biolink .menu-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #8a6a4a;
}
.pv-biolink .menu-no-results-icon { font-size: 48px; opacity: 0.6; margin-bottom: 10px; }
.pv-biolink .menu-no-results-text {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    color: var(--paper-accent);
    font-weight: 400;
    line-height: 1;
}
.pv-biolink .menu-no-results-sub {
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════════
   PAGINADOR DEL MODAL
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .menu-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid rgba(179, 68, 3, 0.22);
    background: rgba(245, 233, 207, 0.6);
    flex-shrink: 0;
}
.pv-biolink .menu-pager-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(179, 68, 3, 0.3);
    color: #5d3a1f;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    max-width: 38%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pv-biolink .menu-pager-btn:hover {
    background: var(--ember);
    color: #fff;
    border-color: var(--ember-deep);
}
.pv-biolink .menu-pager-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.pv-biolink .menu-pager-current {
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
    color: var(--paper-accent);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pv-biolink .menu-pager-current .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    color: #8a6a4a;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Scroll lock */
.pv-biolink.modal-open { overflow: hidden; }
body.pv-modal-open { overflow: hidden; }


/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN · NOS ENCUENTRAS (mapa + horario)
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
}
.pv-biolink .map-card {
    background: rgba(26, 20, 16, 0.85);
    border: 1px solid rgba(220, 92, 3, 0.35);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-deep);
    position: relative;
    min-height: 240px;
    display: flex; flex-direction: column;
}
.pv-biolink .map-card iframe {
    width: 100%;
    flex: 1;
    min-height: 200px;
    border: 0;
    display: block;
    filter: invert(0.85) hue-rotate(180deg) saturate(0.5);  /* mapa modo oscuro */
}
.pv-biolink .map-footer {
    padding: 10px 14px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px;
    background: rgba(26, 20, 16, 0.95);
    border-top: 1px solid rgba(220, 92, 3, 0.25);
}
.pv-biolink .map-footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--bone);
    font-weight: 700;
    line-height: 1.3;
}
.pv-biolink .map-footer-text span {
    display: block;
    font-size: 10px;
    color: var(--bone-soft);
    font-weight: 500;
    margin-top: 2px;
}
.pv-biolink .map-cta {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 3px 10px rgba(220, 92, 3, 0.4);
}
.pv-biolink .map-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 14px rgba(220, 92, 3, 0.55);
}
.pv-biolink .map-cta svg { width: 11px; height: 11px; }

.pv-biolink .hours-card {
    background: rgba(26, 20, 16, 0.85);
    border: 1px solid rgba(220, 92, 3, 0.35);
    border-radius: 20px;
    padding: 20px 16px;
    box-shadow: 0 8px 24px var(--shadow-deep);
    display: flex; flex-direction: column;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(8px);
}
.pv-biolink .hours-title {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--ember-bright);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1;
}
.pv-biolink .hours-big {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--bone);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 400;
}
.pv-biolink .hours-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--bone-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.pv-biolink .hours-separator {
    width: 30px; height: 1px;
    background: var(--ember);
    margin: 12px auto;
    opacity: 0.6;
}
.pv-biolink .hours-note {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    color: var(--ember-glow);
    margin-top: 8px;
    font-weight: 400;
}


/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN · CONECTA (CTAs)
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .cta-btn {
    display: flex; align-items: center; justify-content: flex-start; gap: 14px;
    width: 100%; padding: 15px 18px;
    border-radius: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s;
    border: 1px solid rgba(220, 92, 3, 0.25);
    cursor: pointer;
    margin-bottom: 10px;
    background: rgba(26, 20, 16, 0.85);
    color: var(--bone);
    box-shadow: 0 6px 18px var(--shadow-deep);
    backdrop-filter: blur(8px);
}
.pv-biolink .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--shadow-deep), 0 0 14px rgba(220, 92, 3, 0.25);
    border-color: var(--ember);
}
.pv-biolink .cta-icon-wrap {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pv-biolink .cta-icon-wrap svg { width: 22px; height: 22px; }
.pv-biolink .cta-text { flex: 1; text-align: left; }
.pv-biolink .cta-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--bone-soft);
    margin-top: 1px;
    letter-spacing: 0.3px;
}
.pv-biolink .cta-arrow {
    opacity: 0.5;
    transition: transform 0.25s;
    color: var(--bone-soft);
}
.pv-biolink .cta-btn:hover .cta-arrow {
    transform: translateX(4px);
    opacity: 1;
    color: var(--ember-bright);
}

.pv-biolink .btn-call .cta-icon-wrap {
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.25) 0%, rgba(220, 92, 3, 0.15) 100%);
    border: 1px solid rgba(220, 92, 3, 0.4);
}
.pv-biolink .btn-instagram .cta-icon-wrap {
    background: linear-gradient(135deg, #FEDA75, #F58529, #DD2A7B, #8134AF, #515BD4);
}
.pv-biolink .btn-facebook .cta-icon-wrap {
    background: #1877F2;
}


/* ═══════════════════════════════════════════════════════════════════
   SECCIÓN · RESEÑAS (Google)
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .reviews-slider {
    position: relative;
    padding: 10px 0;
}
.pv-biolink .reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 6px 2px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.pv-biolink .reviews-track::-webkit-scrollbar { display: none; }
.pv-biolink .review-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    background: rgba(26, 20, 16, 0.85);
    border-radius: 22px;
    padding: 20px 20px 18px;
    box-shadow: 0 8px 24px var(--shadow-deep);
    border: 1px solid rgba(220, 92, 3, 0.3);
    position: relative;
    min-height: 200px;
    display: flex; flex-direction: column;
    backdrop-filter: blur(10px);
    /* Las reseñas usan Roboto (fuente original de Google) */
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.pv-biolink .review-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
}
.pv-biolink .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(220, 92, 3, 0.4);
}
.pv-biolink .review-meta { flex: 1; min-width: 0; }
.pv-biolink .review-name {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--bone);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.1px;
}
.pv-biolink .review-date {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: var(--bone-soft);
    font-weight: 400;
    margin-top: 1px;
    letter-spacing: 0.2px;
}
.pv-biolink .review-stars {
    display: flex; gap: 1px;
    margin-bottom: 10px;
    color: #fbbc04;                          /* amarillo Google original */
}
.pv-biolink .review-stars svg { width: 14px; height: 14px; }
.pv-biolink .review-stars svg.empty { opacity: 0.25; }
.pv-biolink .review-quote {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: var(--bone);
    line-height: 1.5;
    flex: 1;
    position: relative;
    padding-left: 0;                          /* sin sangrado, Google no lo usa */
    font-weight: 400;
    letter-spacing: 0.1px;
}
.pv-biolink .review-quote::before {
    content: none;                            /* fuera la comilla decorativa Great Vibes */
}
.pv-biolink .review-footer {
    margin-top: 12px;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    color: var(--bone-soft);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pv-biolink .review-footer .gicon {
    width: 12px; height: 12px;
    display: inline-block;
}
.pv-biolink .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}
.pv-biolink .review-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(220, 92, 3, 0.35);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
}
.pv-biolink .review-dot.active {
    background: var(--ember);
    width: 18px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(220, 92, 3, 0.6);
}
.pv-biolink .reviews-cta {
    margin-top: 14px;
    text-align: center;
}
.pv-biolink .reviews-cta a {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(26, 20, 16, 0.7);
    color: var(--bone);
    padding: 9px 18px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 92, 3, 0.35);
    transition: all 0.2s;
}
.pv-biolink .reviews-cta a:hover {
    background: rgba(220, 92, 3, 0.2);
    border-color: var(--ember);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 92, 3, 0.3);
    color: #fff;
}
.pv-biolink .reviews-cta svg { width: 14px; height: 14px; color: var(--ember-bright); }


/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .sec-footer {
    text-align: center;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px dashed rgba(220, 92, 3, 0.35);
}
.pv-biolink .footer-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--ember-bright);
    margin-bottom: 4px;
    line-height: 1;
    font-weight: 400;
    text-shadow: 0 0 14px rgba(220, 92, 3, 0.4);
}
.pv-biolink .footer-text {
    color: var(--bone-soft);
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}
.pv-biolink .footer-text a {
    color: var(--ember-bright);
    font-weight: 400;
}
.pv-biolink .footer-logos {
    display: flex;
    flex-direction: column;          /* apilados en vertical */
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    margin-bottom: 14px;
}
.pv-biolink .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.25s, transform 0.25s;
}
.pv-biolink .footer-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}
/* LinksCard primero (más grande) */
.pv-biolink .footer-logo-linkscard img {
    height: 56px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}
/* 360ºStark debajo (algo más pequeño, secundario) */
.pv-biolink .footer-logo-stark img {
    height: 38px;
    width: auto;
    max-width: 160px;
    display: block;
    object-fit: contain;
}
.pv-biolink .powered-by {
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(201, 191, 169, 0.55);
    font-weight: 500;
}
.pv-biolink .powered-by a {
    color: var(--ember);
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════
   FLOATING BAR · COMPARTIR + QR
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink .share-fab {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8888;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(26, 20, 16, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 40px;
    padding: 6px;
    box-shadow: 0 10px 30px var(--shadow-deep), 0 0 24px rgba(220, 92, 3, 0.2);
    cursor: pointer;
    opacity: 0.78;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    max-width: calc(100% - 30px);
    border: 1px solid rgba(220, 92, 3, 0.35);
    font-family: 'Montserrat', sans-serif;
}
.pv-biolink .share-fab:hover,
.pv-biolink .share-fab.active {
    opacity: 1;
    background: rgba(26, 20, 16, 0.92);
    box-shadow: 0 14px 40px var(--shadow-deep), 0 0 28px rgba(220, 92, 3, 0.45);
    border-color: var(--ember);
}
.pv-biolink .share-fab.active { transform: translateX(-50%) translateY(-2px); }
.pv-biolink .share-fab-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px 9px 14px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: background 0.25s;
    box-shadow: 0 4px 14px rgba(220, 92, 3, 0.55);
    white-space: nowrap;
}
.pv-biolink .share-fab:hover .share-fab-inner,
.pv-biolink .share-fab.active .share-fab-inner {
    background: linear-gradient(135deg, var(--ember-bright) 0%, var(--ember) 100%);
}
.pv-biolink .curly-arrow {
    width: 34px; height: 34px;
    flex-shrink: 0;
    color: #fff;
    animation: pv-arrowBob 2.4s ease-in-out infinite;
}
@keyframes pv-arrowBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-3px) rotate(-6deg); }
}
.pv-biolink .share-fab-qr-hint {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    font-weight: 400;
    color: var(--ember-bright);
    padding: 0 12px 0 6px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: opacity 0.3s, transform 0.3s;
}
.pv-biolink .share-fab-qr-hint svg { width: 16px; height: 16px; opacity: 0.8; }
.pv-biolink .share-fab.active .share-fab-qr-hint {
    opacity: 0;
    transform: translateX(-8px);
}

.pv-biolink .qr-card {
    position: fixed;
    bottom: 82px;
    left: 50%;
    z-index: 8887;
    background: var(--paper);
    border-radius: 22px;
    padding: 18px 16px 14px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(220, 92, 3, 0.3);
    border: 1px solid rgba(220, 92, 3, 0.4);
    width: 180px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translateX(-50%) translateY(20px) scale(0.85);
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.pv-biolink .qr-card.show {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scale(1);
}
.pv-biolink .qr-card::before {
    content: '';
    position: absolute;
    left: 50%; bottom: -8px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: var(--paper);
    border-right: 1px solid rgba(220, 92, 3, 0.4);
    border-bottom: 1px solid rgba(220, 92, 3, 0.4);
    border-radius: 2px;
}
.pv-biolink .qr-card-title {
    font-family: 'Great Vibes', cursive;
    font-size: 26px;
    font-weight: 400;
    color: var(--ember-deep);
    line-height: 1;
    margin-bottom: 10px;
}
.pv-biolink .qr-card-canvas-wrap {
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px dashed rgba(179, 68, 3, 0.3);
}
.pv-biolink .qr-card-canvas-wrap img,
.pv-biolink .qr-card canvas {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 4px;
    object-fit: contain;
}
.pv-biolink .qr-card-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #8a6a4a;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.3;
}
.pv-biolink .qr-card-close {
    position: absolute;
    top: 8px; right: 8px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(179, 68, 3, 0.15);
    border: none;
    color: var(--ember-deep);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: background 0.2s;
    padding: 0;
}
.pv-biolink .qr-card-close:hover {
    background: var(--ember);
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════
   IDIOMA · solo el activo se ve
   ═══════════════════════════════════════════════════════════════════ */
.pv-biolink [data-lang] { display: none; }
.pv-biolink [data-lang].active { display: inline; }


/* ═══════════════════════════════════════════════════════════════════
   MOBILE · ajustes del modal
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 519px) {
    .pv-biolink .menu-modal {
        padding: 30px 10px 12px;       /* mantener cierto padding-top en móvil para el bug */
    }
    .pv-biolink .menu-modal-panel {
        max-height: calc(100vh - 42px);
        border-radius: 14px;
    }
    .pv-biolink .menu-modal-header { padding: 14px 16px 12px; }
    .pv-biolink .menu-modal-title  { font-size: 18px; }
    .pv-biolink .menu-modal-body   { padding: 14px 18px; }
    .pv-biolink .menu-section-title { font-size: 12px; }
    .pv-biolink .allergen-filters-toggle { padding: 10px 16px; }
    .pv-biolink .allergen-chips    { padding: 0 16px 12px; }
    .pv-biolink .wine-subtabs      { padding: 10px 14px; }
    .pv-biolink .menu-modal-footer { padding: 8px 10px; }
    .pv-biolink .menu-pager-btn    { font-size: 10.5px; padding: 6px 9px; max-width: 35%; }
    .pv-biolink .menu-pager-current { font-size: 20px; }
    .pv-biolink .menu-pager-current .label { font-size: 8px; letter-spacing: 1.5px; }
}
