.cgt-product-description {
	margin: 32px auto;
	font-size: 15px;
	line-height: 1.7;
	color: #1F1F1F;
	max-width: 100%;
	text-align: center;
}
.cgt-product-description img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 16px auto !important;
	border-radius: 8px;
}
.cgt-product-description p,
.cgt-product-description h1,
.cgt-product-description h2,
.cgt-product-description h3,
.cgt-product-description ul,
.cgt-product-description ol {
	text-align: left;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.cgt-reviews-section {
	margin: 40px 0;
}
.cgt-reviews-heading {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	margin-bottom: 20px;
	text-align: center;
}

/* Hide WooCommerce's default "no reviews yet" and "only verified owners" messages —
   we want everyone to be able to review, and the empty message looks noisy next to
   curated reviews. (Also turn off the "verified owners only" restriction in
   WooCommerce → Settings → Products → Reviews.) */
.woocommerce-noreviews,
p.woocommerce-verification-required {
	display: none !important;
}

/* ---------- Curated reviews grid ---------- */
.cgt-curated-reviews {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}
.cgt-curated-review-card {
	background: #FBFAF7;
	border: 1px solid #DDD6C8;
	border-radius: 10px;
	padding: 16px;
}
.cgt-curated-review-photo {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
}
.cgt-curated-review-stars {
	color: #880000;
	font-size: 15px;
	margin-bottom: 8px;
}
.cgt-verified-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #2E7D32;
	background: #E8F5E9;
	padding: 2px 8px;
	border-radius: 10px;
	vertical-align: middle;
	margin-left: 4px;
}
.cgt-curated-review-text {
	font-size: 14px;
	color: #1F1F1F;
	line-height: 1.6;
	margin-bottom: 8px;
}
.cgt-curated-review-name {
	font-size: 13px;
	font-weight: 600;
	color: #5C6058;
	margin: 0;
}

/* ---------- Native WooCommerce reviews — also gallery-style, not an accordion list ---------- */
#reviews #comments {
	margin-bottom: 24px;
}
#reviews #comments ol.commentlist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
#reviews #comments ol.commentlist li.comment {
	background: #FBFAF7;
	border: 1px solid #DDD6C8;
	border-radius: 10px;
	padding: 16px;
	list-style: none;
}
#reviews #comments ol.commentlist .comment-text {
	border: none;
	padding: 0;
	margin: 0;
	box-shadow: none;
}
#reviews #comments ol.commentlist .star-rating {
	margin-bottom: 8px;
}
#reviews #comment-list img.avatar,
#reviews .woocommerce-review__avatar {
	display: none;
}

@media (max-width: 600px) {
	.cgt-curated-reviews,
	#reviews #comments ol.commentlist {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px;
	}
	.cgt-curated-review-photo {
		height: 100px;
	}
}

.cgt-suggested-price-box {
	background: #FBF3F1;
	border: 1px dashed #880000;
	border-radius: 8px;
	padding: 12px 16px;
	margin: 14px 0;
	font-size: 14px;
	color: #1F1F1F;
}
