/* ========================================
   GLOBAL SCROLL OPTIMIZATION
   ======================================== */

/* Optimizar scroll en todo el sitio */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Optimizar scroll en contenedores */
.modal-content,
.main-content,
.page-section {
    -webkit-overflow-scrolling: touch;
}

/* Tables should scroll normally - removed optimization that blocks scroll */

/* Reducir repaint en scroll - DISABLED to allow scroll */
/* Contain property was blocking scroll events on tables */
/*
.producto-card,
.stat-card,
.categoria-card,
.action-btn {
    contain: layout style paint;
}
*/

/* Optimizar imágenes durante scroll */
img {
    will-change: auto;
    transform: translateZ(0);
}

/* Mejorar rendimiento de animaciones */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}