/* ============================================================
   VensterStyling - Scroll animaties (sitebreed) v1
============================================================ */

.vs-anim {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.vs-anim--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header en footer nooit animeren */
.elementor-location-header .vs-anim,
.elementor-location-footer .vs-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Product galerij geen animatie */
.woocommerce-product-gallery__wrapper .vs-anim,
.woocommerce-product-gallery .vs-anim,
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}
