/*
 * Getwine WooCommerce Tweaks – front-end styles.
 */

/* ------------------------------------------------------------------
 * Star rating in product listings.
 *
 * Match the single product page: the theme sets .star-rating to 10px and
 * the child theme colours the stars #7D1512. WooCommerce core shrinks
 * stars inside ul.products to .857em, so we pin the size back to 10px and
 * centre the stars as a block directly above the product name.
 * ------------------------------------------------------------------ */
.woocommerce ul.products li.product .gwt-loop-rating {
	margin: 0 0 8px;
	line-height: 1;
	text-align: center;
}

.woocommerce ul.products li.product .gwt-loop-rating .star-rating {
	display: block;
	float: none;
	margin: 0 auto;
	font-size: 10px;
}
