/* Shop & category archive banner — Razzi Child */

.category-banner-section {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 32px 20px 0;
}

.banner-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	min-height: 300px;
	display: flex;
	align-items: flex-end;
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner-card:not(.has-image) .banner-overlay {
	background: linear-gradient(
		135deg,
		rgba(43, 37, 96, 0.95) 0%,
		rgba(43, 37, 96, 0.75) 100%
	);
}

.banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(17, 17, 17, 0.82) 0%,
		rgba(17, 17, 17, 0.35) 55%,
		rgba(17, 17, 17, 0.15) 100%
	);
}

.banner-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 40px 48px;
	color: #ffffff;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -1px;
    color: #ffffff;
}

.banner-description {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
	max-width: 820px;
}

.banner-description p {
	margin: 0 0 12px;
}

.banner-description p:last-child {
	margin-bottom: 0;
}

.breadcrumb-nav {
	padding: 20px 0 8px;
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-muted);
}

.breadcrumb-list a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
	color: var(--color-accent);
}

.breadcrumb-separator {
	color: var(--color-border);
	user-select: none;
}

.breadcrumb-list li[aria-current="page"] {
	color: var(--color-primary);
	font-weight: 600;
}

@media (max-width: 767px) {
	.category-banner-section {
		padding: 20px 16px 0;
	}

	.banner-card {
		min-height: 220px;
		border-radius: 12px;
	}

	.banner-content {
		padding: 28px 24px;
	}

	.banner-description {
		font-size: 14px;
		line-height: 1.65;
	}
}
