/* Offer Grid CSS - adds badge and hides add to cart buttons if present */
.og-offer-badge {
    display: inline-block;
    background: #e53935;
    color: #fff;
    font-weight: 700;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

.og-offer-wrap {
    position: relative;
}

/* Badge overlay in product card corner if desired */
.og-offer-corner {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
}

/* Hide Add to Cart buttons (fallback) */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.single_add_to_cart_button,
.woocommerce .add_to_cart_button,
.single-product form.cart {
    display: none !important;
}
