.ub-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ub-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.ub-logo a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
}

.ub-nav {
    display: flex;
    gap: 24px;
}

.ub-nav a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.ub-nav a:hover {
    color: #c11f29;
}

.ub-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: #c11f29;
}

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

.ub-lang a {
    font-size: 14px;
    margin: 0 4px;
    text-decoration: none;
    color: #666;
}

.ub-lang a.active {
    color: #c11f29;
    font-weight: 600;
}

.ub-login {
    padding: 6px 14px;
    border: 1px solid #c11f29;
    color: #c11f29;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.ub-login:hover {
    background: #c11f29;
    color: #fff;
}

/* Бургер */
.ub-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.ub-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    margin: 5px 0;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .ub-nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none;
        border-top: 1px solid #eee;
    }

    .ub-nav a {
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
    }

    .ub-nav.active {
        display: flex;
    }

    .ub-burger {
        display: block;
    }
}
