.jcc-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jcc-price {
    font-weight: 700;
}

.jcc-global-switcher {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.jcc-global-select {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 36px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    color: #000;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    min-width: 90px;
    width: auto;
    flex-shrink: 0;
    outline: none;
}

.jcc-select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 14px;
    height: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jcc-select-icon img {
    display: block;
    width: 14px;
    height: 14px;
}

.jcc-currency-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.jcc-currency-picker.is-hidden {
    display: none;
}

.jcc-picker-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.jcc-picker-toggle:hover,
.jcc-picker-toggle:focus {
    border-color: var(--e-global-color-accent);
    outline: none;
}

.jcc-picker-toggle-icon {
    display: block;
    width: 14px;
    height: 14px;
	fill: var(--e-global-color-accent);
    background-color: var(--e-global-color-accent);
    -webkit-mask-image: var(--jcc-arrow-icon);
    mask-image: var(--jcc-arrow-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.jcc-picker-toggle[aria-expanded="true"] .jcc-picker-toggle-icon {
    transform: rotate(180deg);
}

.jcc-picker-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    padding: 8px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 30;
}

.jcc-currency-option {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    text-align: right;
    cursor: pointer;
    font-size: var(--step-0);
    line-height: 1.3;
    color: var(--e-global-color-text);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.jcc-currency-option:hover,
.jcc-currency-option:focus {
    background: #fff;
    color: var(--e-global-color-accent);
    outline: none;
}

.jcc-currency-option.is-active {
    color: var(--e-global-color-accent);
    font-weight: 700;
}