/* ─── Showroom Hero Widget ───────────────────────────────────────────────── */

/* Prevent full-bleed element from causing horizontal scrollbar.
   overflow-x: clip does NOT break position:fixed/sticky like hidden does. */
html {
	overflow-x: clip;
}

.hbc-sh-hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: 720px;
	padding: 70px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hbc-sh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.48);
	z-index: 1;
}

.hbc-sh-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0;
}

.hbc-sh-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.hbc-sh-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.12;
	color: #ffffff;
	margin: 0 0 20px;
	padding: 0;
}

.hbc-sh-desc {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
	color: #ffffff;
	margin-bottom: 22px;
}

.hbc-sh-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 40px;
	row-gap: 14px;
	margin-bottom: 28px;
	width: 50%;
}

.hbc-sh-point {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	min-width: 0;
}

.hbc-sh-point-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	margin-top: 2px;
	color: #f5b248;
}

.hbc-sh-point-icon i,
.hbc-sh-point-icon svg {
	font-size: 12px;
	width: 12px;
	height: 12px;
}

.hbc-sh-point-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: #ffffff;
}

.hbc-sh-btn-link {
	display: inline-block;
	text-decoration: none;
}

.hbc-sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 34px;
	border-radius: 40px;
	background-color: #f5b248;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.hbc-sh-btn-link:hover .hbc-sh-btn,
.hbc-sh-btn:hover {
	transform: translateY(-2px);
	opacity: 0.9;
	text-decoration: none;
}

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

@media (max-width: 1024px) {
	.hbc-sh-hero {
		min-height: 620px;
		padding: 0 0 60px;
	}

	.hbc-sh-title {
		font-size: 44px;
	}

	.hbc-sh-content {
		max-width: 620px;
	}
}

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

@media (max-width: 767px) {
	.hbc-sh-hero {
		align-items: flex-end;
		min-height: 560px;
		padding: 90px 0 50px;
		background-position: center center;
	}

	.hbc-sh-inner {
		padding: 0 24px;
	}

	.hbc-sh-content {
		max-width: 100%;
	}

	.hbc-sh-title {
		font-size: 34px;
		line-height: 1.15;
	}

	.hbc-sh-desc {
		font-size: 14px;
		line-height: 1.55;
	}

	.hbc-sh-points {
		grid-template-columns: 1fr;
		row-gap: 12px;
		width: 100%;
	}

	.hbc-sh-point-text {
		font-size: 13px;
	}

	.hbc-sh-btn {
		font-size: 13px;
		padding: 14px 26px;
	}
}

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

@media (max-width: 480px) {
	.hbc-sh-title {
		font-size: 28px;
	}

	.hbc-sh-hero {
		min-height: 520px;
	}

	.hbc-sh-inner {
		padding-left: 18px;
		padding-right: 18px;
	}
}
