/* ============================================================
   Routine Wellness Styles — Shop topic (product listing pages)
   ============================================================ */

/* --- Product card rating block ------------------------------ */
/* The rating block already links to that product's reviews. These rules stretch
   that link across the whole block, so the stars open the reviews as well as the
   "(N customer reviews)" text, and both show a pointer cursor.

   Product pages are excluded (see the topic gate, and the body:not(.product)
   prefix kept here as a safeguard): there the rating block scrolls to the
   reviews section further down the same page, which is unchanged. */
body:not(.product) .woocommerce-revive-eo-product-rating {
	position: relative;
}

/* Static, so the overlay below is measured against the whole block rather than
   against this link's own text box. */
body:not(.product) .woocommerce-revive-eo-product-rating .woocommerce-review-link {
	position: static;
	cursor: pointer;
}

/* The stretched hit area. z-index clears the star spans, which are positioned. */
body:not(.product) .woocommerce-revive-eo-product-rating .woocommerce-review-link::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
}

body:not(.product) .woocommerce-revive-eo-product-rating .star-rating {
	cursor: pointer;
}
