/* =========================================================================
 * CCW Shop Hero — centered shop intro.
 * ===================================================================== */

.ccw-shero { position: relative; width: 100%; overflow: hidden; }
.ccw-shero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}
.ccw-shero__inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	padding-block: var(--ccw-space-7);
}
.ccw-shero__eyebrow {
	font-family: var(--ccw-font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ccw-rose-deep);
}
.ccw-shero__title { font-family: var(--ccw-font-display); font-size: var(--ccw-fs-h1); line-height: 1.12; color: #2A1E2C; margin: 0; }
.ccw-shero__heart { display: inline-flex; color: var(--ccw-gold); }
.ccw-shero__heart svg { width: 1em; height: 1em; fill: currentColor; }
.ccw-shero__body { font-size: 1rem; line-height: 1.7; color: #4A3F49; max-width: 62ch; }
.ccw-shero__body p { margin: 0 0 1em; }
.ccw-shero__body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
	.ccw-shero__title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
}
