/**
 * Product Page: Certifications & Payment Icons Styles
 * ClickUp Task: 86ewyqx03
 *
 * Design spec:
 *   - Labels: Barlow Regular 14px, #000
 *   - Cert logos: horizontal row, 24px gap, varying sizes (36x48, 48x48, 59x48)
 *   - Payment icons: horizontal row, 12px gap
 *   - Dividers: 1px solid #e4e5e7
 *   - SKU / Categories: Barlow Regular 14px, #4a4a4a
 *
 * @package Blaze_Commerce
 * @since 1.0.0
 */

/* ───────────────────────────────────────────────
   Container
   ─────────────────────────────────────────────── */
.blaze-certs-payment-section {
	width: 100%;
	margin-top: 4px;
}

/* ───────────────────────────────────────────────
   Section Divider — 1px horizontal rule
   ─────────────────────────────────────────────── */
.blaze-section-divider {
	height: 1px;
	background: #e4e5e7;
	margin: 12px 0;
}

/* ───────────────────────────────────────────────
   Certifications Row
   ─────────────────────────────────────────────── */
.blaze-certs-row {
	padding: 4px 0;
}

a.blaze-certs-label.blaze-cert-logo-link {
	display: block;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 26px;
	color: #000;
	margin-bottom: 8px;
	text-decoration: none;
	cursor: pointer;
}

a.blaze-certs-label:hover {
	opacity: 0.7;
}

.blaze-certs-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}

.blaze-cert-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.15s ease;
}

.blaze-cert-logo-link:hover {
	opacity: 0.7;
}

.blaze-cert-logo-link img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

/* Fallback when certification logo image is missing */
.blaze-cert-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid #e4e5e7;
	border-radius: 4px;
	background: #f9f9f9;
	font-family: 'Barlow', sans-serif;
	font-size: 9px;
	font-weight: 500;
	color: #4a4a4a;
	text-align: center;
	line-height: 1.2;
	padding: 4px;
	word-break: break-word;
	overflow: hidden;
}

/* ───────────────────────────────────────────────
   Payment Icons Row
   ─────────────────────────────────────────────── */
.blaze-payment-row {
	padding: 4px 0;
}

.blaze-payment-label {
	display: block;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	color: #000;
	margin-bottom: 8px;
}

.blaze-payment-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.blaze-payment-icons svg,
.blaze-payment-icons img {
	flex-shrink: 0;
}

/* ───────────────────────────────────────────────
   SKU & Categories
   ─────────────────────────────────────────────── */
.blaze-product-meta-row {
	padding: 4px 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.blaze-meta-item {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	color: #4a4a4a;
}

.blaze-meta-item a {
	color: #59402e;
	text-decoration: none;
}

.blaze-meta-item a:hover {
	text-decoration: underline;
}

/* ───────────────────────────────────────────────
   Responsive — wrap logos, reduce gap on mobile
   ─────────────────────────────────────────────── */
@media (max-width: 689px) {
	.blaze-certs-logos {
		gap: 16px;
	}

	.blaze-payment-icons {
		gap: 8px;
	}

	.blaze-cert-logo-link img {
		height: 36px;
	}
}
