
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #0E2B42;
    box-shadow: 0 2px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo img {
    height: 50px;
}

/* --- NAVIGATION --- */
.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Isabella Sans", sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s;
}
.header-nav a:hover {
    opacity: 0.7;
}

.header-nav img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* --- RIGHT INFO --- */
.header-info {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    font-family: "Isabella Sans", sans-serif;
    font-size: 17px;
}

.header-address {
    opacity: 0.85;
}

.header-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.header-phone:hover {
    color: #CBBBA2;
}

/* --- BURGER --- */
.header-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.header-burger img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* --- MOBILE MENU --- */
.header-mobile-menu {
    display: none;
    background: #0E2B42;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.header-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header-mobile-menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
.header-mobile-address {
    color: #CBBBA2;
    font-size: 17px;
    margin-top: 10px;
}
.header-mobile-phone {
    color: #fff;
    font-weight: 600;
}

/* --- ADAPTIVE --- */
@media (max-width: 1200px) {
    .header-nav {
        display: none;
    }
    .header-burger {
        display: block;
    }
}

/* --- Адаптив --- */
@media (max-width: 1200px) {
    .header-nav {
        display: none;
    }
    .header-burger {
        display: block;
    }
}

/* === Мобильная версия === */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }

    .header-logo img {
        height: 44px;
    }

    .header-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .header-address {
        display: none; /* скрываем адрес на мобильном */
    }

    .header-phone {
        font-size: 16px;
        line-height: 1.1;
    }

    .header-burger {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-burger img {
        width: 20px;
        height: 20px;
    }

    .header-mobile-menu {
        display: none;
        background: #0E2B42;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 5px 20px rgba(0,0,0,0.25);
        z-index: 10;
    }

    .header-mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .header-mobile-menu a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .header-mobile-address {
        display: none;
    }
}
