.bj-home-preview-page {
	--bjhp-black: #171717;
	--bjhp-black-soft: #242424;
	--bjhp-paper: #f3f4f1;
	--bjhp-white: #ffffff;
	--bjhp-yellow: #f3ca19;
	--bjhp-yellow-strong: #ffd400;
	--bjhp-green: #147a54;
	--bjhp-red: #b54135;
	--bjhp-line: #d9dcd6;
	--bjhp-muted: #60655f;
	background: var(--bjhp-paper);
}

.bjhp,
.bjhp * {
	letter-spacing: 0;
}

.bjhp {
	background: var(--bjhp-paper);
	color: var(--bjhp-black);
	overflow: hidden;
}

.bjhp h1,
.bjhp h2,
.bjhp h3,
.bjhp p {
	margin-top: 0;
}

.bjhp h1,
.bjhp h2,
.bjhp h3 {
	color: inherit;
}

.bjhp-icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
}

.bjhp-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.bjhp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	color: var(--bjhp-green);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.bjhp-hero {
	--bjhp-shift-x: 0px;
	--bjhp-shift-y: 0px;
	position: relative;
	height: min(580px, calc(100svh - 190px));
	min-height: 470px;
	border-bottom: 1px solid var(--bjhp-line);
	overflow: hidden;
}

.bjhp-hero__slides,
.bjhp-hero__slide {
	position: absolute;
	inset: 0;
}

.bjhp-hero__slide {
	background: #f3f4f1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 480ms ease, visibility 480ms ease;
	visibility: hidden;
}

.bjhp-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.bjhp-hero__slide::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 38%;
	background: var(--bjhp-yellow);
	clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
	content: "";
}

.bjhp-hero__slide::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 43%;
	height: 12px;
	background: var(--bjhp-red);
	content: "";
}

.bjhp-hero__slide--dark {
	background: #171717;
	color: #ffffff;
}

.bjhp-hero__slide--dark::before {
	width: 40%;
	background: var(--bjhp-yellow-strong);
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.bjhp-hero__slide--dark::after {
	width: 47%;
	height: 12px;
	background: var(--bjhp-red);
}

.bjhp-hero__inner {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	z-index: 1;
}

.bjhp-hero__content {
	position: relative;
	z-index: 2;
	width: min(52%, 650px);
	padding: 42px 0 38px;
}

.bjhp-hero__eyebrow {
	margin-bottom: 18px;
}

.bjhp-hero__title {
	max-width: 650px;
	margin-bottom: 20px;
	font-size: 60px;
	font-weight: 900;
	line-height: 1.02;
}

.bjhp-hero__slide--light .bjhp-hero__title,
.bjhp-hero__slide--light .bjhp-hero__price,
.bjhp-hero__slide--light .bjhp-hero__price .price {
	color: var(--bjhp-black);
}

.bjhp-hero__lead {
	max-width: 570px;
	margin-bottom: 24px;
	color: #484d48;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.48;
}

.bjhp-hero__slide--dark .bjhp-hero__eyebrow {
	color: var(--bjhp-yellow-strong);
}

.bjhp-hero__slide--dark .bjhp-hero__lead {
	color: #cfd2cc;
}

.bjhp-hero__offer {
	display: grid;
	grid-template-columns: max-content max-content;
	align-items: end;
	gap: 2px 16px;
	width: max-content;
	max-width: 100%;
	margin-bottom: 26px;
	padding-left: 14px;
	border-left: 5px solid var(--bjhp-yellow);
}

.bjhp-hero__offer-label {
	grid-column: 1 / -1;
	color: var(--bjhp-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.bjhp-hero__price,
.bjhp-hero__price .price {
	color: var(--bjhp-black);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.1;
}

.bjhp-hero__price del {
	margin-right: 7px;
	color: #737873;
	font-size: 14px;
	font-weight: 600;
	opacity: 1;
}

.bjhp-hero__price ins {
	text-decoration: none;
}

.bjhp-hero__installment {
	padding-bottom: 3px;
	color: var(--bjhp-green);
	font-size: 14px;
	font-weight: 800;
}

.bjhp-hero__slide--dark .bjhp-hero__offer-label {
	color: #bfc3bd;
}

.bjhp-hero__slide--dark .bjhp-hero__price,
.bjhp-hero__slide--dark .bjhp-hero__price .price {
	color: #ffffff;
}

.bjhp-hero__slide--dark .bjhp-hero__price del {
	color: #aeb2ac;
}

.bjhp-hero__slide--dark .bjhp-hero__installment {
	color: var(--bjhp-yellow-strong);
}

.bjhp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bjhp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	gap: 10px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.15;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.bjhp-button:hover {
	transform: translateY(-2px);
}

.bjhp-button--primary {
	background: var(--bjhp-black);
	color: #ffffff;
}

.bjhp-button--primary:hover {
	background: #000000;
	color: var(--bjhp-yellow-strong);
}

.bjhp-button--secondary {
	border-color: #a9aea8;
	background: rgba(255, 255, 255, 0.54);
	color: var(--bjhp-black);
}

.bjhp-button--secondary:hover {
	border-color: var(--bjhp-black);
	background: var(--bjhp-white);
	color: var(--bjhp-black);
}

.bjhp-button--yellow {
	background: var(--bjhp-yellow-strong);
	color: #121212;
}

.bjhp-button--yellow:hover {
	background: #ffffff;
	color: #121212;
}

.bjhp-button--dark {
	background: var(--bjhp-black);
	color: #ffffff;
}

.bjhp-button--dark:hover {
	background: #000000;
	color: var(--bjhp-yellow-strong);
}

.bjhp-hero__slide--dark .bjhp-button--primary {
	background: var(--bjhp-yellow-strong);
	color: #111111;
}

.bjhp-hero__slide--dark .bjhp-button--primary:hover {
	background: #ffffff;
	color: #111111;
}

.bjhp-hero__slide--dark .bjhp-button--secondary {
	border-color: #686c67;
	background: rgba(255, 255, 255, 0.04);
	color: #ffffff;
}

.bjhp-hero__slide--dark .bjhp-button--secondary:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.bjhp-hero__visual {
	position: absolute;
	z-index: 1;
	top: 0;
	right: -7%;
	bottom: -5%;
	width: 69%;
	pointer-events: none;
}

.bjhp-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	transform: translate3d(var(--bjhp-shift-x), var(--bjhp-shift-y), 0);
	transition: transform 260ms ease-out;
}

.bjhp.is-enhanced .bjhp-hero__slide .bjhp-hero__content {
	opacity: 0;
	transform: translateX(-16px);
	transition: opacity 420ms ease 80ms, transform 420ms ease 80ms;
}

.bjhp.is-enhanced .bjhp-hero__slide .bjhp-hero__visual {
	opacity: 0;
	transform: translateX(24px);
	transition: opacity 520ms ease 100ms, transform 520ms ease 100ms;
}

.bjhp.is-enhanced .bjhp-hero__slide.is-active .bjhp-hero__content,
.bjhp.is-enhanced .bjhp-hero__slide.is-active .bjhp-hero__visual {
	opacity: 1;
	transform: translateX(0);
}

.bjhp-hero__navigation {
	position: absolute;
	z-index: 5;
	left: 50%;
	bottom: 22px;
	display: none;
	align-items: center;
	justify-content: flex-end;
	width: min(1204px, calc(100% - 36px));
	gap: 8px;
	pointer-events: none;
	transform: translateX(-50%);
}

.bjhp.is-enhanced .bjhp-hero__navigation {
	display: flex;
}

.bjhp-hero__control,
.bjhp-hero__dot {
	border: 1px solid rgba(17, 17, 17, 0.18);
	background: rgba(255, 255, 255, 0.94);
	color: #111111;
	cursor: pointer;
	pointer-events: auto;
}

.bjhp-hero__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border-radius: 6px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.bjhp-hero__control:hover,
.bjhp-hero__control:focus-visible {
	border-color: #111111;
	background: var(--bjhp-yellow-strong);
	outline: 0;
}

.bjhp-hero__control--prev .bjhp-icon {
	transform: rotate(180deg);
}

.bjhp-hero__dots {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 9px 11px;
	border: 1px solid rgba(17, 17, 17, 0.16);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.bjhp-hero__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #8d918c;
	transition: width 180ms ease, background-color 180ms ease;
}

.bjhp-hero__dot.is-active {
	width: 25px;
	border-radius: 4px;
	background: #111111;
}

.bjhp-assurances {
	position: relative;
	z-index: 3;
	background: var(--bjhp-black);
	color: #ffffff;
}

.bjhp-assurances__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bjhp-assurance {
	display: flex;
	align-items: center;
	min-height: 94px;
	gap: 13px;
	padding: 20px 24px;
	border-right: 1px solid #3b3b3b;
}

.bjhp-assurance:last-child {
	border-right: 0;
}

.bjhp-assurance > .bjhp-icon {
	width: 27px;
	height: 27px;
	color: var(--bjhp-yellow-strong);
}

.bjhp-assurance div {
	display: grid;
	gap: 4px;
}

.bjhp-assurance strong {
	font-size: 14px;
	font-weight: 850;
	line-height: 1.2;
}

.bjhp-assurance span:not(.bjhp-icon) {
	color: #bfc3bd;
	font-size: 12px;
	line-height: 1.3;
}

.bjhp-section {
	padding: 88px 0;
}

.bjhp-section--products {
	background: var(--bjhp-white);
}

.bjhp-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 34px;
}

.bjhp-section__header > div {
	max-width: 760px;
}

.bjhp-section__header h2 {
	margin-bottom: 12px;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.08;
}

.bjhp-section__header p {
	max-width: 680px;
	margin-bottom: 0;
	color: var(--bjhp-muted);
	font-size: 16px;
	line-height: 1.55;
}

.bjhp-text-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 8px;
	padding: 10px 0 8px;
	border-bottom: 2px solid var(--bjhp-yellow);
	color: var(--bjhp-black);
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
}

.bjhp-text-link:hover {
	border-color: var(--bjhp-black);
	color: var(--bjhp-green);
}

.bjhp-text-link .bjhp-icon {
	width: 18px;
	height: 18px;
}

.bjhp-products-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bjhp-products-controls {
	display: none;
	align-items: center;
	gap: 7px;
}

.bjhp.is-enhanced .bjhp-products-controls {
	display: flex;
}

.bjhp-products-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--bjhp-line);
	border-radius: 6px;
	background: var(--bjhp-paper);
	color: var(--bjhp-black);
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.bjhp-products-controls button:first-child .bjhp-icon {
	transform: rotate(180deg);
}

.bjhp-products-controls button:hover:not(:disabled),
.bjhp-products-controls button:focus-visible {
	border-color: var(--bjhp-black);
	background: var(--bjhp-yellow-strong);
	color: #111111;
	outline: 0;
}

.bjhp-products-controls button:disabled {
	cursor: default;
	opacity: 0.35;
}

.bj-home-preview-page .bjhp-products-grid {
	display: grid;
	grid-template-columns: none;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 36px) / 3);
	gap: 18px;
	padding: 10px 2px 28px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.bj-home-preview-page .bjhp-products-grid::-webkit-scrollbar {
	display: none;
}

.bj-home-preview-page .bjhp-products-grid > .bj-product-card-wrap {
	min-width: 0;
	scroll-snap-align: start;
}

.bj-home-preview-page .bjhp-products-grid .bj-product-card {
	border-color: rgba(17, 17, 17, 0.84);
	border-radius: 22px;
	box-shadow: 0 26px 54px -34px rgba(0, 0, 0, 0.32);
}

.bj-home-preview-page .bjhp-products-grid .bj-product-card:hover {
	border-color: rgba(17, 17, 17, 0.96);
	box-shadow: 0 34px 64px -34px rgba(0, 0, 0, 0.45);
}

.bj-home-preview-page .bjhp-products-grid .bj-product-card__media {
	min-height: 0;
	background: var(--bjhp-paper);
}

.bj-home-preview-page .bjhp-products-grid .bj-product-card__footer {
	grid-template-columns: minmax(130px, 1fr) minmax(148px, 0.9fr);
	gap: 14px;
}

.bj-home-preview-page .bjhp-products-grid .bj-product-card__price,
.bj-home-preview-page .bjhp-products-grid .bj-product-card__price .price {
	padding-right: 10px;
	padding-left: 10px;
}

.bjhp-finder {
	padding: 90px 0 96px;
	background: var(--bjhp-black);
	color: #ffffff;
}

.bjhp-section__header--dark .bjhp-eyebrow {
	color: var(--bjhp-yellow-strong);
}

.bjhp-section__header--dark p {
	color: #bfc3bd;
}

.bjhp-finder__tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 32px;
}

.bjhp-finder__tab {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	gap: 9px;
	padding: 12px 16px;
	border: 1px solid #4a4a4a;
	border-radius: 6px;
	background: var(--bjhp-black-soft);
	color: #d6d8d3;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bjhp-finder__tab:hover {
	border-color: #858585;
	color: var(--bjhp-white);
	transform: translateY(-1px);
}

.bjhp-finder__tab.is-active {
	border-color: var(--bjhp-yellow-strong);
	background: var(--bjhp-yellow-strong);
	color: #111111;
}

.bjhp-finder__tab .bjhp-icon {
	width: 20px;
	height: 20px;
}

.bjhp-finder__panels {
	min-height: 515px;
}

.bjhp-finder__panel {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	align-items: center;
	gap: 64px;
}

.bjhp-finder__panel[hidden] {
	display: none;
}

.bjhp-finder__panel.is-active {
	animation: bjhp-panel-in 300ms ease both;
}

@keyframes bjhp-panel-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.bjhp-finder__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	padding: 18px;
	border: 1px solid #454545;
	border-radius: 8px;
	background: #f1f2ef;
	overflow: hidden;
}

.bjhp-finder__media img {
	display: block;
	width: 100%;
	height: 465px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.bjhp-finder__eyebrow {
	display: block;
	margin-bottom: 14px;
	color: var(--bjhp-yellow-strong);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.3;
	text-transform: uppercase;
}

.bjhp-finder__content h3 {
	max-width: 560px;
	margin-bottom: 18px;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.08;
}

.bjhp-finder__content > p {
	max-width: 560px;
	margin-bottom: 24px;
	color: #c9ccc6;
	font-size: 17px;
	line-height: 1.55;
}

.bjhp-finder__features {
	display: grid;
	gap: 11px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.bjhp-finder__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #f0f1ed;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.bjhp-finder__features .bjhp-icon {
	width: 19px;
	height: 19px;
	color: var(--bjhp-yellow-strong);
}

.bjhp-finder__buyline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 23px;
	border-top: 1px solid #454545;
}

.bjhp-finder__buyline > div {
	display: grid;
	gap: 4px;
}

.bjhp-finder__price-label {
	color: #aeb2ac;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.bjhp-finder__buyline strong,
.bjhp-finder__buyline strong .price {
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.1;
}

.bjhp-finder__buyline strong del {
	margin-right: 6px;
	color: #aeb2ac;
	font-size: 13px;
	font-weight: 600;
}

.bjhp-finder__buyline strong ins {
	text-decoration: none;
}

.bjhp-finder__buyline small {
	color: #bfc3bd;
	font-size: 12px;
	font-weight: 700;
}

.bjhp-section--categories {
	background: var(--bjhp-paper);
}

.bjhp-builder-cta {
	position: relative;
	background: var(--bjhp-yellow-strong);
	color: var(--bjhp-black);
	overflow: hidden;
}

.bjhp-builder-cta::after {
	position: absolute;
	top: 0;
	right: 0;
	width: min(31vw, 470px);
	height: 100%;
	background: rgba(255, 255, 255, 0.18);
	clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
	content: "";
	pointer-events: none;
}

.bjhp-builder-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 250px;
	gap: 44px;
	padding-top: 42px;
	padding-bottom: 42px;
}

.bjhp-builder-cta__content {
	min-width: 0;
}

.bjhp-builder-cta .bjhp-eyebrow {
	margin-bottom: 12px;
	color: var(--bjhp-black);
}

.bjhp-builder-cta h2 {
	max-width: 760px;
	margin-bottom: 10px;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.1;
}

.bjhp-builder-cta p {
	max-width: 760px;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.bjhp-builder-cta .bjhp-button {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
}

.bjhp-categories {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--bjhp-line);
	border-left: 1px solid var(--bjhp-line);
}

.bjhp-category {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 20px;
	align-items: center;
	min-height: 112px;
	gap: 15px;
	padding: 18px 20px;
	border-right: 1px solid var(--bjhp-line);
	border-bottom: 1px solid var(--bjhp-line);
	background: rgba(255, 255, 255, 0.56);
	color: var(--bjhp-black);
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.bjhp-category:hover {
	background: var(--bjhp-white);
	color: var(--bjhp-green);
}

.bjhp-category__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
}

.bjhp-category__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bjhp-category__text {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.bjhp-category__text strong {
	font-size: 15px;
	font-weight: 850;
	line-height: 1.25;
}

.bjhp-category__text small {
	color: var(--bjhp-muted);
	font-size: 12px;
	line-height: 1.3;
}

.bjhp-category__arrow {
	width: 18px;
	height: 18px;
}

.bjhp-reviews {
	background: var(--bjhp-white);
}

.bjhp-reviews > .bj-home-section,
.bjhp-reviews > section {
	margin: 0;
}

.bjhp-help {
	background: var(--bjhp-yellow-strong);
	color: var(--bjhp-black);
}

.bjhp-help__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 250px;
	gap: 44px;
	padding-top: 42px;
	padding-bottom: 42px;
}

.bjhp-help .bjhp-eyebrow {
	margin-bottom: 12px;
	color: var(--bjhp-black);
}

.bjhp-help h2 {
	max-width: 760px;
	margin-bottom: 10px;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.1;
}

.bjhp-help p {
	max-width: 700px;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.bjhp.has-reveal-motion .bjhp-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.bjhp.has-reveal-motion .bjhp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

html[data-bj-theme="dark"] .bj-home-preview-page {
	--bjhp-paper: #1b1b1b;
	--bjhp-white: #242424;
	--bjhp-line: #3c3c3c;
	--bjhp-muted: #b7bbb5;
}

html[data-bj-theme="dark"] .bjhp {
	color: #f4f5f1;
}

html[data-bj-theme="dark"] .bjhp-text-link,
html[data-bj-theme="dark"] .bjhp-category {
	color: #f4f5f1;
}

html[data-bj-theme="dark"] .bjhp-section__header h2,
html[data-bj-theme="dark"] .bjhp-section__header p,
html[data-bj-theme="dark"] .bjhp-category__text strong,
html[data-bj-theme="dark"] .bjhp-category__text small,
html[data-bj-theme="dark"] .bjhp-reviews .bj-home-section__title,
html[data-bj-theme="dark"] .bjhp-reviews .bj-home-section__copy {
	color: #f4f5f1;
}

html[data-bj-theme="dark"] .bjhp-reviews .bj-home-section__eyebrow {
	color: var(--bjhp-yellow-strong);
}

html[data-bj-theme="dark"] .bjhp-section:not(.bjhp-help) .bjhp-eyebrow {
	color: var(--bjhp-yellow-strong);
}

html[data-bj-theme="dark"] .bjhp-hero__slide--light {
	color: #171717;
}

html[data-bj-theme="dark"] .bjhp-hero__slide--light .bjhp-hero__lead {
	color: #484d48;
}

html[data-bj-theme="dark"] .bjhp-hero__slide--light .bjhp-hero__offer-label {
	color: #60655f;
}

html[data-bj-theme="dark"] .bjhp-hero__slide--light .bjhp-hero__price,
html[data-bj-theme="dark"] .bjhp-hero__slide--light .bjhp-hero__price .price {
	color: #171717;
}

html[data-bj-theme="dark"] .bjhp-hero__slide--light .bjhp-button--secondary {
	border-color: #a9aea8;
	background: rgba(255, 255, 255, 0.54);
	color: #171717;
}

html[data-bj-theme="dark"] .bjhp-hero__slide--light .bjhp-button--secondary:hover {
	background: #ffffff;
	color: #171717;
}

html[data-bj-theme="dark"] .bjhp-category {
	background: rgba(255, 255, 255, 0.025);
}

html[data-bj-theme="dark"] .bjhp-category:hover {
	background: #292929;
	color: var(--bjhp-yellow-strong);
}

html[data-bj-theme="dark"] .bjhp-category__icon img {
	filter: invert(1) grayscale(1) brightness(1.35);
}

html[data-bj-theme="dark"] .bjhp-products-controls button {
	border-color: #494d48;
	background: #2b2b2b;
	color: #f4f5f1;
}

html[data-bj-theme="dark"] .bjhp-products-controls button:hover:not(:disabled),
html[data-bj-theme="dark"] .bjhp-products-controls button:focus-visible {
	border-color: var(--bjhp-yellow-strong);
	background: var(--bjhp-yellow-strong);
	color: #111111;
}

html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card {
	background: #323232;
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 28px 60px -46px rgba(0, 0, 0, 0.7);
}

html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__author,
html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__product,
html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__product-name {
	color: #f4f6f8;
}

html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__body {
	color: #e0e3de;
}

html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__meta,
html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__product-label {
	color: #b7bcb5;
}

html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__product {
	border-top-color: rgba(255, 255, 255, 0.12);
}

html[data-bj-theme="dark"] .bjhp-products-grid .bj-product-card__reviews-stars .bj-review-card__star.is-filled,
html[data-bj-theme="dark"] .bjhp-reviews .bj-review-card__star.is-filled {
	color: #ffb000;
}

.bjhp-reviews .bj-review-carousel__viewport {
	scrollbar-width: none;
}

.bjhp-reviews .bj-review-carousel__viewport::-webkit-scrollbar {
	display: none;
}

@media (max-width: 1120px) {
	.bjhp-hero__title {
		font-size: 50px;
	}

	.bjhp-hero__visual {
		right: -12%;
		width: 72%;
	}

	.bjhp-assurance {
		padding-right: 15px;
		padding-left: 15px;
	}

	.bj-home-preview-page .bjhp-products-grid {
		grid-template-columns: none;
		grid-auto-columns: calc((100% - 18px) / 2);
	}

	.bjhp-finder__panel {
		gap: 38px;
	}

	.bjhp-finder__content h3 {
		font-size: 36px;
	}
}

@media (max-width: 820px) {
	.bjhp-hero {
		height: min(620px, calc(100svh - 125px));
		min-height: 540px;
	}

	.bjhp-hero__slide::before {
		top: auto;
		width: 65%;
		height: 43%;
		clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
	}

	.bjhp-hero__slide::after {
		width: 58%;
		height: 8px;
	}

	.bjhp-hero__navigation {
		right: 18px;
		bottom: 14px;
		left: auto;
		width: auto;
		transform: none;
	}

	.bjhp-hero__inner {
		align-items: flex-start;
	}

	.bjhp-hero__content {
		width: 100%;
		padding-top: 34px;
		padding-bottom: 250px;
	}

	.bjhp-hero__title {
		max-width: 600px;
		font-size: 43px;
	}

	.bjhp-hero__lead {
		max-width: 540px;
		font-size: 17px;
	}

	.bjhp-hero__visual {
		top: auto;
		right: -9%;
		bottom: -10%;
		width: 78%;
		height: 54%;
	}

	.bjhp-assurances__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bjhp-assurance:nth-child(2) {
		border-right: 0;
	}

	.bjhp-assurance:nth-child(-n+2) {
		border-bottom: 1px solid #3b3b3b;
	}

	.bjhp-section,
	.bjhp-finder {
		padding-top: 68px;
		padding-bottom: 72px;
	}

	.bjhp-section__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.bjhp-section__header h2 {
		font-size: 36px;
	}

	.bjhp-products-actions {
		width: 100%;
		justify-content: space-between;
	}

	.bjhp-finder__tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bjhp-finder__panels {
		min-height: 0;
	}

	.bjhp-finder__panel {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.bjhp-finder__media {
		min-height: 400px;
	}

	.bjhp-finder__media img {
		height: 370px;
	}

	.bjhp-categories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bjhp-help__inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
	}

	.bjhp-builder-cta__inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.bjhp-hero {
		height: min(610px, calc(100svh - 116px));
		min-height: 525px;
	}

	.bjhp-hero__content {
		padding-top: 24px;
		padding-bottom: 210px;
	}

	.bjhp-hero__eyebrow {
		margin-bottom: 11px;
		font-size: 11px;
	}

	.bjhp-hero__title {
		margin-bottom: 12px;
		font-size: 36px;
		line-height: 1.02;
	}

	.bjhp-hero__lead {
		margin-bottom: 16px;
		font-size: 14px;
		line-height: 1.4;
	}

	.bjhp-hero__offer {
		margin-bottom: 17px;
	}

	.bjhp-hero__price,
	.bjhp-hero__price .price {
		font-size: 22px;
	}

	.bjhp-hero__installment {
		font-size: 11px;
	}

	.bjhp-hero__actions {
		gap: 8px;
	}

	.bjhp-button {
		min-height: 43px;
		padding: 10px 13px;
		font-size: 12px;
	}

	.bjhp-hero__visual {
		right: -4%;
		bottom: -6%;
		width: 100%;
		height: 45%;
	}

	.bjhp-assurance {
		min-height: 86px;
		gap: 9px;
		padding: 14px 11px;
	}

	.bjhp-assurance > .bjhp-icon {
		width: 23px;
		height: 23px;
	}

	.bjhp-assurance strong {
		font-size: 12px;
	}

	.bjhp-assurance span:not(.bjhp-icon) {
		font-size: 10px;
	}

	.bjhp-section,
	.bjhp-finder {
		padding-top: 54px;
		padding-bottom: 58px;
	}

	.bjhp-section__header {
		margin-bottom: 25px;
	}

	.bjhp-section__header h2,
	.bjhp-finder__content h3,
	.bjhp-builder-cta h2,
	.bjhp-help h2 {
		font-size: 30px;
	}

	.bjhp-section__header p,
	.bjhp-finder__content > p,
	.bjhp-builder-cta p,
	.bjhp-help p {
		font-size: 14px;
	}

	.bj-home-preview-page .bjhp-products-grid {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: min(88vw, 360px);
		gap: 16px;
		margin-right: -18px;
		padding: 8px 18px 18px 2px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.bj-home-preview-page .bjhp-products-grid > .bj-product-card-wrap {
		scroll-snap-align: start;
	}

	.bj-home-preview-page .bjhp-products-grid .bj-product-card__media {
		min-height: 0;
	}

	.bj-home-preview-page .bjhp-products-grid .bj-product-card__footer {
		grid-template-columns: minmax(104px, 0.9fr) minmax(130px, 1.1fr);
		gap: 10px;
	}

	.bj-home-preview-page .bjhp-products-grid .bj-product-card__cta,
	.bj-home-preview-page .bjhp-products-grid .bj-product-card__ghost {
		padding-right: 8px;
		padding-left: 8px;
	}

	.bjhp-finder__tabs {
		gap: 6px;
	}

	.bjhp-finder__tab {
		min-height: 50px;
		padding: 10px;
		font-size: 12px;
	}

	.bjhp-finder__media {
		min-height: 310px;
		padding: 10px;
	}

	.bjhp-finder__media img {
		height: 290px;
	}

	.bjhp-finder__buyline {
		align-items: stretch;
		flex-direction: column;
	}

	.bjhp-finder__buyline .bjhp-button {
		width: 100%;
	}

	.bjhp-categories {
		grid-template-columns: 1fr;
	}

	.bjhp-category {
		min-height: 92px;
		grid-template-columns: 48px minmax(0, 1fr) 18px;
		padding: 14px;
	}

	.bjhp-category__icon {
		width: 48px;
		height: 48px;
	}

	.bjhp-help__inner {
		min-height: 290px;
		gap: 24px;
	}

	.bjhp-builder-cta__inner {
		min-height: 290px;
		gap: 24px;
	}

	.bjhp-builder-cta::after {
		width: 58%;
		opacity: 0.7;
	}

	.bjhp-builder-cta .bjhp-button {
		width: 100%;
	}

	.bjhp-help .bjhp-button {
		width: 100%;
	}
}

@media (max-width: 360px) {
	.bjhp-hero__title {
		font-size: 32px;
	}

	.bjhp-hero__offer {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 3px;
	}

	.bjhp-hero__offer-label,
	.bjhp-hero__price,
	.bjhp-hero__installment {
		grid-column: 1;
	}

	.bjhp-hero__price,
	.bjhp-hero__price .price {
		font-size: 20px;
	}

	.bjhp-hero__installment {
		font-size: 10px;
	}

	.bjhp-hero__actions .bjhp-button--secondary {
		display: none;
	}

	.bj-home-preview-page .bjhp-products-grid .bj-product-card__footer {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bjhp *,
	.bjhp *::before,
	.bjhp *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
