/* =============================================
   Producto Single — Sticky sidebar + galería
   ============================================= */

/* Galería de imágenes (columna izquierda) */
.rw-producto-galeria {
    display: flex;
    flex-direction: column;
}

.rw-producto-galeria__item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Sticky: columna derecha de Elementor */
.rw-producto-sticky > .elementor-widget-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

/* ---- Tipo loop ---- */
.rw-producto-tipo-loop {
    display: flex;
    flex-direction: column;
}

.rw-producto-tipo-loop__item {
    padding: 12px 0;
}

.rw-producto-tipo-loop__link {
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.rw-producto-tipo-loop__link:hover {
    color: #ABB4BC;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .rw-producto-galeria__item {
        height: 60vw;
    }

    .rw-producto-sticky > .elementor-widget-wrap {
        position: static;
        height: auto;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .rw-producto-galeria__item {
        height: 56vw;
    }
}
