/* ========================================
   COMMERCIFY VIGNETTES MOBILE & SCROLL OPTIMIZATION
   DÉSACTIVATION CIBLÉE POUR MOBILE ET SCROLL
   ======================================== */

/* 📱 SMARTPHONES - DÉSACTIVATION COMPLÈTE DES EFFETS 3D */
@media (max-width: 768px) {
    .product-card {
        transition: none !important;
        transform: none !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    .product-card:hover {
        transform: none !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    .product-card:active {
        transform: none !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    .product-card::before {
        display: none !important;
    }
    
    .card-img-top {
        transition: none !important;
        transform: none !important;
    }
    
    .product-title,
    .product-price {
        transition: none !important;
        transform: none !important;
    }
    
    .badge {
        transition: none !important;
        transform: none !important;
    }
    
    .product-actions {
        transition: none !important;
        transform: none !important;
    }
}

/* 📱 TOUCH DEVICES - DÉSACTIVATION COMPLÈTE */
@media (hover: none) and (pointer: coarse) {
    .product-card {
        transition: none !important;
        transform: none !important;
    }
    
    .product-card:hover {
        transform: none !important;
    }
    
    .product-card:active {
        transform: none !important;
    }
    
    .product-card::before {
        display: none !important;
    }
    
    .card-img-top {
        transition: none !important;
        transform: none !important;
    }
}

/* 🚀 SCROLL - DÉSACTIVATION PENDANT LE DÉFILEMENT */
.scrolling .product-card {
    transition: none !important;
    transform: none !important;
}

.scrolling .product-card:hover {
    transform: none !important;
}

.scrolling .product-card:active {
    transform: none !important;
}

.scrolling .card-img-top {
    transition: none !important;
    transform: none !important;
}

.scrolling .product-title,
.scrolling .product-price {
    transition: none !important;
    transform: none !important;
}

.scrolling .badge {
    transition: none !important;
    transform: none !important;
}

.scrolling .product-actions {
    transition: none !important;
    transform: none !important;
}

/* 🚀 PERFORMANCE - DÉSACTIVATION SI RÉDUCTION MOUVEMENT */
@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-card::before,
    .card-img-top,
    .product-title,
    .product-price,
    .badge,
    .product-actions,
    .product-actions .btn {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .product-card:hover {
        transform: none !important;
    }
    
    .product-card:active {
        transform: none !important;
    }
}

/* 🚀 CONNEXION LENTE - DÉSACTIVATION */
@media (prefers-reduced-data: reduce) {
    .product-card {
        transition: none !important;
        transform: none !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    .product-card::before {
        display: none !important;
    }
    
    .card-img-top {
        transition: none !important;
        transform: none !important;
    }
}

/* 🚀 ÉCRANS PETITS - DÉSACTIVATION */
@media (max-width: 480px) {
    .product-card {
        transition: none !important;
        transform: none !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    .product-card::before {
        display: none !important;
    }
    
    .card-img-top {
        transition: none !important;
        transform: none !important;
    }
    
    .product-title,
    .product-price {
        transition: none !important;
        transform: none !important;
    }
}
