/* Экран загрузки SODA */
.soda-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #230014; /* Резервный фон */
    background-image: url(../images/soda-texture.png);
    background-size: 4px;
    background-position: center;
    background-repeat: repeat;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.soda-loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.soda-loading-content {
    text-align: center;
}

.soda-loading-gif {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.soda-loading-overlay {
    animation: fadeIn 0.3s ease-in;
}

/* Скрытие скроллбара при показе экрана загрузки */
body.soda-loading-active {
    overflow: hidden;
}

/* Адаптивность */
@media (max-width: 768px) {
    .soda-loading-gif {
        max-width: 150px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .soda-loading-gif {
        max-width: 120px;
        max-height: 120px;
    }
} 