.stickyHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
    background-color: #fff;
    border-top: 2px solid #3d4f6b;
    box-shadow: 0 4px 24px rgba(47, 46, 43, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.stickyHeader--visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .stickyHeader {
        transition: none;
    }
}

.stickyHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 40px;
}

.stickyHeader__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
    text-decoration: none;
}

.stickyHeader__logoTitle {
    margin: 0;
    line-height: 1.1;
}

.stickyHeader__logoSub {
    text-transform: lowercase;
    font-weight: 400;
}

.stickyHeader__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-left: auto;
}

.stickyHeader__link {
    text-decoration: none;
    white-space: nowrap;
}

.stickyHeader__link:hover {
    color: #52504a;
}

.stickyHeader__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.stickyHeader__phone {
    text-decoration: none;
    white-space: nowrap;
}

.stickyHeader__burger {
    display: none;
    background-color: #f8f6f3;
    width: 48px;
    height: 48px;
    padding: 12px;
    flex-shrink: 0;
}

.stickyHeader__burger img {
    filter: brightness(0);
}

@media (max-width: 1450px) {
    .stickyHeader__inner {
        padding: 12px 20px;
    }

    .stickyHeader__nav,
    .stickyHeader__actions {
        display: none;
    }

    .stickyHeader__burger {
        display: flex;
        margin-left: auto;
    }
}

@media (max-width: 550px) {
    .stickyHeader__inner {
        padding: 12px 16px;
        gap: 12px;
    }

    .stickyHeader__burger {
        width: 40px;
        height: 40px;
    }
}
