/* =========================
   SINGLE PRODUCT - GENERAL ONLY
   No variations / swatches / stock rules here
   ========================= */

/* =========================
   TITLE + PRICE
   ========================= */
.single-product .summary.entry-summary .product_title {
	display: inline !important;
	margin: 0 !important;
	vertical-align: middle !important;
}

.single-product .summary.entry-summary .price {
	display: inline !important;
	margin: 0 !important;
	vertical-align: middle !important;
	font-weight: 700 !important;
	white-space: nowrap !important;
}

.single-product .summary.entry-summary .price::before {
	content: "-" !important;
	display: inline-block !important;
	margin: 0 8px !important;
	color: #111 !important;
	font-weight: 500 !important;
}

/* Everything after title/price starts below */
.single-product .summary.entry-summary .woocommerce-product-rating,
.single-product .summary.entry-summary .product_meta,
.single-product .summary.entry-summary .woocommerce-product-details__short-description,
.single-product .summary.entry-summary .variations_form,
.single-product .summary.entry-summary form.cart {
	display: block !important;
	clear: both !important;
}

/* Small spacing before product form area */
.single-product .summary.entry-summary .variations_form,
.single-product .summary.entry-summary form.cart {
	margin-top: 8px !important;
}

/* =========================
   RATING
   ========================= */
.single-product .summary.entry-summary .woocommerce-product-rating {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	flex-wrap: nowrap !important;
}

.single-product .summary.entry-summary .woocommerce-product-rating .star-rating,
.single-product .summary.entry-summary .woocommerce-product-rating .woocommerce-review-link {
	margin: 0 !important;
}

.single-product .summary.entry-summary .woocommerce-product-rating .woocommerce-review-link {
	white-space: nowrap !important;
}

/* =========================
   MOBILE TUNING
   ========================= */
@media (max-width: 768px) {
	.single-product .summary.entry-summary .price::before {
		margin: 0 6px !important;
	}
}