/**
 * Currency Switcher Styles
 */

.lsc-currency-switcher {
    display: inline-block;
    margin: 0 8px;
}

.lsc-currency-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}

.lsc-currency-select:hover,
.lsc-currency-select:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.lsc-price-converted {
    display: inline-block;
    margin-left: 4px;
}

.lsc-currency-toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #0f0f0f;
    border: 1px solid var(--ls-light-primary, #00E5FF);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 999999;
    font-size: 13px;
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.lsc-currency-toast.is-visible {
    opacity: 1;
}
