/* ===========================================
   ШАПКА САЙТА (HEADER)
   =========================================== */

.header {
    background-color: var(--color-section-bg);
    padding: 12px 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.header__logo-image {
    width: 226px;
    height: 35px;
    background-image: var(--image-logo);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.header__logo-text {
    color: var(--color-text-white);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 200px;
    white-space: nowrap;
}

.header__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-white);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

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



.header__location-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header__location-text {
    font-size: 16px;
    font-weight: 600;
}


.header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-white);
}

.header__phone-icon {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.header__phone-number {
    color: var(--color-text-white);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header__phone-number:hover {
    color: var(--color-phone-hover);
}

.header__phone-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}

