.woocommerce div.product {

	.entry-summary {
		.product_title {
			font-size: 30px;
		}

		.woocommerce-product-rating {
			display: flex;
			align-items: center;
			margin: 5px 0 0 0;

			.star-rating {
				margin: 0 10px 0 0;
			}

			.woocommerce-review-link {
				font-size: 12px;
			}
		}

		p.price, span.price {
			display: flex;
			align-items: center;
			font-size: 20px;
			font-weight: 600;
			color: var(--fontColor);
			margin: 5px 0 28px 0;

			del {
				font-size: 75%;
			}
		}

		p.stock {
			margin-top: 2em;
		}
	}

	// product meta
	.product_meta {
		margin-top: 30px;
		padding-top: 30px;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		border-top: 1px solid #e0e5eb;

		> span {
			font-weight: 700;
			display: block;
			
			&:not(:last-child) {
				margin-bottom: 5px;
			}

			> * {
				opacity: 0.7;
				font-weight: 500;
			}

			> a {
				transition: color 0.1s ease,
							opacity 0.1s ease;
							
				&:hover {
					opacity: 1;
				}
			}
		}
	}
}