/* GRZ Gaming product v1.5.53 — promo markers: flat green text, no green blob.
 *
 * The sale marker on package rows was a full green gradient ribbon filling the
 * row's top corner. It is now plain green text — "Promo -10%" — with no
 * background at all. The hero image PROMO marker gets the same treatment.
 * Shipped as a new file so no cache layer can keep serving the ribbon styles. */

/* Package rows: the green corner ribbon becomes plain green text. */
.grz-tp-pill__badge.is-promo {
	top: 7px;
	inset-inline-end: 10px;
	min-height: 0;
	padding: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: #14803c;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}
.grz-tp-pill__badge.is-promo .grz-tp-pill__badge-label,
.grz-tp-pill__badge.is-promo .grz-tp-pill__badge-discount {
	font-weight: 800;
}
[dir="rtl"] .grz-tp-pill__badge.is-promo {
	padding-inline: 0;
	border-radius: 0;
}

/* Product hero image: same flat treatment for the PROMO corner marker. */
.grz-tp-promo-marker {
	top: 8px;
	inset-inline-end: 10px;
	min-height: 0;
	padding: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: #14803c;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}


/* v1.5.56: ambient page wash — the product banner becomes the page background.
 * Root cause of the two previous invisible attempts: product-v140.css carries
 *   .single-product.grz-product-design { background: #f4f7fb }   (specificity 0,2,1)
 *   .single-product .grz-woo-main { background: #f5f8fc }        (the <main> wrapper)
 * which flat-out beat/overpainted any body-level wash. The wash declaration itself
 * is now printed per product by grz_pp_page_wash_inline_style() as an inline
 * <style> block at wp_head priority 25 — after every stylesheet, at the same
 * 0,2,1 specificity, so it always wins the tie against v140. This file only
 * clears the inner <main> wrapper so the body wash is actually visible around
 * the cards. The higher 0,3,0 selector also beats v140 without !important. */
.single-product.grz-product-design .grz-woo-main {
	background: transparent;
}
