/***********************************************/
/************* REORDER WOO ELEMENTS ************/
/***********************************************/
/*** SINGLE ITEM ***/
.woocommerce ul.products li.product a {
	display: flex; /* flexbox allows us to move elements around */
	flex-direction: column;
}
/*** PRODUCT IMAGE ***/
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	margin: 0 !important; /* this is needed to compensate for using flex above */
}
/*** PRODUCT TITLE ***/
h2.woocommerce-loop-product__title,
.related h2.woocommerce-loop-product__title {
	order: -1; /* -1 is like first/top */
}
/*** PRICE ***/
.woocommerce ul.products li.product .price {
	order: 0; /* 0 is like second/middle */
}
/*** STAR RATING ***/
.woocommerce ul.products li.product .star-rating {
	order: 1; /* 1 is like third/bottom */
}
/*** SALE BADGE ***/
.woocommerce ul.products li.product .onsale, 
.woocommerce-page ul.products li.product .onsale {
	top: 15% !important; /* moves the badge so it doesn't cover the top element */
}