/* ─── Custom Cabinets Widget ───────────────────────────────────────────── */

.hbc-ccab-wrap {
	padding: 50px 4%;
	background: #ffffff;
}

.hbc-ccab-inner {
	display: flex;
	align-items: center;
	gap: 60px;
}

.hbc-ccab-image {
	flex: 0 0 50%;
	overflow: hidden;
	background: #f4f4f4;
}

.hbc-ccab-image img {
	display: block;
	width: 100%;
	height: auto;
}

.hbc-ccab-image-right .hbc-ccab-image {
	order: 2;
}

.hbc-ccab-content {
	flex: 1 1 auto;
	min-width: 0;
}

.hbc-ccab-title {
	margin: 0 0 22px;
	padding: 0;
	color: #222222;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
}

.hbc-ccab-intro {
	margin: 0 0 24px;
	color: #7a4a36;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}

.hbc-ccab-sections {
	margin-bottom: 28px;
}

.hbc-ccab-section {
	margin-bottom: 14px;
	line-height: 1.7;
}

.hbc-ccab-section-label {
	display: inline;
	margin-right: 6px;
	color: #333333;
	font-size: 15px;
	font-weight: 700;
}

.hbc-ccab-section-content {
	display: inline;
	color: #a96a4a;
	font-size: 14px;
	font-weight: 400;
}

.hbc-ccab-btn-wrap {
	margin-top: 8px;
}

.hbc-ccab-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	padding: 14px 30px;
	background: #a78866;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border-radius: 999px;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.hbc-ccab-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-ccab-inner {
		gap: 40px;
	}

	.hbc-ccab-image {
		height: auto;
	}

	.hbc-ccab-title {
		font-size: 24px;
	}

	.hbc-ccab-intro {
		font-size: 13px;
	}

	.hbc-ccab-section-label {
		font-size: 14px;
	}

	.hbc-ccab-section-content {
		font-size: 13px;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-ccab-wrap {
		padding: 32px 18px;
	}

	.hbc-ccab-inner {
		flex-direction: column;
		gap: 24px;
	}

	.hbc-ccab-image,
	.hbc-ccab-image-right .hbc-ccab-image {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		order: unset;
	}

	.hbc-ccab-content {
		width: 100%;
	}

	.hbc-ccab-title {
		font-size: 22px;
	}

	.hbc-ccab-intro {
		margin-bottom: 18px;
	}

	.hbc-ccab-sections {
		margin-bottom: 20px;
	}

	.hbc-ccab-btn {
		display: flex;
		width: 100%;
	}
}

/* ─── Small mobile (≤480px) ─────────────────────────────────────────────── */

@media (max-width: 480px) {
	.hbc-ccab-image,
	.hbc-ccab-image-right .hbc-ccab-image {
		height: auto;
	}

	.hbc-ccab-title {
		font-size: 20px;
	}
}
