/* HOEM Currency Switcher Styles */

.hoem-currency-switcher-wrapper {
    display: inline-block;
    position: relative;
    font-family: inherit;
}

.hoem-currency-select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Custom simple dropdown arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 30px;
}

.hoem-currency-select:hover {
    border-color: #999;
}

.hoem-currency-select:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.hoem-cs-watermark {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hoem-cs-watermark:hover {
    opacity: 1;
}
