
Favorables
Cette liste de souhaits est vide.
// Inject custom CSS for product hover effects
(function() {
// Create a style element
const style = document.createElement('style');
style.textContent = `
/* Elegant product display with hover effects */
/* Hide product titles and action buttons by default */
.wd-product h3 {
display: none !important;
opacity: 0 !important;
}
.wd-product .wd-bottom-actions {
display: none !important;
opacity: 0 !important;
}
/* Show product titles and buttons on hover */
.wd-product:hover h3 {
display: block !important;
opacity: 1 !important;
}
.wd-product:hover .wd-bottom-actions {
display: flex !important;
opacity: 1 !important;
}
/* Smooth transition effect */
.wd-product h3,
.wd-product .wd-bottom-actions {
transition: all 0.3s ease-in-out !important;
}
`;
// Append the style to the head
document.head.appendChild(style);
console.log('Custom CSS injected successfully');
})();


