/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

.sidebar-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-icon:hover {
    transform: scale(1.1);
    background-color: #e5e7eb;
    color: #1e40af;
}

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

.product-card img {
    border-radius: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.active-nav {
    background-color: #1e40af !important;
    color: #ffedd5 !important;
}

.highlight-text {
    color: #fb923c;
}

.bg-pastel-orange {
    background-color: #ffedd5;
}

/* Animación para el modal */
.modal-enter {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Estilos para el contador de cantidad */
.quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease-out;
}



.whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: white;
        border-radius: 50px;
        padding: 15px;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .whatsapp-btn:hover {
        background-color: #128c7e;
        transform: scale(1.1);
    }



/* === NUEVO: Estilos botón descuento flotante y modal === */
#btn-descuento {
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.5);
}

#modal-descuento .modal-enter {
  animation: modalFadeIn 0.3s ease-out;
}


    