/* Keep native wishlist button in DOM and accessible to JS but visually hidden on single product 

.ct-product-card .inquiry-badge {
    background-color: #003671;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    pointer-events: none;
}
*/

/* Styled like a proper badge 
span.inquiry-badge {
    display: inline-block;
    background-color: #003671;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 6px; 
    text-transform: uppercase;
} */



/* ensure product card has positioning context 
.ct-product-card .ct-image-container {
    position: relative;
} 
*/


/* fix for product card badge not appearing for admins 
.wp-admin .inquiry-badge {
    position: static !important;
    margin-bottom: 4px;
}
*/