/* Базовые стили шапки */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Уменьшение шапки при скролле */
.site-header.is-scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Высота шапки */
    gap: 15px;
}

/* Колонки: Лево, Центр, Право */
.header-col {
    display: flex;
    align-items: center;
    flex: 1; /* Равномерное распределение */
}

.header-center {
    justify-content: center;
    flex: 2; /* Даем чуть больше места для меню */
}

.header-right {
    justify-content: flex-end;
    gap: 20px;
}

/* ЛОГОТИП */
.site-logo a {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
}

/* НАВИГАЦИЯ (ПК) */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 30px;
}

.nav-list li a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #156641; /* Твой зеленый акцент */
}

/* КОНТАКТЫ (ПК) */
.working-hours {
    text-align: right;
    line-height: 1.2;
}

.wh-title {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    font-weight: 500;
}

.wh-time {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.header-phone-btn {
    background: #111;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-phone-btn:hover {
    background: #156641;
    transform: translateY(-2px);
}

/* МОБИЛЬНЫЕ ЭЛЕМЕНТЫ (по умолчанию скрыты) */
.mobile-menu-toggle, .mobile-nav-info {
    display: none;
}

/* =========================================
   АДАПТИВНОСТЬ (МОБИЛЬНАЯ ВЕРСИЯ)
   ========================================= */
@media (max-width: 1024px) {
    .header-center, .working-hours, .header-phone-btn {
        display: none; /* Скрываем ПК навигацию и контакты */
    }

    .header-col { flex: initial; } /* Сбрасываем колонки */
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none; border: none;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-menu-toggle span {
        width: 25px; height: 2px;
        background: #111;
        transition: 0.3s;
    }

    /* Мобильное меню (выезжает слева или справа) */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 80px 40px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -20px 0 50px rgba(0,0,0,0.1);
    }

    .main-navigation.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-list li a {
        font-size: 20px;
        text-transform: none;
    }

    .mobile-nav-info {
        display: block;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .m-phone {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #111;
        margin-top: 10px;
        text-decoration: none;
    }
}