/**
 * Cart Max Products - Styles front-end
 * 
 * @author    Projection Web
 * @copyright 2024 Projection Web
 */

/* Message d'erreur popup */
.pw-maxqty-alert {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    animation: pwMaxQtyFadeIn 0.3s ease;
}

@keyframes pwMaxQtyFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Info de limite sur la page produit */
.pw-maxqty-product-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 13px;
    font-weight: 500;
}

.pw-maxqty-product-info::before {
    content: "ℹ";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ffc107;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}
