/* Currency Switcher - Left Side Positioning */

.currency-switcher {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 10px;
}

.currency-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.currency-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border: 2px solid #ddd;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
    outline: none;
}

.currency-btn:hover {
    border-color: #0073aa;
    background: #f0f8ff;
    transform: scale(1.05);
}

.currency-btn.active {
    background: #0073aa;
    border-color: #0073aa;
    color: #ffffff;
}

.currency-symbol {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
}

.currency-code {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.currency-btn.active .currency-symbol,
.currency-btn.active .currency-code {
    color: #ffffff;
}

.currency-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .currency-switcher {
        left: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        padding: 10px;
    }
    
    .currency-buttons {
        flex-direction: row;
    }
    
    .currency-btn {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .currency-symbol {
        font-size: 20px;
    }
    
    .currency-code {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .currency-switcher {
        left: 5px;
        bottom: 10px;
        padding: 8px;
    }
    
    .currency-buttons {
        gap: 8px;
    }
    
    .currency-btn {
        padding: 8px 10px;
        min-width: 55px;
    }
}
