/*
 * AOcos Props Safety Notice — visual layer.
 *
 * The notice lives in the WooCommerce single-product summary area
 * (between the product excerpt and the price). On the live site
 * it sits above the WAPF field group, in the same column as the
 * product title and price.
 *
 * Design rules (owner-approved):
 *  - The "Safety Notice" badge is the same dark + gold theme as the
 *    rest of the product surface (matches the Footwear / Costume
 *    dark theme on Staging).
 *  - The body copy is full sentence, plain text, no small-print /
 *    low-contrast styling. WCAG AA contrast (4.5:1) on the chosen
 *    dark + light text.
 *  - The notice is NOT used as a marketing surface, has no
 *    call-to-action, and does not claim the product is safe to
 *    bring into any specific venue / event / aircraft.
 *
 * The notice is scoped to the `cosplay-props` category via the PHP
 * gating; the CSS rules are inert on other products (the wrapper
 * div is not rendered).
 */

body.single-product .aocos-props-safety-notice {
	margin: 18px 0 24px 0;
	padding: 16px 18px;
	border: 1px solid var(--aocos-gold, #c9a84c);
	border-left-width: 4px;
	border-radius: 10px;
	background: rgba(201, 168, 76, 0.06);
	color: var(--aocos-text-dark, #1a1d26);
	font-size: 0.95rem;
	line-height: 1.6;
}

body.single-product .aocos-props-safety-notice__badge {
	display: inline-block;
	padding: 3px 10px;
	margin: 0 0 8px 0;
	background: var(--aocos-gold, #c9a84c);
	color: var(--aocos-dark, #0f1117);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 4px;
}

body.single-product .aocos-props-safety-notice__body {
	margin: 0;
	color: var(--aocos-text-dark, #1a1d26);
}

@media (max-width: 600px) {
	body.single-product .aocos-props-safety-notice {
		padding: 14px 14px;
		font-size: 0.9rem;
	}
}
