/* CRITICAL FIX FOR UNCLICKABLE CARDS - Add to frontend.css */

/* Fix for listing cards - ::before overlay was blocking clicks */
.bfhd-card-pro1::before {
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Ensure all clickable content is above the overlay */
.bfhd-card-logo,
.bfhd-card-logo-placeholder,
.bfhd-card-content,
.bfhd-btn-view-details {
    position: relative !important;
    z-index: 1 !important;
}