.packman-currency-switch-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 100%;
    margin: 18px 0 28px;
    font-family: inherit;
}

.packman-currency-switch-title {
    color: #bdbdbd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
}

.packman-currency-switch {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(74px, 1fr));
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: #151515;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.packman-currency-option {
    appearance: none;
    min-width: 74px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #8f8f8f;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.packman-currency-option:hover {
    color: #ffffff;
}

.packman-currency-option:focus-visible {
    outline: 2px solid #ff4d00;
    outline-offset: 2px;
}

.packman-currency-option.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff5a00 0%, #a82800 100%);
    box-shadow: 0 6px 18px rgba(255, 76, 0, 0.28);
}

.packman-currency-option:active {
    transform: scale(0.98);
}

.packman-fixed-price {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .packman-currency-switch-wrap {
        margin: 14px 0 22px;
    }

    .packman-currency-option {
        min-width: 68px;
        padding: 9px 15px;
        font-size: 13px;
    }
}
