/* =====================================================================
   Onex Shop — topbar.css
   ===================================================================== */

.onex-topbar {
    background: var(--ink);
    color: rgba(247, 245, 241, 0.85);
    font-size: 0.82rem;
}

.onex-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.5rem;
}

.onex-topbar__links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.onex-topbar__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    transition: color 0.25s ease;
}

.onex-topbar__links a:hover { color: var(--yellow-light); }

.onex-topbar__lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(247, 245, 241, 0.85);
}

.gtranslate-container select {
    background: transparent;
    color: inherit;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

@media (max-width: 640px) {
    .onex-topbar__links li:nth-child(2) { display: none; }
}