/**
 * CSS pour ajouter un effet de grossissement au survol du panier
 */

/* Style de base pour le bloc panier */
.blockcart,
.cart-preview,
#_desktop_cart,
.shopping-cart {
  transition: all 0.3s ease !important;
  color: #5CA60D !important;
}

/* Effet de grossissement au survol */
.blockcart:hover,
.cart-preview:hover,
#_desktop_cart:hover,
.shopping-cart:hover {
  transform: scale(1.1) !important;
}

/* Style pour l'icône du panier */
.blockcart i,
.cart-preview i,
#_desktop_cart i,
.shopping-cart i {
  color: #5CA60D !important;
  transition: all 0.3s ease !important;
}

/* Effet au survol pour l'icône */
.blockcart:hover i,
.cart-preview:hover i,
#_desktop_cart:hover i,
.shopping-cart:hover i {
  color: #6abb10 !important; /* Légèrement plus clair au survol */
}

/* Style pour le texte du panier */
.blockcart span:not(.cart-products-count),
.cart-preview span:not(.cart-products-count),
#_desktop_cart span:not(.cart-products-count),
.shopping-cart span:not(.cart-products-count) {
  color: #5CA60D !important;
  transition: all 0.3s ease !important;
}

/* Effet au survol pour le texte */
.blockcart:hover span:not(.cart-products-count),
.cart-preview:hover span:not(.cart-products-count),
#_desktop_cart:hover span:not(.cart-products-count),
.shopping-cart:hover span:not(.cart-products-count) {
  color: #6abb10 !important;
}
