/* --- VARIABLES GLOBALES --- */
:root {
    --tudata-overlay-bg: rgba(0, 0, 0, 0.75);
    --tudata-transition: all 0.3s ease;
    --tudata-z-index: 999999;
}

/* --- ESTILOS DEL OVERLAY (COMÚN) --- */
.tudata-component-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tudata-overlay-bg);
    cursor: pointer;
    z-index: -1;
}

/* Bloqueo de scroll en el body cuando hay un componente abierto */
body.tudata-component-open,
body.tudata-modal-productos-open {
    overflow: hidden;
}

/* Contenedor base para cualquier componente tipo popup/modal */
.tudata-component-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--tudata-z-index);
    align-items: center;
    justify-content: center;
}

.tudata-component-wrapper.is-active {
    display: flex;
}

