/* ─── Product Visibility System Styles ─── */

/* Grayed out category (all products hidden) */
.visibility-disabled {
    opacity: 0.4 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    position: relative;
}

.visibility-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Contact for Price styling on product cards */
.visibility-no-price .price-new {
    color: #d32f2f !important;
    font-weight: 600;
}

.visibility-no-price-cart .btn-cart {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

.visibility-no-price-cart .btn-cart:hover {
    background: #1da851 !important;
    border-color: #1da851 !important;
}

/* Product detail page - Contact for Price section */
.product-price-group.visibility-no-price .product-price {
    color: #d32f2f;
    font-size: 18px;
    font-weight: 600;
}

.product-price-group.visibility-no-price .btn-cart {
    font-size: 16px;
    padding: 12px 24px;
}
