.header {
    background: #ffffff;
    padding: 12px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-bottom: 1px solid #ae634c;
    position: relative;
    z-index: 100;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header__logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #ae634c;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.header__logo-text span {
    font-weight: 300;
    color: #ae634c;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== ИКОНКИ СОЦСЕТЕЙ ===== */
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4fa;
    transition: background 0.25s ease, transform 0.2s ease;
    overflow: hidden;
}

.social-icons a:hover {
    background: #dce3ed;
    transform: scale(1.05);
}

.social-icons img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

/* ===== КНОПКИ ===== */
.btn-phone {
    background: #f5edea;
    color: #ae634c;
    border-color: #d2c1bc;
}

.btn-phone:hover {
    background: #f5edea;
    color: #ffffff;
    transform: scale(1.02);
}

.btn-phone svg {
    fill: currentColor;
}

.btn-reviews {
    background: #f5edea;
    color: #ae634c;
    border-color: #d2c1bc;
}

.btn-reviews:hover {
    background: #f5edea;
    color: #ffffff;
    transform: scale(1.02);
}

.btn-reviews svg {
    fill: currentColor;
}