/* Preloader - экран загрузки */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #444444;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    padding: 20px;
}

.preloader-progress {
    width: 280px;
    max-width: 80vw;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #E9AE67, #c4894a);
    border-radius: 10px;
    transition: width 0.1s ease;
}

.preloader-text {
    margin-top: 15px;
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .preloader-progress {
        width: 220px;
        height: 5px;
    }
    
    .preloader-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .preloader-progress {
        width: 180px;
    }
    
    .preloader-text {
        font-size: 11px;
    }
}