/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
#sytyi-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.4s ease;
    margin: 0;
    padding: 0;
}

.preloader-container {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

/* Контейнер для логотипа */
.logo-container-horizontal {
    position: relative;
    width: 280px;
    max-width: 100%;
    margin: 0 auto 10px;
    overflow: hidden;
    display: inline-block;
}

.preloader-logo {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.logo-fill-horizontal {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #feda1c, #e0be0b);
    z-index: 2;
    transition: width 0.1s linear;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.progress-text {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .logo-container-horizontal {
        width: 200px;
    }
    
    .progress-text {
        font-size: 14px;
    }
}