/**
 * PDP: columna de detalles sticky (solo en ficha de producto).
 * Cargado por el módulo cuando el showcase está activo.
 * Sticky requiere que ningún ancestro tenga overflow distinto de visible.
 */
body#product #main-page-content,
body#product #wrapper,
body#product #inner-wrapper,
body#product .row,
body#product #content-wrapper,
body#product #main,
body#product #main-product-wrapper.product-container,
body#product .product-info-row {
    overflow: visible !important;
}

@media (min-width: 768px) {
    body#product .product-info-row {
        align-items: flex-start;
    }
    body#product .col-product-info {
        position: sticky !important;
        top: 4rem; /* debajo del header sticky; ajustar si hace falta */
        align-self: flex-start;
    }
}
