/* Stock Monitor Styles */

/* Animación cuando se actualiza el stock */
@keyframes stock-updated-animation {
    0% {
        background-color: #fff3cd;
        transform: scale(1);
    }
    50% {
        background-color: #fffacd;
        transform: scale(1.05);
    }
    100% {
        background-color: transparent;
        transform: scale(1);
    }
}

/* Animación para notificación de bajo stock */
@keyframes pulse-warning {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Animación para notificación de agotado */
@keyframes pulse-danger {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.stock-updated {
    animation: stock-updated-animation 0.6s ease-in-out;
}

/* Producto sin stock */
.product-out-of-stock {
    opacity: 0.65;
    pointer-events: none;
}

.product-out-of-stock .add-to-cart-button {
    cursor: not-allowed;
}

/* Elemento sin stock */
.out-of-stock {
    opacity: 0.6;
    pointer-events: none;
}

/* Badge de stock */
[data-stock-badge] {
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.35rem 0.65rem;
    margin-left: 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

/* Estado de cantidad */
[data-stock-cantidad] {
    font-weight: 600;
    color: #0d6efd;
}

/* Botón deshabilitado por falta de stock */
.add-to-cart-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.add-to-cart-button.disabled:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

/* Alerta de pocas unidades */
.product-low-stock {
    border-left: 4px solid #ffc107;
    background-color: #fff8e1;
}

.product-low-stock [data-stock-badge] {
    animation: pulse-warning 2s infinite;
}

/* Alerta de producto agotado */
.product-empty-stock {
    border-left: 4px solid #dc3545;
    background-color: #ffe5e5;
}

.product-empty-stock [data-stock-badge] {
    animation: pulse-danger 2s infinite;
}

/* Contenedor de alerta de stock inline */
.stock-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.stock-alert.low {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.stock-alert.critical {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.stock-alert i {
    font-size: 1rem;
}

/* Texto de "Solo quedan X" */
.only-left {
    font-weight: 700;
    color: #dc3545;
    font-size: 0.95rem;
}

/* Para animación suave de cambio de estado */
.stock-transition {
    transition: all 0.3s ease;
}
