/**
 * Sticky Fix - Forzar sticky en sidebars
 * ÚLTIMA PRIORIDAD - Se carga después de single-product-styles.css
 */

@media (min-width: 1025px) {

    /* Eliminar overflow de TODOS los ancestros */
    body.single-product,
    body.woocommerce-page,
    #page,
    #content,
    .site,
    .site-content,
    .ast-container,
    main,
    .woocommerce,
    .esaico-single-product-container,
    .esaico-container,
    .esaico-product-content {
        overflow: visible !important;
    }

    /* Sticky en Sidebar Izquierdo */
    .esaico-product-social-sidebar {
        position: sticky !important;
        top: 20px !important;
        height: fit-content !important;
        align-self: start !important;
    }

    /* Sticky en Sidebar Derecho */
    .esaico-sidebar-column {
        position: sticky !important;
        top: 20px !important;
        height: fit-content !important;
        align-self: start !important;
    }
}
