
.loop-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.product-box {
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}

.product-box .box-image {
	position: relative;
	height: auto;
	overflow: hidden;
	padding-top: 75%;
	background-position: 50% 50%;
	background-size: cover;
}

.product-box .box-image img {
	right: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	top: 0;
	position: absolute;
	-o-object-position: 50% 50%;
	object-position: 50% 50%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
}

.product-box .box-content {
	padding: 15px;
}

.product-box .box-content .title {
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-box .box-content .title img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 100%;
}

.product-box .box-content .title h4 {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	font-size: 1em;
	font-weight: normal;
	line-height: 1;
}

/* .product-box .box-content .author {
  margin-left: 30px;
} */
.product-box_reviews {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-flow: row wrap;
	margin: 15px 0 10px;
}

.product-box_reviews .star {
	display: block;
	max-width: 8%;
	margin-right: 5px;
}

.product-box_reviews .star:last-child {
	margin-right: 0;
}

.product-box_reviews .star.off {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	opacity: .8;
}

.product-box_details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 15px;
}

.product-box_details .orders .legend {
	font-size: .8em;
	color: #333;
}

.product-box_details .price {
	color: #5d6164;
	font-weight: bold;
	font-size: 1.15em;
}

.product-box .box-content .actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-box .box-content .actions .button {
	max-width: 46%;
	flex: 1;
	border: none;
	border: solid 2px currentColor;
	border-radius: 5px;
	color: #fff;
	font-weight: normal;
	line-height: 1;
	padding: 10px 0;
	transition: all .2s ease;
	text-align: center;
}

.product-box .box-content .actions .button-gray {
	background: #7a929e;
	border-color: #7a929e;
}

.product-box .box-content .actions .button-yellow {
	background: #eabc32;
	border-color: #eabc32;
}

.product-box .box-content .actions .button-gray:hover {
	color: #7a929e;
	background: #fff;
}

.product-box .box-content .actions .button-yellow:hover {
	color: #eabc32;
	background: #fff;
}

@media (max-width: 48em) {
	.loop-products {
		grid-template-columns: repeat(1, 1fr);
	}
}

/** [ft-product_author] **/
.author-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.author-box img {
	width: 32px;
	height: 32px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 100%;
	margin-right: 10px;
}

/** CART & CHECKOUT **/
tr[class*="cupom-do-autor"] {
	display: none;
}
