/* ─── Product Hero Widget ────────────────────────────────────────────────── */

.hbc-ph-wrap {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 430px;
	padding: 90px 8%;
	background: #000;
	overflow: hidden;
}

.hbc-ph-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 68%;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	z-index: 1;
}

.hbc-ph-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.86) 12%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.2) 100%);
}

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

.hbc-ph-content {
	position: relative;
	width: 44%;
	min-width: 0;
}

.hbc-ph-breadcrumb {
	margin-bottom: 20px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
}

.hbc-ph-breadcrumb a.hbc-ph-breadcrumb-link {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.hbc-ph-breadcrumb a.hbc-ph-breadcrumb-link:hover {
	opacity: 0.7;
	text-decoration: underline;
}

.hbc-ph-breadcrumb-sep {
	display: inline-block;
	margin: 0 6px;
	color: #ffffff;
}

.hbc-ph-breadcrumb-current {
	color: #ffffff;
}

.hbc-ph-title {
	margin: 0 0 42px;
	padding: 0;
	font-size: 54px;
	font-weight: 800;
	line-height: 1.05;
	color: #fff;
}

.hbc-ph-desc {
	max-width: 430px;
	margin-bottom: 70px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
}

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

.hbc-ph-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 230px;
	padding: 15px 34px;
	border-radius: 40px;
	background: #fff;
	color: #111;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	white-space: nowrap;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.hbc-ph-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.hbc-ph-btn-icon i,
.hbc-ph-btn-icon svg {
	font-size: 13px;
	width: 13px;
	height: 13px;
}

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

@media (max-width: 1024px) {
	.hbc-ph-wrap {
		min-height: 390px;
		padding: 70px 6%;
	}

	.hbc-ph-content {
		width: 50%;
	}

	.hbc-ph-title {
		font-size: 42px;
		margin-bottom: 30px;
	}

	.hbc-ph-desc {
		font-size: 15px;
		margin-bottom: 48px;
	}
}

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

@media (max-width: 767px) {
	.hbc-ph-wrap {
		align-items: flex-end;
		min-height: 520px;
		padding: 70px 24px;
	}

	.hbc-ph-image {
		width: 100%;
		background-position: center;
		opacity: 0.55;
	}

	.hbc-ph-image::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.72) 48%, #000 100%);
	}

	.hbc-ph-content {
		width: 100% !important;
	}

	.hbc-ph-breadcrumb {
		font-size: 11px;
		margin-bottom: 16px;
	}

	.hbc-ph-title {
		font-size: 34px;
		margin-bottom: 24px;
	}

	.hbc-ph-desc {
		max-width: 100%;
		font-size: 14px;
		margin-bottom: 34px;
	}

	.hbc-ph-btn {
		min-width: 0;
		width: 100%;
		max-width: 260px;
		white-space: normal;
	}
}

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

@media (max-width: 480px) {
	.hbc-ph-wrap {
		min-height: 470px;
		padding: 56px 18px;
	}

	.hbc-ph-title {
		font-size: 29px;
	}
}
