/* Single-product page: brand logo + brand/category meta.
   Loaded only on is_product() by inc/product-page.php. */

/* Brand logo shown in place of the product gallery */
.brand-logo-featured {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5em;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	min-height: 220px;
	box-sizing: border-box;
}

.brand-logo-featured__img {
	max-width: 100%;
	max-height: 320px;
	width: auto;
	height: auto;
	display: block;
}

/* Brand / Category meta block under the title */
.product-meta-block {
	margin: 0 0 1.25em;
	font-size: 0.95em;
	line-height: 1.6;
}

.product-meta-row {
	margin: 0 0 0.25em;
}

.product-meta-label {
	font-weight: 700;
	color: #444;
	margin-right: 0.35em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 0.82em;
}

.product-meta-value {
	color: #222;
}

/* Brand shown as a subtle badge */
.brand-badge {
	display: inline-block;
	padding: 0.15em 0.6em;
	background: #f2f4f7;
	border: 1px solid #dfe3e8;
	border-radius: 3px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

@media (max-width: 480px) {
	.brand-logo-featured {
		min-height: 160px;
		padding: 1em;
	}
	.brand-logo-featured__img {
		max-height: 200px;
	}
}
