/* ============================================================
   Widget de reseñas en escritorio (dentro del cinema-hero, a la derecha)
   ============================================================ */
.cinema-reviews {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(60%);
    width: 260px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    color: #f2ede3;
    text-decoration: none;
    z-index: 5;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.cinema-reviews:hover {
    transform: translateY(58%) scale(1.03);
    border-color: #fbbf24;
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.25);
}
.cinema-reviews-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fbbf24;
    font-weight: 700;
}
.cinema-reviews-logo {
    background: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.cinema-reviews-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    margin-top: 2px;
}
.cinema-reviews-rating strong {
    color: #fbbf24;
    font-size: 1.6rem;
    font-weight: 700;
}
.cinema-reviews-stars {
    letter-spacing: 1px;
    font-size: 1rem;
    line-height: 1;
}
.cinema-reviews-stars .s-full  { color: #fbbf24; }
.cinema-reviews-stars .s-empty { color: rgba(255, 255, 255, 0.2); }
.cinema-reviews-stars .s-half {
    background: linear-gradient(90deg, #fbbf24 50%, rgba(255,255,255,0.2) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cinema-reviews-cta {
    color: #f2ede3;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.3;
}

/* En móvil, ocultamos el widget escritorio */
@media (max-width: 1200px) {
    .cinema-reviews { display: none; }
}

/* ============================================================
   Widget de reseñas en móvil (dentro de .home-widgets-mobile)
   ============================================================ */
.hwm-reviews {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #f2ede3;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
}
.hwm-reviews:hover {
    border-color: #fbbf24;
    transform: translateY(-2px);
}
.hwm-google-logo {
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}
.hwm-reviews .hwm-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hwm-reviews-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    margin: 2px 0;
}
.hwm-reviews-rating strong {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
}
.hwm-reviews-stars {
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.hwm-reviews-stars .s-full  { color: #fbbf24; }
.hwm-reviews-stars .s-empty { color: rgba(255, 255, 255, 0.2); }
.hwm-reviews-stars .s-half {
    background: linear-gradient(90deg, #fbbf24 50%, rgba(255,255,255,0.2) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hwm-reviews .hwm-cta {
    color: #f2ede3;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Ocultar los widgets laterales originales del hero en escritorio */
.cinema-proximo, .cinema-porra, .cinema-reviews {
    display: none !important;
}

/* Mostrar los widgets flotantes inferiores TAMBIÉN en escritorio */
@media (min-width: 1201px) {
    .home-widgets-mobile {
        display: flex !important;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0.75rem 1rem 0;
        background: transparent;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: calc(var(--footer-h, 90px) + 10px);
        z-index: 11;
        pointer-events: none;
        max-width: 90vw;
    }
    .home-widgets-mobile .hwm-card {
        pointer-events: auto;
    }
}
