.wc-currency-switcher-pro {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}
.wc-currency-switcher-select {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    min-width: 80px;
}
.wc-currency-switcher-pro-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-Price-amount, .price, .amount {
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.wc-currency-switcher-pro.hidden {
    display: none;
}
.woocommerce-Price-amount.updating, .price.updating, .amount.updating {
    opacity: 0.6;
    transform: scale(0.98);
}
@media (max-width: 768px) {
    .wc-currency-switcher-pro {
        margin: 5px 0;
        width: 100%;
    }
    .wc-currency-switcher-select {
        width: 100%;
        box-sizing: border-box;
    }
    .wc-currency-switcher-pro-menu {
        display: block;
        text-align: center;
    }
}