
.site-header {
    background: #fff;
    border-bottom: 1px solid #e7ecf3;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.header-row {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    flex: 0 0 auto;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 10px;
    color: #172033;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.main-nav a:hover {
    background: #fff0ec;
    color: #ff5a36;
    transform: translateY(-1px);
}

.main-nav a.active {
    background: #ff5a36;
    color: #fff;
}

@media (max-width: 760px) {
    .header-row {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
        width: 100%;
    }

    .main-nav a {
        padding: 8px 11px;
        min-height: 38px;
    }
}
