/* ==========================================================================
   bzBOC Hero – base styles (provided by Best of Cooking design)
   ========================================================================== */

.cc-hero-shell {
	background: #fff;
	border: 1px solid #D9D0C5;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(32,55,43,.06);
	position: relative; /* anchor for slider UI overlay */
}

.cc-hero-image {
	min-height: 560px;
	display: flex;
	align-items: stretch;
}

.cc-hero-content {
	max-width: 760px;
	padding: 56px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	font-size: 16px; /* reset from .bzboc-slides font-size:0 */
}

.cc-kicker {
	display: inline-block;
	background: rgba(201,164,81,.18);
	border: 1px solid rgba(201,164,81,.35);
	color: #E7D7A0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
}

.cc-h1 {
	font-family: 'Playfair Display', serif;
	font-size: 62px;
	line-height: 1.04;
	color: #fff;
	margin: 18px 0 0;
}

.cc-hero-copy {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255,255,255,.82);
	max-width: 620px;
	margin: 16px 0 0;
	font-family: 'Inter', sans-serif;
}

.cc-hero-bottom {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.cc-stat-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 22px;
}

.cc-stat {
	background: rgba(255,255,255,.14);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	color: #fff;
	padding: 10px 16px;
	font-size: 13px;
	font-family: 'Inter', sans-serif;
}

.cc-btn-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.cc-btn-solid,
.cc-btn-outline {
	display: inline-block;
	border-radius: 999px;
	padding: 13px 24px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
}

.cc-btn-solid {
	background: #fff;
	color: #20372B;
}

.cc-btn-outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.65);
}

/* ==========================================================================
   bzBOC Hero Slider
   ========================================================================== */

.bzboc-slides {
	position: relative;
	min-height: 560px; /* matches .cc-hero-image min-height */
	font-size: 0; /* eliminate inline-block gap that causes space above first slide */
}

.bzboc-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: stretch;
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
	z-index: 0;
}

.bzboc-slide--active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

/* Slider controls overlay */
.bzboc-slider-ui {
	position: absolute;
	bottom: 28px;
	left: 56px; /* aligns with .cc-hero-content padding */
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Prev / Next arrows */
.bzboc-nav {
	background: rgba(255,255,255,.15);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	padding: 0;
}

.bzboc-nav:hover {
	background: rgba(255,255,255,.30);
}

/* Dot indicators */
.bzboc-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bzboc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.40);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bzboc-dot--active {
	background: #fff;
	transform: scale(1.35);
}

/* Responsive */
@media (max-width: 768px) {
	.cc-h1 {
		font-size: 38px;
	}

	.cc-hero-content {
		padding: 32px;
	}

	.bzboc-slider-ui {
		left: 32px;
		bottom: 20px;
	}
}

@media (max-width: 480px) {
	.cc-h1 {
		font-size: 28px;
	}

	.cc-hero-content {
		padding: 24px;
	}

	.bzboc-slider-ui {
		left: 24px;
	}
}
