/**
 * Custom CSS to hide unwanted elements
 * Hide heart/favorite icon since Webba Booking doesn't support favorites
 */

/* Hide wishlist/favorite column in header */
.wishlist-column {
    display: none !important;
}

/* Alternative selectors in case the class name changes */
.wp-block-column.wishlist-column,
div.wishlist-column {
    display: none !important;
}

/* Hide any heart.png images */
img[src*="heart.png"] {
    display: none !important;
}

/* Hide parent link if it only contains the heart image */
a:has(> img[src*="heart.png"]) {
    display: none !important;
}
