/* Mazyad Currency Switcher Styles */
.mazyad-currency-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.mazyad-currency-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mazyad-currency-current:hover {
    border-color: #572C1B;
}

.mazyad-flag {
    font-size: 18px;
    line-height: 1;
}

.mazyad-arrow {
    font-size: 10px;
    margin-right: 4px;
}

.mazyad-currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 9999;
    display: none;
    margin-top: 5px;
}

.mazyad-currency-dropdown.active {
    display: block;
}

.mazyad-currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.mazyad-currency-option:last-child {
    border-bottom: none;
}

.mazyad-currency-option:hover {
    background: #f8f9fa;
}

.mazyad-currency-option.active {
    background: #572C1B;
    color: #fff;
}

.mazyad-currency-info {
    display: flex;
    flex-direction: column;
}

.mazyad-currency-code {
    font-weight: 600;
    font-size: 13px;
}

.mazyad-currency-name {
    font-size: 11px;
    opacity: 0.8;
}

/* RTL Support */
html[dir="rtl"] .mazyad-currency-dropdown {
    right: auto;
    left: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mazyad-currency-current {
        padding: 6px 10px;
        font-size: 13px;
    }
}