/* Estilos para el Bloque Sección Parallax */
.wp-block-theme-dtf-store-parallax-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-position: center 0px;
    background-repeat: no-repeat !important;
    box-sizing: border-box;
}

/* Efecto Parallax mediante CSS puro */
.wp-block-theme-dtf-store-parallax-section.parallax-method-css {
    background-attachment: fixed !important;
}

/* Contenedor del Overlay para mejorar legibilidad */
.parallax-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

/* Contenedor del contenido interno */
.parallax-section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Estilos de preview en el editor Gutenberg */
.parallax-section-editor-preview {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px dashed #ccc;
    box-sizing: border-box;
}
