/* Custom Styles for MeliRadar */

:root {
    --primary-color: #3483FA;
    --success-color: #00A650;
    --danger-color: #F23D4F;
    --warning-color: #FFE600;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Product Cards */
.product-card {
    position: relative;
    cursor: pointer;
}

.product-card .badge {
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Stats */
.stat-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .stat-box h2 {
        font-size: 2rem;
    }
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Modal */
.modal-content {
    border-radius: 12px;
}

textarea#whatsapp-message {
    font-family: monospace;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    border-color: #20BA5A;
    color: white;
}

/* Empty State */
.display-1 {
    font-size: 5rem;
}
