/**
 * Single product: long description block + inline COA (scoped)
 */

.peptide-product-docs {
	max-width: 1200px;
	margin: 2.5rem auto 0;
	padding: 0;
	box-sizing: border-box;
}

.peptide-product-docs__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

.peptide-product-docs__description {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	padding: 1.25rem 1.35rem;
	min-width: 0;
	box-sizing: border-box;
}

.peptide-product-docs__description .woocommerce-product-details__description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #374151;
}

.peptide-product-docs__description .woocommerce-product-details__description > *:first-child {
	margin-top: 0;
}

.peptide-product-docs__description .woocommerce-product-details__description > *:last-child {
	margin-bottom: 0;
}

/* Column 2: COA below short description (scoped so it never spans the page grid) */
.ps-single-product-col--summary .peptide-product-coa-inline {
	margin-top: 1.25rem;
	padding: 0.85rem 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	background: #f9fafb;
	box-sizing: border-box;
	max-width: 100%;
}

.peptide-product-coa-inline__title {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
}

.peptide-product-coa-inline__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.peptide-product-coa-inline__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 0.375rem;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
	border: 1px solid transparent;
}

.peptide-product-coa-inline__btn--view {
	background: #2563eb;
	color: #fff;
	border-color: #2563eb;
}

.peptide-product-coa-inline__btn--view:hover {
	background: #1d4ed8;
	color: #fff;
}

/* Mobile / narrow: long description + COA readable without horizontal scroll */
@media (max-width: 767px) {
	.peptide-product-docs {
		margin-top: 1.75rem;
		padding: 0 0.75rem;
		max-width: 100%;
	}

	.peptide-product-docs__description {
		padding: 1rem 0.9rem;
	}

	.peptide-product-docs__description .woocommerce-product-details__description {
		word-break: break-word;
		overflow-wrap: anywhere;
	}

	.ps-single-product-col--summary .peptide-product-coa-inline {
		padding: 0.75rem 0.85rem;
	}

	.peptide-product-coa-inline__actions {
		width: 100%;
	}

	.peptide-product-coa-inline__btn {
		min-height: 44px;
		box-sizing: border-box;
	}
}
