/* Loading screen styles */
#webp-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    z-index: 99999;
}

#webp-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.webp-animation {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.loading-active {
    overflow: hidden;
}