/**
 * WooCommerce single product — summary, variations (Eagle Block Pro).
 * Theme CSS unchanged; loads after WooCommerce block theme styles.
 */

body.single-product {
	--ebp-sp-title: "Playfair Display", Georgia, "Times New Roman", serif;
	--ebp-sp-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ebp-sp-green: #2c3e30;
	--ebp-sp-green-dark: #1a2e1f;
	--ebp-sp-gold: #c5a059;
	--ebp-sp-muted: #6b705c;
	--ebp-sp-border: #d8d0c4;
	--ebp-sp-input-bg: #fff;
	--ebp-sp-gallery-h: 600px;
	--ebp-sp-thumbs-wrap-h: 600px;
	--ebp-cart-control-h: 40px;
}

@media (max-width: 1024px) {
	body.single-product {
		--ebp-sp-gallery-h: 500px;
		--ebp-sp-thumbs-wrap-h: 500px;
	}
}

@media (max-width: 600px) {
	body.single-product {
		--ebp-sp-gallery-h: 400px;
		--ebp-sp-thumbs-wrap-h: 400px;
	}
}

/* —— Gallery: main image + thumbnail wrapper height only —— */
body.single-product .wc-block-product-gallery-large-image {
	height: var(--ebp-sp-gallery-h);
	min-height: var(--ebp-sp-gallery-h);
	max-height: var(--ebp-sp-gallery-h);
}

body.single-product .wc-block-product-gallery-large-image__container,
body.single-product .wc-block-product-gallery-large-image__wrapper {
	height: 100%;
	min-height: var(--ebp-sp-gallery-h);
	max-height: var(--ebp-sp-gallery-h);
}

body.single-product .wc-block-product-gallery-large-image img,
body.single-product .wc-block-product-gallery-large-image .wc-block-components-product-image,
body.single-product .wc-block-product-gallery-large-image .wc-block-components-product-image img {
	height: var(--ebp-sp-gallery-h) !important;
	max-height: var(--ebp-sp-gallery-h) !important;
	width: 100% !important;
	object-fit: cover !important;
	aspect-ratio: auto !important;
	border-radius: 10px;
}

body.single-product .wc-block-next-previous-buttons__button,
body.single-product .wc-block-product-gallery-large-image-next-previous .wc-block-next-previous-buttons__button {
	border-radius: 5px !important;
}

body.single-product .wc-block-product-gallery-thumbnails {
	height: var(--ebp-sp-thumbs-wrap-h);
	min-height: var(--ebp-sp-thumbs-wrap-h);
	max-height: var(--ebp-sp-thumbs-wrap-h);
	aspect-ratio: auto !important;
}

body.single-product .wc-block-product-gallery-thumbnails__thumbnail img {
	border-radius: 6px;
}

body.single-product .wc-block-product-gallery-thumbnails__scrollable {
	height: 100%;
	max-height: var(--ebp-sp-thumbs-wrap-h);
}

/* —— Summary column —— */
body.single-product main .wp-block-columns > .wp-block-column:nth-child(2),
body.single-product main .wp-block-column.is-vertically-aligned-top {
	font-family: var(--ebp-sp-body);
	color: var(--ebp-sp-green-dark);
	min-width: 0;
}

body.single-product .wp-block-post-title,
body.single-product h1.wp-block-post-title {
	font-family: var(--ebp-sp-title);
	font-size: clamp(1.65rem, 1.6vw + 1rem, 2.35rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ebp-sp-green-dark);
	margin: 0 0 0.4rem;
}

body.single-product .wp-block-woocommerce-product-rating,
body.single-product .wc-block-components-product-rating {
	font-family: var(--ebp-sp-body);
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
}

body.single-product .wc-block-components-product-rating__stars {
	color: var(--ebp-sp-gold);
}

body.single-product .wc-block-components-product-rating__link {
	color: var(--ebp-sp-muted);
	text-decoration: none;
}

body.single-product .wc-block-components-product-rating__link:hover {
	color: var(--ebp-sp-green);
}

body.single-product .wp-block-woocommerce-product-price,
body.single-product .wc-block-components-product-price {
	font-family: var(--ebp-sp-body);
	font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
	font-weight: 700;
	color: var(--ebp-sp-gold);
	margin: 0 0 0.5rem;
}

body.single-product .wp-block-woocommerce-product-price ins,
body.single-product .wc-block-components-product-price ins {
	text-decoration: none;
	color: var(--ebp-sp-gold);
}

body.single-product .wp-block-woocommerce-product-price del,
body.single-product .wc-block-components-product-price del {
	color: #9a9a8f;
	font-size: 0.95rem;
	font-weight: 500;
}

body.single-product .wp-block-post-excerpt,
body.single-product .wp-block-post-excerpt p {
	font-family: var(--ebp-sp-body);
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--ebp-sp-muted);
	margin: 0 0 1rem;
	max-width: 36rem;
}

/* —— Variations: stack label above select (fixes vertical letter bug) —— */
body.single-product form.variations_form,
body.single-product .variations_form {
	width: 100%;
	margin: 0 0 1rem;
}

body.single-product table.variations {
	display: block !important;
	width: 100% !important;
	border: 0 !important;
	margin: 0 !important;
	border-collapse: collapse !important;
	border-spacing: 0 !important;
}

body.single-product table.variations tbody {
	display: block !important;
	width: 100% !important;
}

body.single-product table.variations tr {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	width: 100% !important;
	margin: 0 0 0.85rem !important;
	padding: 0 !important;
}

body.single-product table.variations tr:last-child {
	margin-bottom: 0.5rem !important;
}

body.single-product table.variations th.label,
body.single-product table.variations td.label {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	padding: 0 0 0.35rem !important;
	text-align: left !important;
	vertical-align: top !important;
	border: 0 !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
}

body.single-product table.variations td.value {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	padding: 0 !important;
	text-align: left !important;
	vertical-align: top !important;
	border: 0 !important;
}

body.single-product table.variations label {
	display: inline-block !important;
	width: auto !important;
	max-width: 100% !important;
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: var(--ebp-sp-green-dark) !important;
	line-height: 1.3 !important;
	white-space: normal !important;
	word-break: normal !important;
}

body.single-product table.variations select {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.9375rem !important;
	font-weight: 500 !important;
	color: var(--ebp-sp-green-dark) !important;
	min-height: 46px !important;
	height: auto !important;
	padding: 0.55rem 2.25rem 0.55rem 0.85rem !important;
	border: 1px solid var(--ebp-sp-border) !important;
	border-radius: 8px !important;
	background-color: var(--ebp-sp-input-bg) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232c3e30' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 0.85rem center !important;
	background-size: 12px 8px !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	cursor: pointer;
	box-shadow: none !important;
}

body.single-product table.variations select:hover {
	border-color: #c4b8a8 !important;
}

body.single-product table.variations select:focus {
	outline: none !important;
	border-color: var(--ebp-sp-green) !important;
	box-shadow: 0 0 0 2px rgba(44, 62, 48, 0.12) !important;
}

body.single-product a.reset_variations {
	font-family: var(--ebp-sp-body);
	font-size: 0.8125rem;
	color: var(--ebp-sp-muted);
	margin: 0.25rem 0 0.75rem;
	display: inline-block;
}

body.single-product a.reset_variations:hover {
	color: var(--ebp-sp-green);
}

/* —— Quantity + Add to cart (matched height) —— */
body.single-product form.cart,
body.single-product .single_variation_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

body.single-product .single_variation_wrap .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.5rem;
	width: 100%;
}

body.single-product form.cart .quantity {
	display: flex !important;
	align-items: stretch;
	margin: 0 !important;
	height: var(--ebp-cart-control-h);
	flex: 0 0 auto;
	float: none !important;
}

body.single-product form.cart .quantity input.qty {
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.875rem !important;
	width: 3.25rem !important;
	height: var(--ebp-cart-control-h) !important;
	min-height: var(--ebp-cart-control-h) !important;
	max-height: var(--ebp-cart-control-h) !important;
	padding: 0 0.4rem !important;
	margin: 0 !important;
	line-height: 1 !important;
	text-align: center;
	border: 1px solid var(--ebp-sp-border) !important;
	border-radius: 6px !important;
	background: var(--ebp-sp-input-bg) !important;
	color: var(--ebp-sp-green-dark) !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
}

body.single-product form.cart .quantity input.qty:focus {
	outline: none !important;
	border-color: var(--ebp-sp-green) !important;
	box-shadow: 0 0 0 2px rgba(44, 62, 48, 0.12) !important;
}

body.single-product form.cart button.single_add_to_cart_button,
body.single-product form.cart .single_add_to_cart_button.button {
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	height: var(--ebp-cart-control-h) !important;
	min-height: var(--ebp-cart-control-h) !important;
	max-height: var(--ebp-cart-control-h) !important;
	line-height: 1 !important;
	padding: 0 1.1rem !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 6px !important;
	background: var(--ebp-sp-green) !important;
	color: #fff !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: stretch;
	float: none !important;
	transition: background 0.2s ease;
}

body.single-product form.cart button.single_add_to_cart_button:hover {
	background: #253d2a !important;
}

/* Blocks add-to-cart fallbacks */
body.single-product .wp-block-add-to-cart-form select,
body.single-product .wp-block-woocommerce-add-to-cart-form select {
	font-family: var(--ebp-sp-body) !important;
	width: 100% !important;
	min-height: 46px !important;
	padding: 0.55rem 2.25rem 0.55rem 0.85rem !important;
	border: 1px solid var(--ebp-sp-border) !important;
	border-radius: 8px !important;
	background-color: var(--ebp-sp-input-bg) !important;
}

body.single-product .wp-block-add-to-cart-form form.cart,
body.single-product .wp-block-woocommerce-add-to-cart-form form.cart,
body.single-product .wc-block-add-to-cart-form .wc-block-add-to-cart-form-container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.5rem;
}

body.single-product .wp-block-add-to-cart-form .wc-block-components-quantity-selector,
body.single-product .wp-block-woocommerce-add-to-cart-form .wc-block-components-quantity-selector {
	margin: 0 !important;
	height: var(--ebp-cart-control-h);
	align-self: stretch;
}

body.single-product .wp-block-add-to-cart-form .wc-block-components-quantity-selector input,
body.single-product .wp-block-woocommerce-add-to-cart-form .wc-block-components-quantity-selector__input {
	font-size: 0.875rem !important;
	height: var(--ebp-cart-control-h) !important;
	min-height: var(--ebp-cart-control-h) !important;
	max-height: var(--ebp-cart-control-h) !important;
	padding: 0 0.5rem !important;
	border-radius: 6px !important;
	box-sizing: border-box !important;
}

body.single-product .wp-block-add-to-cart-form .wc-block-components-button,
body.single-product .wp-block-woocommerce-add-to-cart-form .wc-block-components-button,
body.single-product .wp-block-add-to-cart-form button[type="submit"] {
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	height: var(--ebp-cart-control-h) !important;
	min-height: var(--ebp-cart-control-h) !important;
	max-height: var(--ebp-cart-control-h) !important;
	padding: 0 1.1rem !important;
	border-radius: 6px !important;
	background: var(--ebp-sp-green) !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: stretch;
}

/* Product meta */
body.single-product .wp-block-woocommerce-product-meta {
	font-family: var(--ebp-sp-body);
	font-size: 0.875rem;
	color: var(--ebp-sp-muted);
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e7dfd2;
}

body.single-product .wp-block-woocommerce-product-meta a {
	color: var(--ebp-sp-green);
}

/* —— Product tabs (Description, Reviews, etc.) —— */
body.single-product .wp-block-woocommerce-product-details {
	margin-top: 5rem;
	padding-top: 2rem;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs,
body.single-product ul.tabs.wc-tabs {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center !important;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
	max-width: max-content;
	margin: 0 auto 3.75rem !important;
	padding: 0.35rem !important;
	list-style: none !important;
	border: 0 !important;
	background: rgba(44, 62, 48, 0.06);
	border-radius: 999px;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs::before,
body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs::after,
body.single-product ul.tabs.wc-tabs::before,
body.single-product ul.tabs.wc-tabs::after {
	display: none !important;
	content: none !important;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li,
body.single-product ul.tabs.wc-tabs li {
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 999px !important;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li a,
body.single-product ul.tabs.wc-tabs li a {
	display: inline-block !important;
	padding: 0.6rem 1.25rem !important;
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase;
	color: var(--ebp-sp-muted) !important;
	text-decoration: none !important;
	border: 0 !important;
	background: transparent !important;
	border-radius: 999px !important;
	line-height: 1.3 !important;
	transition: color 0.25s ease, background 0.25s ease;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li.active,
body.single-product ul.tabs.wc-tabs li.active {
	background: var(--ebp-sp-green) !important;
	box-shadow: 0 4px 14px rgba(44, 62, 48, 0.18);
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li.active a,
body.single-product ul.tabs.wc-tabs li.active a {
	color: #fff !important;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li:not(.active):hover,
body.single-product ul.tabs.wc-tabs li:not(.active):hover {
	background: rgba(255, 255, 255, 0.65) !important;
}

body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li:not(.active):hover a,
body.single-product ul.tabs.wc-tabs li:not(.active):hover a {
	color: var(--ebp-sp-green-dark) !important;
}

/* Tab panels — centered content */
body.single-product .wp-block-woocommerce-product-details .wc-tabs-panel,
body.single-product .wp-block-woocommerce-product-details .woocommerce-Tabs-panel,
body.single-product .woocommerce-Tabs-panel {
	padding: 0;
	font-family: var(--ebp-sp-body);
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #3d4a3a;
}

body.single-product .wp-block-woocommerce-product-details .wc-tabs-panel h2,
body.single-product .wp-block-woocommerce-product-details .woocommerce-Tabs-panel h2 {
	font-family: var(--ebp-sp-title);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ebp-sp-green-dark);
	margin: 0 0 0.85rem;
	text-align: left;
}

body.single-product .wp-block-woocommerce-product-details .wc-tabs-panel ul,
body.single-product .wp-block-woocommerce-product-details .wc-tabs-panel ol,
body.single-product .wp-block-woocommerce-product-details .woocommerce-Tabs-panel ul,
body.single-product .wp-block-woocommerce-product-details .woocommerce-Tabs-panel ol {
	padding-left: 1.25rem;
	margin: 0 0 1rem;
}

body.single-product .wp-block-woocommerce-product-details table.shop_attributes {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}
.woocommerce table.shop_attributes td p{
	padding: 0;
}

body.single-product .wp-block-woocommerce-product-details table.shop_attributes th,
body.single-product .wp-block-woocommerce-product-details table.shop_attributes td {
	padding: 0.65rem 0;
	border-bottom: 1px solid rgba(44, 62, 48, 0.08);
	font-family: var(--ebp-sp-body);
}

body.single-product .wp-block-woocommerce-product-details table.shop_attributes th {
	font-weight: 600;
	color: var(--ebp-sp-green-dark);
}

body.single-product .wp-block-woocommerce-product-details table.shop_attributes tr:last-child th,
body.single-product .wp-block-woocommerce-product-details table.shop_attributes tr:last-child td {
	border-bottom: 0;
}

/* Reviews tab — Growth Listings two-column layout (Eagle FSE Commerce reference) */
body.single-product .wp-block-woocommerce-product-details #reviews,
body.single-product #reviews {
	--ebp-rev-bg: #faf9f7;
	--ebp-rev-white: #fff;
	--ebp-rev-text: var(--ebp-sp-green-dark);
	--ebp-rev-muted: var(--ebp-sp-muted);
	--ebp-rev-radius: 10px;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	margin-top: 2rem;
}

body.single-product .wp-block-woocommerce-product-details #reviews .woocommerce-Reviews-title,
body.single-product #reviews .woocommerce-Reviews-title {
	font-family: var(--ebp-sp-title);
	font-size: 1.35rem;
	text-align: left;
	color: var(--ebp-sp-green-dark);
}

body.single-product .wp-block-woocommerce-product-details #comments,
body.single-product #comments {
	flex: 0 1 50%;
	min-width: 0;
}

body.single-product .wp-block-woocommerce-product-details #review_form_wrapper,
body.single-product #review_form_wrapper {
	width: auto;
	flex: 0 1 50%;
	margin: 0;
	position: sticky;
	top: 90px;
	box-sizing: border-box;
	background: var(--ebp-rev-white);
	border: 1px solid var(--ebp-sp-border);
	border-radius: var(--ebp-rev-radius);
	padding: 1.5rem;
	box-shadow: 0 2px 12px rgba(44, 62, 48, 0.06);
}

body.single-product .wp-block-woocommerce-product-details #comments > h2,
body.single-product #comments > h2 {
	font-family: var(--ebp-sp-body);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ebp-rev-text);
	margin: 0 0 1rem;
}

body.single-product .wp-block-woocommerce-product-details #comments > h2 a,
body.single-product #comments > h2 a {
	color: var(--ebp-sp-gold);
	text-decoration: none;
}

body.single-product .wp-block-woocommerce-product-details .woocommerce #reviews .commentlist,
body.single-product .wp-block-woocommerce-product-details #reviews .commentlist,
body.single-product .woocommerce #reviews .commentlist,
body.single-product #reviews .commentlist {
	list-style: none;
	margin: 0;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist li,
body.single-product #reviews .commentlist li {
	margin: 0;
	padding: 0;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .comment_container,
body.single-product #reviews .commentlist .comment_container {
	display: flex;
	gap: 0.875rem;
	align-items: flex-start;
	padding: 1.125rem;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .avatar,
body.single-product #reviews .commentlist .avatar {
	width: 42px;
	height: 42px;
	min-width: 42px;
	border-radius: 50%;
	object-fit: cover;
	background: #e8e3d9;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .comment-text,
body.single-product #reviews .commentlist .comment-text {
	flex: 1;
	min-width: 0;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .star-rating,
body.single-product #reviews .commentlist .star-rating {
	font-size: 0.8125rem;
	margin-bottom: 0.25rem;
	overflow: hidden;
	width: 6.2em;
}

body.single-product .wp-block-woocommerce-product-details .woocommerce #reviews .commentlist .star-rating span,
body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .star-rating span,
body.single-product #reviews .commentlist .star-rating span {
	overflow: hidden;
	padding-top: 1.5em;
}

body.single-product .wp-block-woocommerce-product-details .woocommerce #reviews .commentlist .star-rating::before,
body.single-product .wp-block-woocommerce-product-details .woocommerce #reviews .commentlist .star-rating span::before,
body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .star-rating::before,
body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .star-rating span::before,
body.single-product #reviews .commentlist .star-rating::before,
body.single-product #reviews .commentlist .star-rating span::before {
	color: var(--ebp-sp-gold) !important;
	letter-spacing: 1px;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist p.meta,
body.single-product #reviews .commentlist p.meta {
	margin: 0 0 0.5rem;
	font-size: 0.8125rem;
	color: var(--ebp-rev-muted);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.2rem;
	line-height: 1.4;
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .woocommerce-review__author,
body.single-product #reviews .commentlist .woocommerce-review__author {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--ebp-rev-text);
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .woocommerce-review__timestamp,
body.single-product #reviews .commentlist .woocommerce-review__timestamp {
	font-size: 0.8125rem;
	color: var(--ebp-rev-muted);
}

body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .description p,
body.single-product #reviews .commentlist .description p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--ebp-rev-text);
	line-height: 1.65;
}

body.single-product .wp-block-woocommerce-product-details #reviews .woocommerce-noreviews,
body.single-product #reviews .woocommerce-noreviews {
	padding: 2rem 1.5rem;
	text-align: center;
	color: var(--ebp-rev-muted);
	font-size: 0.9375rem;
	background: var(--ebp-rev-bg);
	border: 1px dashed var(--ebp-sp-border);
	border-radius: var(--ebp-rev-radius);
	margin: 0;
}

body.single-product .wp-block-woocommerce-product-details #review_form #reply-title,
body.single-product #review_form #reply-title {
	font-family: var(--ebp-sp-body);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ebp-rev-text);
	margin: 0 0 1.25rem;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating,
body.single-product .comment-form-rating {
	margin-bottom: 1.125rem;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating > label,
body.single-product .comment-form-rating > label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ebp-rev-text);
	margin-bottom: 0.5rem;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars,
body.single-product .comment-form-rating p.stars {
	margin: 0;
	display: flex;
	gap: 0.125rem;
	line-height: 1;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars a,
body.single-product .comment-form-rating p.stars a {
	display: inline-block;
	position: relative;
	width: 1.625rem;
	height: 1.625rem;
	font-size: 0;
	color: transparent;
	text-decoration: none !important;
	line-height: 1;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars a::before,
body.single-product .comment-form-rating p.stars a::before {
	content: "\2605";
	font-size: 1.5rem;
	line-height: 1;
	color: #d8d1c8;
	display: block;
	transition: color 0.1s;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars:hover a::before,
body.single-product .comment-form-rating p.stars:hover a::before {
	color: var(--ebp-sp-gold) !important;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars a:hover ~ a::before,
body.single-product .comment-form-rating p.stars a:hover ~ a::before {
	color: #d8d1c8 !important;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars.selected a::before,
body.single-product .comment-form-rating p.stars.selected a::before {
	color: var(--ebp-sp-gold) !important;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-rating p.stars.selected a.active ~ a::before,
body.single-product .comment-form-rating p.stars.selected a.active ~ a::before {
	color: #d8d1c8 !important;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-comment,
body.single-product .comment-form-comment {
	margin-bottom: 1rem;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-comment > label,
body.single-product .comment-form-comment > label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ebp-rev-text);
	margin-bottom: 0.5rem;
}

body.single-product .wp-block-woocommerce-product-details textarea#comment,
body.single-product textarea#comment {
	width: 100%;
	min-height: 130px;
	border: 1px solid var(--ebp-sp-border);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	background: var(--ebp-rev-bg);
	font-family: var(--ebp-sp-body);
	font-size: 0.9rem;
	color: var(--ebp-rev-text);
	resize: vertical;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
	line-height: 1.55;
}

body.single-product .wp-block-woocommerce-product-details textarea#comment:focus,
body.single-product textarea#comment:focus {
	outline: none;
	border-color: var(--ebp-sp-green);
	box-shadow: 0 0 0 3px rgba(44, 62, 48, 0.1);
}

body.single-product .wp-block-woocommerce-product-details .comment-form-author,
body.single-product .wp-block-woocommerce-product-details .comment-form-email,
body.single-product .comment-form-author,
body.single-product .comment-form-email {
	margin-bottom: 0.875rem;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-author label,
body.single-product .wp-block-woocommerce-product-details .comment-form-email label,
body.single-product .comment-form-author label,
body.single-product .comment-form-email label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ebp-rev-text);
	margin-bottom: 0.375rem;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-author input,
body.single-product .wp-block-woocommerce-product-details .comment-form-email input,
body.single-product .comment-form-author input,
body.single-product .comment-form-email input {
	width: 100%;
	border: 1px solid var(--ebp-sp-border);
	border-radius: 8px;
	padding: 0.6rem 0.875rem;
	background: var(--ebp-rev-bg);
	font-family: var(--ebp-sp-body);
	font-size: 0.9rem;
	color: var(--ebp-rev-text);
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
}

body.single-product .wp-block-woocommerce-product-details .comment-form-author input:focus,
body.single-product .wp-block-woocommerce-product-details .comment-form-email input:focus,
body.single-product .comment-form-author input:focus,
body.single-product .comment-form-email input:focus {
	outline: none;
	border-color: var(--ebp-sp-green);
	box-shadow: 0 0 0 3px rgba(44, 62, 48, 0.1);
}

body.single-product .wp-block-woocommerce-product-details #respond input[type="text"],
body.single-product .wp-block-woocommerce-product-details #respond input[type="email"],
body.single-product .wp-block-woocommerce-product-details #respond textarea,
body.single-product #respond input[type="text"],
body.single-product #respond input[type="email"],
body.single-product #respond textarea {
	border: 1px solid var(--ebp-sp-border);
	border-radius: 8px;
	font-family: var(--ebp-sp-body);
}

body.single-product .wp-block-woocommerce-product-details .form-submit,
body.single-product .form-submit {
	margin: 0;
}

body.single-product .wp-block-woocommerce-product-details #respond input[type="submit"],
body.single-product .wp-block-woocommerce-product-details #respond .submit,
body.single-product .wp-block-woocommerce-product-details #submit,
body.single-product #respond input[type="submit"],
body.single-product #respond .submit,
body.single-product #submit {
	display: block !important;
	width: 100% !important;
	padding: 0.8rem 1rem !important;
	background: var(--ebp-sp-gold) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 8px !important;
	font-family: var(--ebp-sp-body) !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: background 0.15s !important;
	box-shadow: none !important;
}

body.single-product .wp-block-woocommerce-product-details #respond input[type="submit"]:hover,
body.single-product .wp-block-woocommerce-product-details #submit:hover,
body.single-product #respond input[type="submit"]:hover,
body.single-product #submit:hover {
	background: #b88f3f !important;
}

body.single-product .wp-block-woocommerce-product-details #review_form .must-log-in,
body.single-product .wp-block-woocommerce-product-details #review_form .logged-in-as,
body.single-product #review_form .must-log-in,
body.single-product #review_form .logged-in-as {
	font-size: 0.8125rem;
	color: var(--ebp-rev-muted);
	margin-bottom: 1rem;
}

body.single-product .wp-block-woocommerce-product-details #review_form .must-log-in a,
body.single-product .wp-block-woocommerce-product-details #review_form .logged-in-as a,
body.single-product #review_form .must-log-in a,
body.single-product #review_form .logged-in-as a {
	color: var(--ebp-sp-green);
	text-decoration: none;
}

@media (max-width: 768px) {
	body.single-product .wp-block-woocommerce-product-details #reviews,
	body.single-product #reviews {
		flex-direction: column-reverse;
	}

	body.single-product .wp-block-woocommerce-product-details #review_form_wrapper,
	body.single-product #review_form_wrapper {
		width: 100%;
		position: static;
	}
}

@media (max-width: 480px) {
	body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .comment_container,
	body.single-product #reviews .commentlist .comment_container {
		padding: 0.875rem;
		gap: 0.75rem;
	}

	body.single-product .wp-block-woocommerce-product-details #reviews .commentlist .avatar,
	body.single-product #reviews .commentlist .avatar {
		width: 36px;
		height: 36px;
		min-width: 36px;
	}

	body.single-product .wp-block-woocommerce-product-details #review_form_wrapper,
	body.single-product #review_form_wrapper {
		padding: 1.125rem;
	}
}

@media (max-width: 600px) {
	body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs,
	body.single-product ul.tabs.wc-tabs {
		max-width: 100%;
		border-radius: 12px;
		padding: 0.25rem !important;
	}

	body.single-product .wp-block-woocommerce-product-details ul.tabs.wc-tabs li a,
	body.single-product ul.tabs.wc-tabs li a {
		padding: 0.5rem 0.85rem !important;
		font-size: 0.75rem !important;
	}
}
