.site-topbar {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    line-height: 1.6;
}

.site-topbar .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 6px 0;
    justify-content: center;
    text-align: center;
}

.site-topbar-item {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.site-topbar-label {
    opacity: 0.7;
}

.site-topbar-value {
    color: inherit;
}

.site-topbar a.site-topbar-value {
    text-decoration: underline;
    color: inherit;
}

.site-topbar a.site-topbar-value:hover {
    color: inherit;
    text-decoration: underline;
}

.site-topbar-values {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.site-topbar-values--mobile {
    display: none;
}

.site-topbar-sep {
    opacity: 0.45;
}

@media (min-width: 769px) {
    .site-topbar-item--desktop-off {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-topbar-inner {
        justify-content: center;
        text-align: center;
        gap: 4px;
        row-gap: 4px;
        padding: 4px 0;
    }

    .site-topbar-item {
        line-height: 1.3;
    }

    .site-topbar-values--desktop {
        display: none;
    }

    .site-topbar-values--mobile {
        display: inline-flex;
    }

    .site-topbar-item--mobile-off {
        display: none;
    }

    .site-topbar {
        transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease, transform 0.25s ease;
        margin: 0;
        overflow: hidden;
        max-height: 120px;
        transform: translateY(0);
        will-change: transform, opacity, max-height;
    }

    .site-topbar.site-topbar--hidden {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        padding-top: 0;
        padding-bottom: 0;
        transform: translateY(-8px);
    }
}