/* ============================================================
   BZO WhatsApp Product Inquiry — style.css
   ============================================================ */

/* ── Shop / Archive: WhatsApp icon button on product cards ── */

/* Hide wishlist when WhatsApp button is active */
.product-extra-link .bzo-custom-wishlist {
    display: none !important;
}

/* WhatsApp icon button */
.bzo-wap-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #25D366 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}
.bzo-wap-btn:hover {
    color: #fff !important;
    transform: scale(1.15);
}
.bzo-wap-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    pointer-events: none;
}


/* ── Single Product Page: hide cart form, qty, wishlist/compare/share ── */

.single-product form.cart,
.single-product .detail-qty,
.single-product .wishlist_compare_single_product,
.single-product .yith-wcwl-add-to-wishlist-button--single {
    display: none !important;
}


/* ── Single Product Page: Enquire Now button ── */

.bzo-wap-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}
.bzo-wap-enquire-btn:hover {
    background-color: #fff;
    color: #25D366 !important;
    border-color: #25D366;
}
.bzo-wap-enquire-btn svg {
    flex-shrink: 0;
    fill: currentColor;
}