/* Home shell resets: isolate Kadence/Woo wrappers for the public homepage. */
body.bhs-home-active {
	background: #f5f7fa;
	overflow-x: clip;
	overflow-anchor: none;
}

body.bhs-home-active .content-container.site-container,
body.bhs-home-active .site-container,
body.bhs-home-active article.entry,
body.bhs-home-active .content-wrap,
body.bhs-home-active .entry-content.single-content,
body.bhs-home-active .entry-content-wrap {
	max-width: none;
	width: 100%;
	padding: 0;
	margin: 0 !important;
}

body.bhs-home-active #inner-wrap,
body.bhs-home-active #primary,
body.bhs-home-active #main {
	padding: 0;
	margin: 0;
}

body.bhs-home-active .entry.content-bg,
body.bhs-home-active .content-bg {
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

body.bhs-home-active .entry-content.single-content {
	margin: 0;
}

body.bhs-home-active #masthead {
	display: none;
}

body.bhs-home-active .entry-header,
body.bhs-home-active .entry-hero,
body.bhs-home-active .page-header,
body.bhs-home-active .post-thumbnail {
	display: none;
}

body.bhs-home-active .site-footer {
	display: none;
}

.bhs-home {
	--bhs-blue: #2f7bbb;
	--bhs-blue-deep: #155b94;
	--bhs-blue-ink: #0d3f6f;
	--bhs-gold: #e5a725;
	--bhs-gold-soft: #fff4d4;
	--bhs-green: #16805b;
	--bhs-ink: #142033;
	--bhs-text: #334155;
	--bhs-muted: #64748b;
	--bhs-line: #dce5ef;
	--bhs-line-soft: #eef4fa;
	--bhs-soft: #f4f8fc;
	--bhs-white: var(--bhs-ui-surface, #ffffff);
	--bhs-radius: 12px;
	--bhs-radius-sm: 9px;
	--bhs-radius-pill: 999px;
	--bhs-shadow: 0 18px 50px rgba(21, 91, 148, 0.12);
	--bhs-shadow-card: 0 16px 40px rgba(15, 42, 72, 0.08);
	--bhs-shadow-soft: 0 22px 70px rgba(15, 42, 72, 0.1);
	color: var(--bhs-text);
	background:
		radial-gradient(circle at 12% 0%, rgba(47, 123, 187, 0.08), transparent 30rem),
		linear-gradient(180deg, #ffffff 0%, #f5f8fb 48%, #f7fafc 100%);
	font-family: inherit;
	letter-spacing: 0;
	overflow-x: clip;
	overflow-y: visible;
}

.bhs-home *,
.bhs-home *::before,
.bhs-home *::after {
	box-sizing: border-box;
}

.bhs-home a {
	color: inherit;
	text-decoration: none;
}

.bhs-home img {
	display: block;
	max-width: 100%;
	height: auto;
}

.bhs-icon {
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.bhs-home__inner {
	width: min(100% - 32px, 1240px);
	margin: 0 auto;
}

.bhs-eyebrow {
	margin: 0 0 8px;
	color: var(--bhs-blue-deep);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bhs-home .bhs-rail__arrow,
.bhs-home .bhs-product-card .bhs-add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	border-radius: var(--bhs-radius-sm);
	border: 1px solid transparent;
	padding: 0 18px;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.bhs-home .bhs-rail__arrow:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart:hover {
	transform: translateY(-1px);
}

.bhs-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(47, 123, 187, 0.18);
	border-top-color: var(--bhs-blue);
	border-radius: var(--bhs-radius-pill);
	animation: bhsSpin 700ms linear infinite;
}

.bhs-product-card__price {
	color: var(--bhs-blue-deep);
	font-weight: 900;
}

.bhs-home .woocommerce-Price-amount {
	white-space: nowrap;
}

.bhs-home .woocommerce-Price-currencySymbol {
	display: inline !important;
	margin-right: 1px;
}

.bhs-category-section,
.bhs-campaigns,
.bhs-rails {
	background: var(--bhs-soft);
}

.bhs-category-section {
	padding: 24px 0 12px;
}

.bhs-section-heading {
	display: grid;
	gap: 2px;
	align-items: start;
	justify-content: start;
	margin-bottom: 16px;
}

.bhs-section-heading h2,
.bhs-rail__header h2 {
	margin: 0;
	color: var(--bhs-ink);
	font-size: 1.55rem;
	line-height: 1.15;
	letter-spacing: 0;
}

.bhs-category-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 8px;
}

.bhs-category-card {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 10px;
	min-height: 92px;
	border: 1px solid var(--bhs-line);
	border-radius: 14px;
	padding: 13px;
	background: var(--bhs-white);
	box-shadow: 0 10px 22px rgba(20, 32, 51, 0.045);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.bhs-category-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #eef7ff;
	color: var(--bhs-blue-deep);
	font-size: 1.05rem;
}

.bhs-category-card strong {
	color: var(--bhs-ink);
	font-size: 0.95rem;
	line-height: 1.14;
	letter-spacing: 0;
}

.bhs-category-card:hover {
	border-color: rgba(47, 123, 187, 0.36);
	box-shadow: 0 18px 34px rgba(20, 32, 51, 0.1);
	transform: translateY(-2px);
}

.bhs-campaigns {
	padding: 22px 0 34px;
}

.bhs-campaigns__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.bhs-campaigns__header h2 {
	margin: 0;
	color: var(--bhs-ink);
	font-size: 1.55rem;
	line-height: 1.1;
	letter-spacing: 0;
}

.bhs-campaigns__controls {
	display: flex;
	gap: 8px;
}

.bhs-campaign-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 0.42fr);
	gap: 14px;
	overflow-x: auto;
	padding: 4px 2px 20px;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(47, 123, 187, 0.28) transparent;
}

.bhs-campaign-card {
	--bhs-campaign-accent: var(--bhs-blue);
	position: relative;
	display: grid;
	grid-template-rows: minmax(0, 1fr);
	min-height: 360px;
	border-radius: 22px;
	background: var(--bhs-ink);
	color: #ffffff;
	overflow: hidden;
	scroll-snap-align: start;
	box-shadow: var(--bhs-shadow-soft);
	isolation: isolate;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.bhs-campaign-card--featured {
	grid-column: span 2;
	min-width: min(620px, calc(100vw - 32px));
}

.bhs-campaign-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 28px 80px rgba(15, 42, 72, 0.16);
}

.bhs-campaign-card__media,
.bhs-campaign-card__media picture,
.bhs-campaign-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.bhs-campaign-card__media picture {
	display: block;
}

.bhs-campaign-card__img {
	object-fit: cover;
}

.bhs-campaign-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(9, 24, 42, 0.9) 0%, rgba(9, 24, 42, 0.64) 48%, rgba(9, 24, 42, 0.18) 100%),
		linear-gradient(180deg, transparent 0%, rgba(9, 24, 42, 0.42) 100%);
}

.bhs-campaign-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	min-height: 100%;
	max-width: 430px;
	padding: 28px;
}

.bhs-campaign-card__type {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--bhs-radius-pill);
	padding: 0 9px;
	background: rgba(47, 123, 187, 0.38);
	background: color-mix(in srgb, var(--bhs-campaign-accent) 34%, rgba(255, 255, 255, 0.12));
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bhs-campaign-card strong {
	display: block;
	margin-top: 12px;
	color: #ffffff;
	font-size: clamp(1.55rem, 2.5vw, 2.45rem);
	line-height: 1.02;
	letter-spacing: 0;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.bhs-campaign-card__line {
	display: block;
	max-width: 360px;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.bhs-campaign-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	margin-top: 18px;
	border-radius: var(--bhs-radius-pill);
	padding: 0 14px;
	background: #ffffff;
	color: var(--bhs-ink);
	font-size: 0.9rem;
	font-weight: 900;
}

.bhs-campaign-card__cta .bhs-icon {
	color: var(--bhs-campaign-accent);
}

.bhs-campaign-card--layout-product {
	display: flex;
	flex-direction: column;
	min-height: 0;
	border: 1px solid var(--bhs-line);
	background: var(--bhs-white);
	color: var(--bhs-ink);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__media,
.bhs-campaign-card--layout-product .bhs-campaign-card__media picture,
.bhs-campaign-card--layout-product .bhs-campaign-card__img {
	position: relative;
	inset: auto;
	width: 100%;
	height: 100%;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__media {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: clamp(230px, 21vw, 320px);
	min-height: 0;
	background:
		radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--bhs-campaign-accent) 14%, transparent), transparent 18rem),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
	height: clamp(260px, 24vw, 350px);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__media::after {
	display: none;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__img {
	object-fit: contain;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__content {
	flex: 0 0 auto;
	justify-content: flex-start;
	min-height: auto;
	max-width: none;
	padding: 18px 20px 20px;
	background:
		linear-gradient(90deg, color-mix(in srgb, var(--bhs-campaign-accent) 10%, #ffffff) 0%, #ffffff 58%),
		#ffffff;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__type {
	border-color: color-mix(in srgb, var(--bhs-campaign-accent) 32%, var(--bhs-line));
	background: color-mix(in srgb, var(--bhs-campaign-accent) 10%, #ffffff);
	color: var(--bhs-blue-deep);
}

.bhs-campaign-card--layout-product strong {
	max-width: 560px;
	color: var(--bhs-ink);
	font-size: clamp(1.28rem, 1.9vw, 2rem);
	text-shadow: none;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__line {
	max-width: 560px;
	color: #45566f;
	font-size: 0.95rem;
	text-shadow: none;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__cta {
	background: var(--bhs-ink);
	color: #ffffff;
}

.bhs-rail {
	padding: 34px 0;
	scroll-margin-top: 140px;
}

.bhs-rail + .bhs-rail {
	border-top: 1px solid rgba(220, 229, 239, 0.72);
}

.bhs-rail__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
}

.bhs-rail__header p:not(.bhs-eyebrow) {
	max-width: 640px;
	margin: 5px 0 0;
	color: var(--bhs-muted);
	font-size: 0.92rem;
	line-height: 1.32;
}

.bhs-rail__controls {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.bhs-rail__controls > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	justify-content: center;
	min-height: 38px;
	border: 0;
	border-radius: var(--bhs-radius-pill);
	padding: 0 2px;
	background: transparent;
	color: var(--bhs-blue-deep);
	font-size: 0.86rem;
	font-weight: 900;
}

.bhs-rail__arrow {
	width: 38px;
	min-width: 38px;
	min-height: 38px;
	padding: 0;
	background: var(--bhs-white);
	border-color: var(--bhs-line);
	color: var(--bhs-blue-deep);
	font-size: 1rem;
	line-height: 1;
	border-radius: var(--bhs-radius-pill);
}

.bhs-rail__arrow[disabled] {
	opacity: 0.4;
	transform: none;
	cursor: default;
}

.bhs-product-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 218px;
	gap: 15px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 6px 2px 20px;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(47, 123, 187, 0.28) transparent;
}

.bhs-product-card {
	position: relative;
	display: grid;
	grid-template-rows: 186px minmax(174px, auto);
	scroll-snap-align: start;
	border: 1px solid var(--bhs-line);
	border-radius: 20px;
	background: var(--bhs-white);
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.06);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bhs-product-card:hover {
	border-color: rgba(47, 123, 187, 0.32);
	box-shadow: 0 22px 44px rgba(20, 32, 51, 0.12);
	transform: translateY(-3px);
}

.bhs-product-card.is-added {
	animation: bhsCardAdded 700ms ease both;
}

.bhs-product-card__image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #ffffff;
	border-bottom: 1px solid rgba(206, 221, 235, 0.7);
	overflow: hidden;
}

.bhs-product-card__image img {
	width: 100%;
	height: 148px;
	object-fit: contain;
	transform: scale(1.08);
	transform-origin: center;
	transition: transform 180ms ease;
}

.bhs-product-card:hover .bhs-product-card__image img {
	transform: scale(1.12);
}

.bhs-sale-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 26px;
	border-radius: var(--bhs-radius-pill);
	padding: 0 8px;
	background: linear-gradient(135deg, #f7cc57 0%, var(--bhs-gold) 100%);
	color: #211600;
	font-size: 0.74rem;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(229, 167, 37, 0.25);
}

.bhs-product-card__body {
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	gap: 7px;
	padding: 14px;
	background:
		linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}

.bhs-product-card__meta {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	width: fit-content;
	max-width: 100%;
	min-height: 17px;
	overflow: hidden;
	color: #64788e;
	font-size: 0.64rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: none;
}

.bhs-product-card__category {
	width: fit-content;
	max-width: 100%;
	border-radius: var(--bhs-radius-pill);
	padding: 4px 8px;
	background: transparent;
	color: var(--bhs-muted);
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bhs-product-card__meta .bhs-product-card__category {
	display: inline-block !important;
	min-width: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
	color: #64788e;
	font: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: none;
	white-space: nowrap;
}

.bhs-product-card h3 {
	margin: 0;
	color: var(--bhs-ink);
	font-size: 0.92rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.bhs-product-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.bhs-product-card__price {
	min-height: 25px;
	font-size: 1.12rem;
	line-height: 1.2;
}

.bhs-product-card__price del {
	color: #94a3b8;
	font-size: 0.84rem;
	font-weight: 700;
}

.bhs-product-card__price ins {
	text-decoration: none;
}

.bhs-home .bhs-product-card .bhs-add-to-cart {
	width: 100%;
	min-height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--bhs-blue) 0%, var(--bhs-blue-deep) 100%);
	color: var(--bhs-white);
	font-size: 0.9rem;
	box-shadow: none;
	position: relative;
	overflow: hidden;
}

.bhs-home .bhs-product-card .bhs-add-to-cart:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart:focus {
	background: linear-gradient(135deg, #2a74b3 0%, #0f4f83 100%);
	color: var(--bhs-white);
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-loading {
	opacity: 0.82;
	pointer-events: none;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-loading .bhs-icon {
	animation: bhsSpin 700ms linear infinite;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-added {
	background: linear-gradient(135deg, #16805b 0%, #0f6849 100%);
}

.bhs-home .bhs-product-card .bhs-add-to-cart--view {
	background: var(--bhs-white);
	border-color: var(--bhs-line);
	color: var(--bhs-blue-deep);
}

.bhs-home--notice {
	padding: 24px;
	background: #fff8e1;
	border: 1px solid #f2d16b;
	color: #4a3510;
}

body.bhs-home-active .bhs-toast {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 99999;
	max-width: min(340px, calc(100vw - 32px));
	border: 1px solid rgba(220, 229, 239, 0.92);
	border-radius: 14px;
	padding: 13px 16px;
	background: rgba(20, 32, 51, 0.94);
	color: #ffffff;
	font-weight: 800;
	box-shadow: 0 18px 42px rgba(15, 42, 72, 0.28);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

body.bhs-home-active .bhs-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes bhsDrop {
	from {
		opacity: 0;
		transform: translateY(-6px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes bhsSpin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes bhsCardAdded {
	0% {
		box-shadow: 0 10px 26px rgba(20, 32, 51, 0.055);
	}

	42% {
		border-color: rgba(22, 128, 91, 0.55);
		box-shadow: 0 22px 46px rgba(22, 128, 91, 0.18);
		transform: translateY(-4px) scale(1.01);
	}

	100% {
		box-shadow: 0 10px 26px rgba(20, 32, 51, 0.055);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bhs-home *,
	.bhs-home *::before,
	.bhs-home *::after,
	body.bhs-home-active .bhs-toast {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}

@media (max-width: 1180px) {
	.bhs-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {

	.bhs-campaign-strip {
		grid-auto-columns: minmax(320px, 72vw);
	}

	.bhs-campaign-card--featured {
		grid-column: span 1;
	}

}

@media (max-width: 700px) {
	body.bhs-home-active #wpadminbar {
		min-width: 0 !important;
	}

	.bhs-home__inner {
		width: min(100% - 24px, 1240px);
	}

	.bhs-category-section {
		padding-top: 26px;
	}

	.bhs-section-heading,
	.bhs-rail__header {
		display: grid;
		align-items: start;
	}

	.bhs-section-heading h2,
	.bhs-rail__header h2 {
		font-size: 1.35rem;
	}

	.bhs-category-grid {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		padding-bottom: 12px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.bhs-category-grid::-webkit-scrollbar {
		display: none;
	}

	.bhs-category-card {
		flex: 0 0 116px;
		min-height: 94px;
		scroll-snap-align: start;
	}

	.bhs-category-card__icon {
		width: 34px;
		height: 34px;
	}

	.bhs-category-card strong {
		font-size: 0.88rem;
	}

	.bhs-campaigns {
		padding: 14px 0 26px;
	}

	.bhs-campaigns__header h2 {
		font-size: 1.35rem;
	}

	.bhs-campaign-strip {
		grid-auto-columns: calc(100vw - 24px);
		gap: 10px;
		padding-bottom: 14px;
	}

	.bhs-campaign-card {
		min-height: 430px;
		border-radius: 20px;
	}

	.bhs-campaign-card--layout-product {
		min-height: 0;
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
		height: clamp(380px, 100vw, 430px);
		min-height: 0;
	}

	.bhs-campaign-card__media::after {
		background:
			linear-gradient(180deg, rgba(9, 24, 42, 0.16) 0%, rgba(9, 24, 42, 0.82) 100%),
			linear-gradient(90deg, rgba(9, 24, 42, 0.2) 0%, transparent 100%);
	}

	.bhs-campaign-card__content {
		justify-content: flex-end;
		padding: 22px;
	}

	.bhs-campaign-card strong {
		font-size: 1.82rem;
	}

	.bhs-campaign-card__line {
		font-size: 0.95rem;
	}

	.bhs-rail {
		padding: 28px 0;
		scroll-margin-top: 132px;
	}

	.bhs-rail__controls {
		width: 100%;
		justify-content: space-between;
	}

	.bhs-product-strip {
		grid-auto-columns: 172px;
		gap: 10px;
	}

	.bhs-product-card {
		grid-template-rows: 148px minmax(170px, auto);
	}

	.bhs-product-card__image img {
		height: 116px;
	}

	.bhs-product-card__body {
		padding: 11px;
	}

	.bhs-product-card h3 {
		font-size: 0.84rem;
	}

	.bhs-product-card__price {
		font-size: 0.96rem;
	}

	body.bhs-home-active .bhs-toast {
		right: 12px;
		bottom: 12px;
		left: 12px;
		max-width: none;
	}
}

@media (min-width: 600px) and (max-width: 920px) {
	.bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
		height: 320px;
	}
}

@media (max-width: 390px) {

	.bhs-product-strip {
		grid-auto-columns: 164px;
	}
}

/* Compact shopping composition layer: density and mobile-first commerce layout. */

.bhs-home .bhs-rail__arrow,
.bhs-home .bhs-product-card .bhs-add-to-cart {
	min-height: 40px;
	border-radius: var(--bhs-radius-pill);
}

.bhs-category-section {
	padding: 6px 0 10px;
}

.bhs-category-grid {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 2px 0 8px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.bhs-category-grid::-webkit-scrollbar {
	display: none;
}

.bhs-category-card {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 8px;
	min-height: 40px;
	border-radius: var(--bhs-radius-pill);
	padding: 0 12px;
	box-shadow: 0 8px 18px rgba(20, 32, 51, 0.045);
	scroll-snap-align: start;
}

.bhs-category-card__icon {
	width: 26px;
	height: 26px;
	border-radius: var(--bhs-radius-pill);
	font-size: 0.86rem;
}

.bhs-category-card strong {
	font-size: 0.84rem;
	white-space: nowrap;
}

.bhs-campaigns {
	padding: 4px 0 18px;
}

.bhs-campaigns__header {
	margin-bottom: 8px;
}

.bhs-campaigns__header h2 {
	font-size: 1.25rem;
}

.bhs-campaign-strip {
	grid-auto-columns: minmax(250px, 31%);
	gap: 10px;
	padding: 3px 1px 14px;
}

.bhs-campaign-card {
	min-height: 248px;
	border-radius: 18px;
	box-shadow: 0 14px 32px rgba(15, 42, 72, 0.08);
}

.bhs-campaign-card--featured {
	grid-column: auto;
	min-width: min(420px, calc(100vw - 32px));
}

.bhs-campaign-card__content {
	padding: 18px;
}

.bhs-campaign-card strong {
	margin-top: 8px;
	font-size: clamp(1.18rem, 1.8vw, 1.55rem);
	line-height: 1.05;
}

.bhs-campaign-card__line {
	margin-top: 7px;
	font-size: 0.86rem;
	line-height: 1.28;
}

.bhs-campaign-card__cta {
	min-height: 34px;
	margin-top: 12px;
	padding: 0 12px;
	font-size: 0.82rem;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__media {
	height: clamp(138px, 13vw, 178px);
}

.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
	height: clamp(150px, 14vw, 196px);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__content {
	padding: 14px 16px 16px;
}

.bhs-campaign-card--layout-product strong {
	font-size: clamp(1.08rem, 1.45vw, 1.35rem);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__line {
	font-size: 0.82rem;
}

.bhs-rails {
	padding-top: 2px;
}

.bhs-rail {
	padding: 24px 0 18px;
}

.bhs-rail__header {
	margin-bottom: 10px;
}

.bhs-rail__header h2 {
	font-size: 1.32rem;
}

.bhs-rail__controls {
	gap: 6px;
}

.bhs-rail__controls > a {
	min-height: 34px;
	font-size: 0.82rem;
}

.bhs-rail__arrow {
	width: 34px;
	min-width: 34px;
	min-height: 34px;
}

.bhs-product-strip {
	grid-auto-columns: 188px;
	gap: 12px;
	padding: 4px 1px 14px;
}

.bhs-product-card {
	grid-template-rows: 138px minmax(140px, auto);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(20, 32, 51, 0.055);
}

.bhs-product-card__image {
	padding: 12px;
}

.bhs-product-card__image img {
	height: 108px;
}

.bhs-sale-badge {
	top: 8px;
	left: 8px;
	min-height: 22px;
	padding: 0 7px;
	font-size: 0.66rem;
	box-shadow: none;
}

.bhs-product-card__body {
	gap: 5px;
	padding: 10px;
}

.bhs-product-card__category {
	padding: 0;
	font-size: 0.62rem;
	letter-spacing: 0.02em;
}

.bhs-product-card h3 {
	font-size: 0.82rem;
	line-height: 1.2;
}

.bhs-product-card h3 a {
	-webkit-line-clamp: 2;
}

.bhs-product-card__price {
	min-height: 22px;
	font-size: 1rem;
}

.bhs-product-card__price del {
	font-size: 0.78rem;
}

.bhs-home .bhs-product-card .bhs-add-to-cart {
	min-height: 34px;
	border: 1px solid rgba(47, 123, 187, 0.22);
	border-radius: var(--bhs-radius-pill);
	background: #edf6ff;
	color: var(--bhs-blue-deep);
	font-size: 0.82rem;
}

.bhs-home .bhs-product-card .bhs-add-to-cart:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart:focus {
	background: var(--bhs-blue-deep);
	color: #ffffff;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-added {
	border-color: rgba(22, 128, 91, 0.18);
	color: #ffffff;
}

@media (max-width: 920px) {

	.bhs-campaign-strip {
		grid-auto-columns: minmax(250px, 46vw);
	}
}

@media (max-width: 700px) {

	.bhs-category-section {
		padding: 4px 0 8px;
	}

	.bhs-category-grid {
		gap: 7px;
		padding-bottom: 6px;
	}

	.bhs-category-card {
		flex: 0 0 auto;
		min-height: 38px;
		padding: 0 10px;
	}

	.bhs-category-card__icon {
		width: 24px;
		height: 24px;
		font-size: 0.78rem;
	}

	.bhs-category-card strong {
		font-size: 0.8rem;
	}

	.bhs-campaigns {
		padding: 2px 0 16px;
	}

	.bhs-campaigns__header {
		margin-bottom: 6px;
	}

	.bhs-campaigns__header h2 {
		font-size: 1.14rem;
	}

	.bhs-campaign-strip {
		grid-auto-columns: minmax(218px, 70vw);
		gap: 9px;
		padding-bottom: 12px;
	}

	.bhs-campaign-card {
		min-height: 232px;
		border-radius: 16px;
	}

	.bhs-campaign-card--featured {
		min-width: 0;
	}

	.bhs-campaign-card__content {
		padding: 12px;
	}

	.bhs-campaign-card strong {
		margin-top: 7px;
		font-size: 1.04rem;
		line-height: 1.08;
	}

	.bhs-campaign-card__line {
		display: -webkit-box;
		overflow: hidden;
		font-size: 0.76rem;
		line-height: 1.25;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.bhs-campaign-card__cta {
		min-height: 30px;
		margin-top: 8px;
		font-size: 0.75rem;
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
		height: clamp(136px, 42vw, 166px);
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__content {
		padding: 10px 11px 12px;
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__type {
		min-height: 22px;
		padding: 0 7px;
		font-size: 0.62rem;
	}

	.bhs-campaign-card--layout-product strong {
		font-size: 1rem;
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__line {
		margin-top: 6px;
	}

	.bhs-rail {
		padding: 18px 0 15px;
		scroll-margin-top: 112px;
	}

	.bhs-rail__header {
		display: flex;
		align-items: center;
		margin-bottom: 8px;
	}

	.bhs-rail__header h2 {
		font-size: 1.12rem;
	}

	.bhs-rail__controls {
		width: auto;
		margin-left: auto;
	}

	.bhs-rail__controls > a {
		min-height: 32px;
		font-size: 0.78rem;
	}

	.bhs-rail__arrow {
		width: 32px;
		min-width: 32px;
		min-height: 32px;
	}

	.bhs-product-strip {
		grid-auto-columns: 152px;
		gap: 9px;
		padding-bottom: 12px;
	}

	.bhs-product-card {
		grid-template-rows: 108px minmax(128px, auto);
		border-radius: 15px;
	}

	.bhs-product-card__image {
		padding: 9px;
	}

	.bhs-product-card__image img {
		height: 84px;
	}

	.bhs-sale-badge {
		min-height: 20px;
		font-size: 0.62rem;
	}

	.bhs-product-card__body {
		gap: 4px;
		padding: 9px;
	}

	.bhs-product-card__category {
		display: none;
	}

	.bhs-product-card h3 {
		font-size: 0.78rem;
		line-height: 1.18;
	}

	.bhs-product-card__price {
		min-height: 20px;
		font-size: 0.92rem;
	}

	.bhs-home .bhs-product-card .bhs-add-to-cart {
		min-height: 32px;
		font-size: 0.78rem;
	}

}

@media (min-width: 600px) and (max-width: 920px) {
	.bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
		height: 210px;
	}
}

@media (max-width: 390px) {
	.bhs-product-strip {
		grid-auto-columns: 148px;
	}

	.bhs-hero h1 {
		font-size: 1.68rem;
	}
}

/* Supermarket visual system: active commercial color, header, category and rail treatment. */
body.bhs-home-active {
	background: #edf4fb;
}

.bhs-home {
	--bhs-blue: #006bb6;
	--bhs-blue-deep: #00417d;
	--bhs-blue-ink: #062a52;
	--bhs-gold: #f1b51d;
	--bhs-gold-soft: #fff0bd;
	--bhs-green: #12845f;
	--bhs-red: #e4473d;
	--bhs-ink: #0f1f35;
	--bhs-text: #27364b;
	--bhs-muted: #66758a;
	--bhs-line: #d3e0ec;
	--bhs-soft: #edf5fc;
	--bhs-radius: 8px;
	--bhs-radius-sm: 8px;
	--bhs-shadow: 0 18px 40px rgba(6, 42, 82, 0.16);
	--bhs-shadow-card: 0 10px 26px rgba(6, 42, 82, 0.1);
	--bhs-shadow-soft: 0 22px 60px rgba(6, 42, 82, 0.14);
	background:
		linear-gradient(180deg, #ffffff 0%, #edf5fc 34%, #f6f9fc 100%);
}

.bhs-home__inner {
	width: min(100% - 32px, 1280px);
}

.bhs-category-section {
	padding: 20px 0 18px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(6, 42, 82, 0.08);
}

.bhs-category-section h2 {
	margin: 0 0 12px;
	color: var(--bhs-blue-ink);
	font-size: 1.32rem;
	line-height: 1.1;
}

.bhs-category-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
}

.bhs-category-card {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 8px;
	min-height: 96px;
	border: 1px solid #cdddea;
	border-bottom: 3px solid var(--bhs-blue);
	border-radius: 8px;
	padding: 12px 8px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
	color: var(--bhs-blue-ink);
	box-shadow: 0 10px 20px rgba(6, 42, 82, 0.07);
}

.bhs-category-card:nth-child(1) {
	border-bottom-color: var(--bhs-gold);
}

.bhs-category-card:nth-child(4n + 2) {
	border-bottom-color: var(--bhs-green);
}

.bhs-category-card:nth-child(4n + 3) {
	border-bottom-color: #58a7e6;
}

.bhs-category-card__icon {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background:
		linear-gradient(135deg, var(--bhs-blue) 0%, var(--bhs-blue-deep) 100%);
	color: #ffffff;
	font-size: 1.06rem;
	box-shadow: 0 8px 16px rgba(0, 73, 135, 0.2);
}

.bhs-category-card:nth-child(1) .bhs-category-card__icon {
	background: linear-gradient(135deg, #ffd869 0%, var(--bhs-gold) 100%);
	color: #251900;
}

.bhs-category-card strong {
	font-size: 0.82rem;
	font-weight: 950;
	text-align: center;
	white-space: normal;
}

.bhs-category-card:hover,
.bhs-category-card:focus {
	border-color: rgba(0, 107, 182, 0.42);
	transform: translateY(-2px);
}

.bhs-campaigns {
	padding: 34px 0 38px;
	background:
		linear-gradient(180deg, #edf5fc 0%, #f8fbff 100%);
}

.bhs-campaigns__header {
	align-items: end;
	margin-bottom: 16px;
}

.bhs-campaigns__header h2 {
	color: var(--bhs-blue-ink);
	font-size: clamp(1.62rem, 2.4vw, 2.25rem);
}

.bhs-campaign-strip {
	gap: 14px;
	padding: 0;
}

.bhs-campaign-card {
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(6, 42, 82, 0.16);
}

.bhs-campaign-card__type {
	border-radius: 8px;
}

.bhs-campaign-card__cta {
	border-radius: 8px;
	font-weight: 950;
}

.bhs-campaign-card--layout-product {
	border-color: #cdddea;
	border-radius: 8px;
	background: #ffffff;
}

.bhs-campaign-card--layout-product .bhs-campaign-card__media {
	background:
		linear-gradient(135deg, #fff7dc 0%, #ffffff 46%, #eaf5ff 100%);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__content {
	background:
		linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__type {
	background: #e7f2ff;
	color: var(--bhs-blue-deep);
}

.bhs-campaign-card--layout-product .bhs-campaign-card__cta {
	background: var(--bhs-blue-ink);
	color: #ffffff;
}

@media (min-width: 921px) {
	.bhs-campaigns__controls {
		display: none;
	}

	.bhs-campaign-strip {
		display: grid;
		grid-auto-flow: row;
		grid-template-columns: minmax(0, 1.34fr) minmax(230px, 0.58fr) minmax(230px, 0.58fr);
		grid-template-rows: repeat(2, minmax(190px, auto));
		overflow: visible;
	}

	.bhs-campaign-card {
		min-height: 196px;
	}

	.bhs-campaign-card--featured {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		min-width: 0;
		min-height: 424px;
	}

	.bhs-campaign-card:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.bhs-campaign-card:nth-child(3) {
		grid-column: 3;
		grid-row: 1;
	}

	.bhs-campaign-card:nth-child(4) {
		grid-column: 2 / 4;
		grid-row: 2;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product {
		display: flex;
		flex-direction: column;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__content {
		order: 2;
		flex: 1 1 auto;
		justify-content: center;
		padding: 24px 30px 28px;
		background:
			repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px),
			linear-gradient(135deg, var(--bhs-blue-deep) 0%, var(--bhs-blue) 100%);
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media {
		order: 1;
		height: 250px;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__type {
		background: rgba(255, 255, 255, 0.16);
		border-color: rgba(255, 255, 255, 0.26);
		color: #ffe08a;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product strong,
	.bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__line {
		color: #ffffff;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product strong {
		max-width: 520px;
		font-size: clamp(1.65rem, 2.5vw, 2.45rem);
		line-height: 0.98;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__line {
		max-width: 520px;
		font-size: 1rem;
	}

	.bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__cta {
		background: linear-gradient(135deg, #ffd869 0%, var(--bhs-gold) 100%);
		color: #211600;
	}

	.bhs-campaign-card:not(.bhs-campaign-card--featured).bhs-campaign-card--layout-product {
		display: grid;
		grid-template-columns: 44% 1fr;
	}

	.bhs-campaign-card:not(.bhs-campaign-card--featured).bhs-campaign-card--layout-product .bhs-campaign-card__media {
		height: 100%;
	}

	.bhs-campaign-card:not(.bhs-campaign-card--featured).bhs-campaign-card--layout-product .bhs-campaign-card__content {
		justify-content: center;
		padding: 18px;
	}

	.bhs-campaign-card:not(.bhs-campaign-card--featured).bhs-campaign-card--layout-product strong {
		font-size: 1.3rem;
		line-height: 1.04;
	}
}

.bhs-rails {
	padding: 10px 0 26px;
	background:
		linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.bhs-rail {
	padding: 30px 0 22px;
	border-top: 0;
}

.bhs-rail + .bhs-rail {
	border-top: 1px solid rgba(0, 73, 135, 0.1);
}

.bhs-rail__header {
	margin-bottom: 13px;
}

.bhs-rail__header h2 {
	color: var(--bhs-blue-ink);
	font-size: clamp(1.42rem, 2vw, 1.9rem);
}

.bhs-rail__controls > a {
	color: var(--bhs-blue-deep);
	font-weight: 950;
}

.bhs-rail__arrow {
	border: 1px solid rgba(0, 73, 135, 0.16);
	background: #ffffff;
	color: var(--bhs-blue-deep);
	box-shadow: 0 8px 18px rgba(6, 42, 82, 0.08);
}

.bhs-product-strip {
	grid-auto-columns: 202px;
	gap: 14px;
	padding: 6px 2px 22px;
}

.bhs-product-card {
	grid-template-rows: 150px minmax(156px, auto);
	border: 1px solid #ceddeb;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 26px rgba(6, 42, 82, 0.1);
}

.bhs-product-card:hover {
	border-color: rgba(0, 107, 182, 0.46);
	box-shadow: 0 20px 40px rgba(6, 42, 82, 0.16);
}

.bhs-product-card__image {
	padding: 13px;
	background: #ffffff;
}

.bhs-product-card__image img {
	height: 118px;
}

.bhs-sale-badge {
	top: 9px;
	left: 9px;
	min-height: 24px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ffdf72 0%, var(--bhs-gold) 100%);
	color: #241600;
	font-size: 0.68rem;
	box-shadow: 0 8px 18px rgba(143, 99, 0, 0.18);
}

.bhs-product-card__body {
	gap: 6px;
	padding: 12px;
	background:
		linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
}

.bhs-product-card__category {
	padding: 0;
	background: transparent;
	color: var(--bhs-blue-deep);
	font-size: 0.66rem;
	font-weight: 950;
}

.bhs-product-card h3 {
	font-size: 0.86rem;
	line-height: 1.2;
}

.bhs-product-card h3 a {
	-webkit-line-clamp: 2;
}

.bhs-product-card__price {
	color: var(--bhs-blue-deep);
	font-size: 1.08rem;
	font-weight: 950;
}

.bhs-product-card__price del {
	color: #93a2b3;
	font-size: 0.78rem;
}

.bhs-home .bhs-product-card .bhs-add-to-cart {
	min-height: 38px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--bhs-blue) 0%, var(--bhs-blue-deep) 100%);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 950;
	box-shadow: 0 10px 20px rgba(0, 73, 135, 0.16);
}

.bhs-home .bhs-product-card .bhs-add-to-cart:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart:focus {
	background: linear-gradient(135deg, #0078ca 0%, #003a70 100%);
	color: #ffffff;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-added {
	background: linear-gradient(135deg, var(--bhs-green) 0%, #0c6548 100%);
}

@media (max-width: 1100px) {

	.bhs-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {

	.bhs-campaign-strip {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(310px, 82vw);
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.bhs-campaign-card--featured {
		min-width: 0;
	}
}

@media (max-width: 700px) {
	.bhs-home__inner {
		width: min(100% - 24px, 1280px);
	}

	.bhs-category-section {
		padding: 16px 0 14px;
	}

	.bhs-category-section h2 {
		margin-bottom: 10px;
		font-size: 1.16rem;
	}

	.bhs-category-grid {
		display: flex;
		gap: 9px;
		overflow-x: auto;
		padding: 1px 0 8px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.bhs-category-card {
		flex: 0 0 92px;
		min-height: 82px;
		padding: 10px 7px;
		scroll-snap-align: start;
	}

	.bhs-category-card__icon {
		width: 36px;
		height: 36px;
		font-size: 0.92rem;
	}

	.bhs-category-card strong {
		font-size: 0.72rem;
	}

	.bhs-campaigns {
		padding: 24px 0 28px;
	}

	.bhs-campaigns__header {
		margin-bottom: 12px;
	}

	.bhs-campaigns__header h2 {
		font-size: 1.36rem;
	}

	.bhs-campaign-strip {
		grid-auto-columns: minmax(282px, 82vw);
		gap: 10px;
		padding-bottom: 12px;
	}

	.bhs-campaign-card {
		min-height: 330px;
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaign-card--layout-product.bhs-campaign-card--featured .bhs-campaign-card__media {
		height: clamp(168px, 50vw, 206px);
	}

	.bhs-campaign-card--layout-product .bhs-campaign-card__content {
		padding: 14px;
	}

	.bhs-campaign-card strong,
	.bhs-campaign-card--layout-product strong {
		font-size: 1.18rem;
		line-height: 1.04;
	}

	.bhs-campaign-card__line {
		font-size: 0.82rem;
	}

	.bhs-campaign-card__cta {
		min-height: 34px;
	}

	.bhs-rail {
		padding: 24px 0 18px;
	}

	.bhs-rail__header {
		align-items: center;
		margin-bottom: 10px;
	}

	.bhs-rail__header h2 {
		font-size: 1.22rem;
	}

	.bhs-rail__controls > a {
		font-size: 0.78rem;
	}

	.bhs-rail__arrow {
		width: 34px;
		min-width: 34px;
		min-height: 34px;
	}

	.bhs-product-strip {
		grid-auto-columns: 152px;
		gap: 10px;
		padding-bottom: 16px;
	}

	.bhs-product-card {
		grid-template-rows: 112px minmax(132px, auto);
	}

	.bhs-product-card__image {
		padding: 9px;
	}

	.bhs-product-card__image img {
		height: 88px;
	}

	.bhs-product-card__body {
		gap: 5px;
		padding: 10px;
	}

	.bhs-product-card__category {
		display: none;
	}

	.bhs-product-card h3 {
		font-size: 0.78rem;
	}

	.bhs-product-card__price {
		font-size: 0.98rem;
	}

	.bhs-home .bhs-product-card .bhs-add-to-cart {
		min-height: 34px;
		font-size: 0.8rem;
	}
}

@media (max-width: 390px) {

	.bhs-hero h1 {
		font-size: 2.08rem;
	}

	.bhs-product-strip {
		grid-auto-columns: 148px;
	}
}

/* Detail layer: icon scale, campaign counts and Woo add-to-cart guards. */
.bhs-home .bhs-icon {
	width: 18px;
	height: 18px;
	stroke-width: 2.1;
}

.bhs-home .bhs-rail__arrow .bhs-icon {
	width: 17px;
	height: 17px;
}

.bhs-home .bhs-product-card .bhs-add-to-cart .bhs-icon {
	width: 16px;
	height: 16px;
}

@media (min-width: 921px) {
	.bhs-campaigns--count-1 .bhs-campaign-strip,
	.bhs-campaigns--count-2 .bhs-campaign-strip,
	.bhs-campaigns--count-3 .bhs-campaign-strip,
	.bhs-campaigns--count-many .bhs-campaign-strip {
		display: grid;
		grid-auto-flow: row;
		overflow: visible;
	}

	.bhs-campaigns--count-1 .bhs-campaign-strip {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: minmax(390px, auto);
	}

	.bhs-campaigns--count-2 .bhs-campaign-strip {
		grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
		grid-template-rows: minmax(430px, auto);
		align-items: stretch;
	}

	.bhs-campaigns--count-3 .bhs-campaign-strip {
		grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
		grid-template-rows: repeat(2, minmax(205px, auto));
	}

	.bhs-campaigns--count-many .bhs-campaign-strip {
		grid-template-columns: minmax(0, 1.34fr) minmax(230px, 0.58fr) minmax(230px, 0.58fr);
		grid-template-rows: repeat(2, minmax(190px, auto));
	}

	.bhs-campaigns--count-1 .bhs-campaign-card,
	.bhs-campaigns--count-2 .bhs-campaign-card,
	.bhs-campaigns--count-3 .bhs-campaign-card,
	.bhs-campaigns--count-many .bhs-campaign-card {
		grid-column: auto;
		grid-row: auto;
		min-width: 0;
	}

	.bhs-campaigns--count-1 .bhs-campaign-card--featured {
		min-height: 390px;
	}

	.bhs-campaigns--count-2 .bhs-campaign-card {
		min-height: 430px;
	}

	.bhs-campaigns--count-3 .bhs-campaign-card--featured,
	.bhs-campaigns--count-many .bhs-campaign-card--featured {
		grid-column: 1;
		grid-row: 1 / 3;
		min-height: 424px;
	}

	.bhs-campaigns--count-3 .bhs-campaign-card:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.bhs-campaigns--count-3 .bhs-campaign-card:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.bhs-campaigns--count-many .bhs-campaign-card:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.bhs-campaigns--count-many .bhs-campaign-card:nth-child(3) {
		grid-column: 3;
		grid-row: 1;
	}

	.bhs-campaigns--count-many .bhs-campaign-card:nth-child(4) {
		grid-column: 2 / 4;
		grid-row: 2;
	}

	.bhs-campaigns--count-2 .bhs-campaign-card--layout-product,
	.bhs-campaigns--count-3 .bhs-campaign-card--layout-product,
	.bhs-campaigns--count-many .bhs-campaign-card--layout-product {
		display: flex;
		flex-direction: column;
	}

	.bhs-campaigns--count-2 .bhs-campaign-card--layout-product .bhs-campaign-card__media {
		height: 238px;
	}

	.bhs-campaigns--count-2 .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media {
		height: 254px;
	}

	.bhs-campaigns--count-2 .bhs-campaign-card--layout-product .bhs-campaign-card__content {
		flex: 1 1 auto;
		justify-content: center;
		padding: 24px;
	}

	.bhs-campaigns--count-2 .bhs-campaign-card--layout-product strong {
		font-size: clamp(1.48rem, 2vw, 2.08rem);
	}

	.bhs-campaigns--count-1 .bhs-campaign-card--layout-product {
		display: grid;
		grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	}

	.bhs-campaigns--count-1 .bhs-campaign-card--layout-product .bhs-campaign-card__media {
		height: 100%;
	}

	.bhs-campaigns--count-1 .bhs-campaign-card--layout-product .bhs-campaign-card__content {
		justify-content: center;
		padding: 34px;
	}
}

.bhs-product-card {
	grid-template-rows: 146px minmax(152px, auto);
}

.bhs-product-card__image img {
	height: 112px;
}

.bhs-product-card__body {
	grid-template-rows: auto minmax(2.05em, auto) auto auto;
}

.bhs-home .bhs-product-card a.bhs-add-to-cart.button,
.bhs-home .bhs-product-card .bhs-add-to-cart.button,
.bhs-home .bhs-product-card button.bhs-add-to-cart,
.bhs-home .bhs-product-card .bhs-add-to-cart {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 7px !important;
	width: 100% !important;
	min-height: 36px !important;
	margin: 0 !important;
	border: 1px solid rgba(0, 65, 125, 0.18) !important;
	border-radius: 8px !important;
	padding: 0 12px !important;
	background: linear-gradient(135deg, #0879c5 0%, var(--bhs-blue-deep) 100%) !important;
	color: #ffffff !important;
	font-size: 0.84rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	box-shadow: 0 8px 18px rgba(0, 73, 135, 0.15) !important;
	appearance: none;
}

.bhs-home .bhs-product-card a.bhs-add-to-cart.button:hover,
.bhs-home .bhs-product-card a.bhs-add-to-cart.button:focus,
.bhs-home .bhs-product-card button.bhs-add-to-cart:hover,
.bhs-home .bhs-product-card button.bhs-add-to-cart:focus,
.bhs-home .bhs-product-card .bhs-add-to-cart:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart:focus {
	background: linear-gradient(135deg, #006bb6 0%, #003a70 100%) !important;
	color: #ffffff !important;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-added {
	background: linear-gradient(135deg, var(--bhs-green) 0%, #0c6548 100%) !important;
}

@media (max-width: 700px) {
	.bhs-product-card {
		grid-template-rows: 108px minmax(130px, auto);
	}

	.bhs-home .bhs-product-card a.bhs-add-to-cart.button,
	.bhs-home .bhs-product-card .bhs-add-to-cart.button,
	.bhs-home .bhs-product-card button.bhs-add-to-cart,
	.bhs-home .bhs-product-card .bhs-add-to-cart {
		min-height: 34px !important;
		font-size: 0.78rem !important;
	}

}

/* Campaign slider and search action layer. */

.bhs-campaigns--slider {
	padding: 32px 0 38px;
	background:
		linear-gradient(180deg, #edf5fc 0%, #f8fbff 100%);
}

.bhs-campaigns--slider .bhs-campaigns__header {
	align-items: center;
	margin-bottom: 14px;
}

.bhs-campaigns--slider .bhs-campaigns__controls {
	display: flex;
	gap: 8px;
}

.bhs-campaigns--slider .bhs-campaign-slider,
.bhs-campaigns--slider.bhs-campaigns--count-1 .bhs-campaign-slider,
.bhs-campaigns--slider.bhs-campaigns--count-2 .bhs-campaign-slider,
.bhs-campaigns--slider.bhs-campaigns--count-3 .bhs-campaign-slider,
.bhs-campaigns--slider.bhs-campaigns--count-many .bhs-campaign-slider {
	display: grid !important;
	grid-auto-flow: column !important;
	grid-auto-columns: 100% !important;
	grid-template-columns: none !important;
	grid-template-rows: none !important;
	gap: 0 !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	padding: 0 !important;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	overscroll-behavior-inline: contain;
}

.bhs-campaigns--slider .bhs-campaign-slider::-webkit-scrollbar {
	display: none;
}

.bhs-campaigns--slider .bhs-campaign-card,
.bhs-campaigns--slider .bhs-campaign-card--featured,
.bhs-campaigns--slider .bhs-campaign-card:nth-child(n) {
	grid-column: auto !important;
	grid-row: auto !important;
	min-width: 100% !important;
	scroll-snap-align: start;
}

.bhs-campaigns--slider .bhs-campaign-card {
	min-height: clamp(390px, 34vw, 500px) !important;
	border-radius: 8px;
	box-shadow: 0 20px 48px rgba(6, 42, 82, 0.18);
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product {
	display: grid !important;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr) !important;
	grid-template-rows: none !important;
	background: #ffffff;
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__media,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media {
	order: 2;
	height: 100% !important;
	min-height: 0;
	background:
		radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--bhs-campaign-accent) 20%, transparent), transparent 20rem),
		linear-gradient(135deg, #fff6d6 0%, #ffffff 46%, #e8f5ff 100%);
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__content,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__content {
	order: 1;
	justify-content: center;
	min-height: 100%;
	padding: clamp(26px, 4.2vw, 54px);
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
		linear-gradient(135deg, var(--bhs-blue-ink) 0%, var(--bhs-blue-deep) 68%, var(--bhs-blue) 100%);
	color: #ffffff;
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__type,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__type {
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.13);
	color: #ffe08a;
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product strong,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product strong {
	max-width: 560px;
	color: #ffffff;
	font-size: clamp(2rem, 3.4vw, 3.45rem);
	line-height: 0.96;
	text-shadow: 0 4px 22px rgba(3, 31, 62, 0.26);
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__line,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__line {
	max-width: 520px;
	color: #dcecff;
	font-size: clamp(0.98rem, 1.3vw, 1.12rem);
	text-shadow: none;
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__cta,
.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__cta {
	border-radius: 8px;
	background: linear-gradient(135deg, #ffd869 0%, var(--bhs-gold) 100%);
	color: #211600;
}

.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: clamp(14px, 2.5vw, 32px);
}

.bhs-campaigns--slider .bhs-campaign-card--layout-overlay {
	min-height: clamp(390px, 34vw, 500px) !important;
}

.bhs-campaigns--slider .bhs-campaign-card--layout-overlay .bhs-campaign-card__content {
	justify-content: center;
	padding: clamp(26px, 4.2vw, 54px);
}

.bhs-campaign-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.bhs-campaign-dot {
	width: 9px;
	min-width: 9px;
	height: 9px;
	min-height: 9px;
	border: 0;
	border-radius: var(--bhs-radius-pill);
	padding: 0;
	background: rgba(13, 63, 111, 0.28);
	box-shadow: none;
	transition: width 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.bhs-campaign-dot[aria-current="true"] {
	width: 28px;
	background: var(--bhs-blue-deep);
}

.bhs-campaign-dot:hover,
.bhs-campaign-dot:focus-visible {
	transform: translateY(-1px);
	background: var(--bhs-blue);
}

.bhs-campaigns--count-1 .bhs-campaigns__controls,
.bhs-campaigns--count-1 .bhs-campaign-dots {
	display: none;
}

@media (max-width: 920px) {

	.bhs-campaigns--slider .bhs-campaign-card,
	.bhs-campaigns--slider .bhs-campaign-card--layout-overlay {
		min-height: 430px !important;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product {
		display: flex !important;
		flex-direction: column;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media {
		order: 1;
		height: 210px !important;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__content,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__content {
		order: 2;
		flex: 1 1 auto;
		min-height: auto;
		padding: 18px;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product strong,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product strong {
		font-size: clamp(1.48rem, 7vw, 2.1rem);
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__line,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__line {
		font-size: 0.94rem;
	}
}

@media (max-width: 700px) {

	.bhs-campaigns--slider {
		padding: 22px 0 30px;
	}

	.bhs-campaigns--slider .bhs-campaigns__header {
		margin-bottom: 10px;
	}

	.bhs-campaigns--slider .bhs-campaigns__header h2 {
		font-size: 1.28rem;
	}

	.bhs-campaigns--slider .bhs-campaign-card,
	.bhs-campaigns--slider .bhs-campaign-card--layout-overlay {
		min-height: 404px !important;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media {
		height: 184px !important;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__img {
		padding: 12px;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__content,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__content,
	.bhs-campaigns--slider .bhs-campaign-card--layout-overlay .bhs-campaign-card__content {
		padding: 16px;
	}

	.bhs-campaign-dots {
		margin-top: 10px;
	}

}

@media (min-width: 921px) {
	.bhs-campaigns--slider .bhs-campaign-card--layout-product,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product {
		position: relative;
		display: grid !important;
		grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr) !important;
		min-height: clamp(390px, 36vw, 520px) !important;
		background: var(--bhs-blue-ink);
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__media,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media {
		position: absolute !important;
		inset: 0 !important;
		order: initial;
		width: 100% !important;
		height: 100% !important;
		background: #ffffff;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__media picture,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media picture {
		width: 100%;
		height: 100%;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__media::after,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__media::after {
		display: block;
		background:
			linear-gradient(90deg, rgba(8, 43, 78, 0.96) 0%, rgba(8, 43, 78, 0.88) 38%, rgba(8, 43, 78, 0.24) 68%, rgba(8, 43, 78, 0.02) 100%),
			linear-gradient(180deg, rgba(8, 43, 78, 0.12) 0%, rgba(8, 43, 78, 0.12) 100%);
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__img,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__img {
		width: 100%;
		height: 100%;
		padding: 0;
		object-fit: cover;
		object-position: center;
	}

	.bhs-campaigns--slider .bhs-campaign-card--layout-product .bhs-campaign-card__content,
	.bhs-campaigns--slider .bhs-campaign-card--featured.bhs-campaign-card--layout-product .bhs-campaign-card__content {
		z-index: 2;
		grid-column: 1;
		order: initial;
		min-height: 100%;
		max-width: 520px;
		background:
			repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
			linear-gradient(135deg, rgba(13, 63, 111, 0.98) 0%, rgba(21, 91, 148, 0.92) 100%);
	}
}

.bhs-category-section {
	position: relative;
	z-index: 2;
	margin-top: 0;
}

/* Header control layer: compact logo, search and account/cart actions. */

/* Image-first hero banner layer. */
.bhs-home .bhs-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 0;
	background:
		linear-gradient(180deg, rgba(255, 191, 0, 0.9) 0 5px, transparent 5px),
		linear-gradient(135deg, #006eb7 0%, #005492 52%, #053a70 100%);
	color: #ffffff;
}

.bhs-home .bhs-hero::after {
	display: none;
}

.bhs-home .bhs-hero-slider {
	--bhs-hero-ratio: 1920 / 520;
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	border-radius: 0;
	padding: 0 !important;
	isolation: isolate;
}

/* Top scrim: campaign art with a white upper edge would otherwise merge
 * with the white sticky header into a single flat layer. Sits above the
 * slides (z 0-2) and below the controls (z 4). */
.bhs-home .bhs-hero-slider::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 28px;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(16, 36, 61, 0.1), transparent);
}

.bhs-home .bhs-hero-slider__viewport {
	display: grid !important;
	grid-auto-flow: column !important;
	grid-auto-columns: 100% !important;
	gap: 0 !important;
	width: 100%;
	aspect-ratio: var(--bhs-hero-ratio);
	overflow-x: auto !important;
	overflow-y: hidden !important;
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(135deg, #00437b 0%, #006eb7 52%, #00508d 100%);
	box-shadow: none;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.bhs-home .bhs-hero-slider__viewport::-webkit-scrollbar {
	display: none;
}

.bhs-home .bhs-hero-slide {
	--bhs-campaign-accent: var(--bhs-gold);
	position: relative;
	display: block;
	width: 100%;
	min-width: 100%;
	min-height: 0;
	aspect-ratio: var(--bhs-hero-ratio);
	overflow: hidden;
	color: #ffffff;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.bhs-home .bhs-hero-slide__media,
.bhs-home .bhs-hero-slide__media picture,
.bhs-home .bhs-hero-slide__media .bhs-campaign-card__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.bhs-home .bhs-hero-slide__media {
	z-index: 0;
	background:
		radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--bhs-campaign-accent) 18%, transparent), transparent 28rem),
		linear-gradient(135deg, #eaf5ff 0%, #ffffff 46%, #fff4cf 100%);
}

.bhs-home .bhs-hero-slide__media::after {
	display: none;
}

.bhs-home .bhs-hero-slide .bhs-campaign-card__img,
.bhs-home .bhs-hero-slide--layout-product .bhs-campaign-card__img,
.bhs-home .bhs-hero-slide--layout-overlay .bhs-campaign-card__img,
.bhs-home .bhs-hero-slide--layout-banner .bhs-campaign-card__img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: contain;
	object-position: center;
}

.bhs-home .bhs-hero-slide__content {
	position: absolute;
	left: clamp(18px, 4.2vw, 72px);
	bottom: clamp(16px, 3.2vw, 44px);
	z-index: 2;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: min(420px, calc(100% - 150px));
	min-height: 0;
	max-width: 420px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(5, 45, 84, 0.82) 0%, rgba(5, 66, 118, 0.68) 100%);
	box-shadow:
		0 16px 36px rgba(0, 29, 58, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(16px);
}

.bhs-home .bhs-hero-slide__type {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	margin: 0 0 5px;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
	color: var(--bhs-gold);
	font-size: 0.68rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.bhs-home .bhs-hero-slide__campaign-title {
	display: block;
	max-width: 100%;
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.02rem, 1.8vw, 1.34rem);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: 0;
	text-shadow: none;
}

.bhs-home .bhs-hero-slide__line {
	display: block;
	max-width: 100%;
	margin-top: 5px;
	color: rgba(236, 247, 255, 0.92);
	font-size: clamp(0.82rem, 1vw, 0.95rem);
	font-weight: 760;
	line-height: 1.28;
}

.bhs-home .bhs-hero-slide__cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	margin-top: 8px;
	border-radius: 8px;
	padding: 0 10px;
	background: var(--bhs-gold);
	color: #1d1600;
	font-size: 0.78rem;
	font-weight: 950;
	line-height: 1;
	box-shadow: none;
}

.bhs-home .bhs-hero-slide__cta .bhs-icon {
	width: 14px;
	height: 14px;
	stroke-width: 2.5;
}

.bhs-home .bhs-hero-slide:hover .bhs-hero-slide__cta,
.bhs-home .bhs-hero-slide:focus .bhs-hero-slide__cta {
	background: #ffe08a;
}

.bhs-home .bhs-hero-slider__controls {
	position: absolute;
	right: clamp(14px, 2.8vw, 42px);
	bottom: clamp(14px, 2.6vw, 34px);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--bhs-radius-pill);
	padding: 6px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 30px rgba(0, 29, 58, 0.18);
	backdrop-filter: blur(16px);
}

.bhs-home .bhs-hero-slider__controls .bhs-rail__arrow {
	width: 34px;
	min-width: 34px;
	min-height: 34px;
	border: 0;
	border-radius: var(--bhs-radius-pill);
	background: #ffffff;
	color: var(--bhs-blue-ink);
	box-shadow: none;
}

.bhs-home .bhs-hero-slider__controls .bhs-rail__arrow:disabled {
	opacity: 0.55;
}

.bhs-home .bhs-hero-slider__controls .bhs-campaign-dots {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

.bhs-home .bhs-hero-slider__controls .bhs-campaign-dot {
	width: 7px;
	height: 7px;
	border-radius: var(--bhs-radius-pill);
	background: rgba(0, 73, 135, 0.34);
	transition:
		width 160ms ease,
		background-color 160ms ease;
}

.bhs-home .bhs-hero-slider__controls .bhs-campaign-dot[aria-current="true"] {
	width: 20px;
	background: var(--bhs-blue);
}

.bhs-home .bhs-hero-slide__fallback-visual {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: clamp(34px, 5vw, 76px) clamp(22px, 6vw, 92px);
	background:
		radial-gradient(circle at 72% 20%, rgba(255, 224, 138, 0.34), transparent 22rem),
		linear-gradient(135deg, #eaf5ff 0%, #ffffff 54%, #fff7dc 100%);
}

.bhs-home .bhs-hero-slide__fallback-visual span {
	min-height: 0;
	border-radius: 8px;
}

@media (max-width: 1100px) {
	.bhs-home .bhs-hero-slider {
		--bhs-hero-ratio: 1280 / 420;
	}

	.bhs-home .bhs-hero-slide__content {
		width: min(360px, calc(100% - 130px));
		padding: 10px 12px;
	}

	.bhs-home .bhs-hero-slide__line {
		font-size: 0.8rem;
	}
}

@media (max-width: 700px) {
	.bhs-home .bhs-hero {
		margin-top: 0;
	}

	.bhs-home .bhs-hero-slider {
		--bhs-hero-ratio: 900 / 360;
	}

	.bhs-home .bhs-hero-slide {
		display: block;
		min-height: 0;
	}

	.bhs-home .bhs-hero-slide__media,
	.bhs-home .bhs-hero-slide__media picture,
	.bhs-home .bhs-hero-slide__media .bhs-campaign-card__img {
		position: absolute;
		inset: 0;
		height: 100%;
	}

	.bhs-home .bhs-hero-slide__content {
		left: 12px;
		bottom: 12px;
		width: min(180px, calc(100% - 154px));
		max-width: 180px;
		padding: 9px 10px;
		border-radius: 8px;
	}

	.bhs-home .bhs-hero-slide__type {
		display: none;
	}

	.bhs-home .bhs-hero-slide__campaign-title {
		font-size: 0.9rem;
		line-height: 1.08;
	}

	.bhs-home .bhs-hero-slide__line {
		display: none;
	}

	.bhs-home .bhs-hero-slide__cta {
		display: none;
	}

	.bhs-home .bhs-hero-slider__controls {
		left: auto;
		right: 10px;
		bottom: 10px;
		transform: none;
		gap: 6px;
		padding: 4px;
	}

	.bhs-home .bhs-hero-slider__controls .bhs-rail__arrow {
		width: 28px;
		min-width: 28px;
		min-height: 28px;
	}

	.bhs-home .bhs-hero-slider__controls .bhs-campaign-dot {
		width: 6px;
		height: 6px;
	}

	.bhs-home .bhs-hero-slider__controls .bhs-campaign-dot[aria-current="true"] {
		width: 16px;
	}
}

/* Product art containment. */
.bhs-home .bhs-product-card__image {
	background: #ffffff;
	border-bottom-color: rgba(206, 221, 235, 0.78);
	overflow: hidden;
}

.bhs-home .bhs-product-card__body {
	background:
		linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
}

.bhs-home .bhs-product-card__image img {
	width: auto;
	height: auto;
	max-width: calc(100% - 8px);
	max-height: calc(100% - 8px);
	object-fit: contain;
	transform: none;
	transform-origin: center;
	transition: transform 180ms ease;
}

.bhs-home .bhs-product-card:hover .bhs-product-card__image img {
	transform: none;
}

/* Homepage quantity controls. */
.bhs-home .bhs-product-card {
	grid-template-rows: 146px minmax(196px, auto);
}

.bhs-home .bhs-product-action {
	display: grid;
	gap: 7px;
	align-self: end;
}

.bhs-home .bhs-quantity-stepper {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 34px;
	align-items: center;
	min-height: 34px;
	border: 1px solid rgba(0, 73, 135, 0.16);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
	overflow: hidden;
}

.bhs-home .bhs-quantity-stepper__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: #f3f8ff;
	color: var(--bhs-blue-deep);
	cursor: pointer;
	appearance: none;
}

.bhs-home .bhs-quantity-stepper__button:hover,
.bhs-home .bhs-quantity-stepper__button:focus-visible {
	background: #e6f2ff;
	color: var(--bhs-blue-ink);
}

.bhs-home .bhs-quantity-stepper__button .bhs-icon {
	width: 15px;
	height: 15px;
	stroke-width: 2.5;
}

.bhs-home .bhs-quantity-stepper__input {
	width: 100%;
	min-width: 0;
	height: 34px;
	border: 0;
	padding: 0 4px;
	background: transparent;
	color: var(--bhs-ink);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 950;
	line-height: 34px;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.bhs-home .bhs-quantity-stepper__input::-webkit-outer-spin-button,
.bhs-home .bhs-quantity-stepper__input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

@media (max-width: 700px) {
	.bhs-home .bhs-product-card {
		grid-template-rows: 108px minmax(168px, auto);
	}

	.bhs-home .bhs-product-action {
		gap: 6px;
	}

	.bhs-home .bhs-quantity-stepper {
		grid-template-columns: 32px minmax(0, 1fr) 32px;
		min-height: 32px;
	}

	.bhs-home .bhs-quantity-stepper__button,
	.bhs-home .bhs-quantity-stepper__input {
		height: 32px;
		line-height: 32px;
	}
}

/* Quiet add-to-cart feedback. */
.bhs-home .added_to_cart.wc-forward,
.bhs-home .bhs-toast,
body.bhs-home-active .woocommerce-message,
body.bhs-home-active .wc-block-components-notice-banner.is-success {
	display: none !important;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-added {
	background: linear-gradient(180deg, #18a76d 0%, #0d7f55 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 24px rgba(13, 127, 85, 0.2) !important;
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-loading {
	pointer-events: none;
	opacity: 0.88;
}

/* Added-state cascade guard for Woo and custom add-to-cart buttons. */
.bhs-home .bhs-product-card a.bhs-add-to-cart.button.is-added,
.bhs-home .bhs-product-card a.bhs-add-to-cart.button.is-added:hover,
.bhs-home .bhs-product-card a.bhs-add-to-cart.button.is-added:focus,
.bhs-home .bhs-product-card .bhs-add-to-cart.is-added,
.bhs-home .bhs-product-card .bhs-add-to-cart.is-added:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart.is-added:focus {
	border-color: rgba(13, 127, 85, 0.45) !important;
	background: linear-gradient(180deg, #18a76d 0%, #0d7f55 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 24px rgba(13, 127, 85, 0.2) !important;
	opacity: 1 !important;
	transform: none !important;
}

.bhs-home mark {
	border-radius: 5px;
	padding: 0 2px;
	background: rgba(255, 199, 44, 0.34);
	color: inherit;
}

.bhs-home .bhs-product-card h3 a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.bhs-home mark {
	border-radius: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	color: inherit !important;
}

/* Add-to-cart click and added feedback. */
@keyframes bhsAddToCartClick {
	0% {
		transform: translateY(0) scale(1);
	}

	45% {
		transform: translateY(1px) scale(0.985);
	}

	100% {
		transform: translateY(0) scale(1);
	}
}

.bhs-home .bhs-product-card .bhs-add-to-cart.is-clicked {
	animation: bhsAddToCartClick 280ms ease;
}

.bhs-home .bhs-product-card a.bhs-add-to-cart.button.added,
.bhs-home .bhs-product-card a.bhs-add-to-cart.button.added:hover,
.bhs-home .bhs-product-card a.bhs-add-to-cart.button.added:focus,
.bhs-home .bhs-product-card .bhs-add-to-cart.added,
.bhs-home .bhs-product-card .bhs-add-to-cart.added:hover,
.bhs-home .bhs-product-card .bhs-add-to-cart.added:focus {
	border-color: rgba(13, 127, 85, 0.45) !important;
	background: linear-gradient(180deg, #18a76d 0%, #0d7f55 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 24px rgba(13, 127, 85, 0.2) !important;
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.bhs-home .bhs-product-card .bhs-add-to-cart.is-clicked {
		animation: none;
	}
}

/* Delivery policy section. */
.bhs-home .bhs-delivery-policy {
	margin-top: clamp(30px, 4vw, 46px);
	border-top: 1px solid var(--bhs-line);
	background: var(--bhs-white);
}

.bhs-home .bhs-delivery-policy__layout {
	display: grid;
	grid-template-columns: minmax(240px, 0.85fr) minmax(360px, 1.4fr) minmax(250px, 0.9fr);
	gap: clamp(22px, 3vw, 40px);
	align-items: start;
	padding-top: clamp(30px, 4vw, 44px);
	padding-bottom: clamp(32px, 4vw, 48px);
}

.bhs-home .bhs-delivery-policy__eyebrow {
	margin: 0 0 9px;
	color: var(--bhs-blue-deep);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.bhs-home .bhs-delivery-policy__intro h2 {
	margin: 0 0 12px;
	color: var(--bhs-ink);
	font-size: 1.7rem;
	line-height: 1.18;
	letter-spacing: 0;
}

.bhs-home .bhs-delivery-policy__intro p:last-child,
.bhs-home .bhs-delivery-policy__schedule p {
	margin: 0;
	color: var(--bhs-text);
	font-size: 0.92rem;
	line-height: 1.55;
}

.bhs-home .bhs-delivery-policy__zones {
	margin: 0;
}

.bhs-home .bhs-delivery-policy__zones div {
	padding: 0 0 13px;
	margin: 0 0 13px;
	border-bottom: 1px solid var(--bhs-line-soft);
}

.bhs-home .bhs-delivery-policy__zones div:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border: 0;
}

.bhs-home .bhs-delivery-policy__zones dt {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
	color: var(--bhs-ink);
	font-size: 0.95rem;
	font-weight: 800;
}

.bhs-home .bhs-delivery-policy__zones dt strong {
	flex: none;
	color: var(--bhs-blue-deep);
}

.bhs-home .bhs-delivery-policy__zones dd {
	margin: 0;
	color: var(--bhs-muted);
	font-size: 0.84rem;
	line-height: 1.5;
}

.bhs-home .bhs-delivery-policy__schedule {
	border-left: 2px solid var(--bhs-gold);
	padding-left: 18px;
}

.bhs-home .bhs-delivery-policy__schedule h3 {
	margin: 0 0 12px;
	color: var(--bhs-ink);
	font-size: 1rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.bhs-home .bhs-delivery-policy__schedule p + p {
	margin-top: 10px;
}

@media (max-width: 980px) {
	.bhs-home .bhs-delivery-policy__layout {
		grid-template-columns: 1fr 1fr;
	}

	.bhs-home .bhs-delivery-policy__intro {
		grid-column: 1 / -1;
	}
}

@media (max-width: 660px) {
	.bhs-home .bhs-delivery-policy__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.bhs-home .bhs-delivery-policy__intro h2 {
		font-size: 1.45rem;
	}
}

/* Product cards: stronger product art with compact always-visible quantity controls. */
.bhs-home .bhs-product-strip {
	grid-auto-columns: 244px;
	gap: 16px;
	padding: 8px 2px 24px;
}

.bhs-home .bhs-product-card {
	grid-template-rows: 184px minmax(198px, auto);
	border-color: rgba(0, 73, 135, 0.18);
	border-radius: 8px;
	background: var(--bhs-white);
	box-shadow: 0 14px 30px rgba(6, 42, 82, 0.11);
}

.bhs-home .bhs-product-card:hover {
	border-color: rgba(0, 107, 182, 0.42);
	box-shadow: 0 20px 38px rgba(6, 42, 82, 0.15);
	transform: translateY(-2px);
}

.bhs-home .bhs-product-card__image {
	padding: 12px;
	background: var(--bhs-white);
}

.bhs-home .bhs-product-card__image img {
	width: auto;
	height: auto;
	max-width: calc(100% - 4px);
	max-height: 164px;
	object-fit: contain;
	transform: none;
}

.bhs-home .bhs-product-card:hover .bhs-product-card__image img {
	transform: none;
}

.bhs-home .bhs-product-card__body {
	grid-template-rows: auto minmax(3.1em, auto) auto auto;
	gap: 8px;
	align-content: start;
	padding: 14px;
}

.bhs-home .bhs-product-card h3 {
	font-size: 0.92rem;
	line-height: 1.18;
}

.bhs-home .bhs-product-card h3 a {
	-webkit-line-clamp: 3;
}

.bhs-home .bhs-product-card__price {
	min-height: 24px;
	font-size: 1.12rem;
	line-height: 1.15;
}

.bhs-home .bhs-product-card .bhs-product-action {
	inline-size: 100% !important;
	min-inline-size: 0 !important;
	max-inline-size: 100% !important;
	gap: 8px;
	justify-self: stretch !important;
	align-self: end !important;
	margin-top: auto;
	box-sizing: border-box !important;
}

.bhs-home .bhs-product-card .bhs-quantity-stepper {
	inline-size: 100% !important;
	min-inline-size: 0 !important;
	max-inline-size: 100% !important;
	justify-self: stretch !important;
	grid-template-columns: minmax(38px, 1fr) 42px minmax(38px, 1fr);
	min-height: 36px;
	border-color: rgba(0, 73, 135, 0.18);
	border-radius: 8px;
	background: #eef6ff;
	box-shadow: none;
	box-sizing: border-box !important;
}

.bhs-home .bhs-product-card .bhs-quantity-stepper__button {
	width: auto;
	min-width: 0;
	height: 36px;
	background: transparent;
}

.bhs-home .bhs-product-card .bhs-quantity-stepper__button:hover,
.bhs-home .bhs-product-card .bhs-quantity-stepper__button:focus-visible {
	background: #dcecff;
	color: var(--bhs-blue-ink);
}

.bhs-home .bhs-product-card .bhs-quantity-stepper__input {
	width: 42px;
	height: 36px;
	border-right: 1px solid rgba(0, 73, 135, 0.14);
	border-left: 1px solid rgba(0, 73, 135, 0.14);
	padding: 0;
	background: var(--bhs-white);
	font-size: 0.92rem;
	line-height: 36px;
}

.bhs-home .bhs-product-card .bhs-add-to-cart {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	inline-size: 100% !important;
	min-inline-size: 0 !important;
	max-inline-size: 100% !important;
	justify-self: stretch !important;
	min-height: 38px;
	border-radius: 8px !important;
	box-sizing: border-box !important;
}

@media (max-width: 1100px) {
	.bhs-home .bhs-product-strip {
		grid-auto-columns: 228px;
	}

	.bhs-home .bhs-product-card {
		grid-template-rows: 172px minmax(196px, auto);
	}

	.bhs-home .bhs-product-card__image img {
		max-height: 152px;
	}
}

@media (max-width: 920px) {
	.bhs-home .bhs-product-strip {
		grid-auto-columns: 216px;
	}

	.bhs-home .bhs-product-card {
		grid-template-rows: 164px minmax(190px, auto);
	}

	.bhs-home .bhs-product-card__image img {
		max-height: 144px;
	}
}

@media (max-width: 700px) {
	.bhs-home .bhs-product-strip {
		grid-auto-columns: 184px;
		gap: 10px;
		padding-bottom: 18px;
	}

	.bhs-home .bhs-product-card {
		grid-template-rows: 132px minmax(174px, auto);
	}

	.bhs-home .bhs-product-card__image {
		padding: 9px;
	}

	.bhs-home .bhs-product-card__image img {
		max-height: 116px;
	}

	.bhs-home .bhs-product-card__body {
		gap: 6px;
		padding: 10px;
	}

	.bhs-home .bhs-product-card h3 {
		font-size: 0.82rem;
		line-height: 1.15;
	}

	.bhs-home .bhs-product-card__price {
		font-size: 1rem;
	}

	.bhs-home .bhs-product-card .bhs-product-action {
		gap: 6px;
	}

	.bhs-home .bhs-product-card .bhs-quantity-stepper {
		grid-template-columns: minmax(30px, 1fr) 38px minmax(30px, 1fr);
		min-height: 32px;
	}

	.bhs-home .bhs-product-card .bhs-quantity-stepper__button,
	.bhs-home .bhs-product-card .bhs-quantity-stepper__input {
		height: 32px;
		line-height: 32px;
	}

	.bhs-home .bhs-product-card .bhs-quantity-stepper__input {
		width: 38px;
		font-size: 0.84rem;
	}

	.bhs-home .bhs-product-card .bhs-add-to-cart {
		min-height: 34px;
		font-size: 0.78rem !important;
	}
}

@media (max-width: 390px) {
	.bhs-home .bhs-product-strip {
		grid-auto-columns: 172px;
	}

	.bhs-home .bhs-product-card {
		grid-template-rows: 124px minmax(170px, auto);
	}

	.bhs-home .bhs-product-card__image img {
		max-height: 108px;
	}
}

/* Delivery policy list layout. */
.bhs-home .bhs-delivery-policy {
	margin-top: clamp(30px, 4vw, 48px);
	border-top: 1px solid rgba(0, 73, 135, 0.12);
	background: #ffffff;
	overflow: visible;
}

.bhs-home .bhs-delivery-policy__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 3vw, 28px);
	align-items: start;
	padding-top: clamp(34px, 5vw, 54px);
	padding-bottom: clamp(36px, 5vw, 58px);
}

.bhs-home .bhs-delivery-policy__intro {
	position: static;
}

.bhs-home .bhs-delivery-policy__intro h2 {
	max-width: 560px;
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 2.2vw, 2.06rem);
	line-height: 1.12;
}

.bhs-home .bhs-delivery-policy__intro p:last-child {
	max-width: 560px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.bhs-home .bhs-delivery-policy__content {
	gap: 0;
}

.bhs-home .bhs-delivery-policy__zones {
	display: block;
	margin: 0;
}

.bhs-home .bhs-delivery-policy__zones div,
.bhs-home .bhs-delivery-policy__zones div:last-child {
	display: block;
	margin: 0;
	border: 0;
	border-bottom: 1px solid rgba(0, 73, 135, 0.13);
	border-radius: 0;
	padding: 17px 0 18px;
	background: transparent;
	box-shadow: none;
}

.bhs-home .bhs-delivery-policy__zones div:first-child {
	padding-top: 0;
}

.bhs-home .bhs-delivery-policy__zones dt {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 7px;
	color: var(--bhs-ink);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.25;
}

.bhs-home .bhs-delivery-policy__zones dt strong {
	flex: none;
	justify-self: auto;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
	color: var(--bhs-blue-deep);
	font-size: 1.02rem;
	font-weight: 950;
	line-height: 1.2;
	white-space: nowrap;
}

.bhs-home .bhs-delivery-policy__zones dd {
	display: block;
	max-width: 980px;
	margin: 0;
	color: #53657d;
	font-size: 0.94rem;
	line-height: 1.62;
	overflow-wrap: anywhere;
}

.bhs-home .bhs-delivery-policy__schedule {
	margin-top: 16px;
	border: 0;
	border-left: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
}

.bhs-home .bhs-delivery-policy__schedule h3 {
	margin: 0 0 7px;
	color: var(--bhs-ink);
	font-size: 0.95rem;
	line-height: 1.25;
}

.bhs-home .bhs-delivery-policy__schedule p {
	max-width: 980px;
	margin: 0;
	color: #53657d;
	font-size: 0.86rem;
	line-height: 1.58;
}

.bhs-home .bhs-delivery-policy__schedule p + p {
	margin-top: 4px;
}

@media (max-width: 980px) {
	.bhs-home .bhs-delivery-policy__layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.bhs-home .bhs-delivery-policy__intro h2,
	.bhs-home .bhs-delivery-policy__intro p:last-child {
		max-width: 680px;
	}
}

@media (max-width: 660px) {
	.bhs-home .bhs-delivery-policy__layout {
		gap: 18px;
		padding-top: 28px;
		padding-bottom: 36px;
	}

	.bhs-home .bhs-delivery-policy__intro h2 {
		font-size: 1.48rem;
		line-height: 1.14;
	}

	.bhs-home .bhs-delivery-policy__zones div,
	.bhs-home .bhs-delivery-policy__zones div:last-child {
		padding: 15px 0 16px;
	}

	.bhs-home .bhs-delivery-policy__zones dt {
		gap: 14px;
		margin-bottom: 6px;
		font-size: 0.98rem;
	}

	.bhs-home .bhs-delivery-policy__zones dd {
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.bhs-home .bhs-delivery-policy__schedule {
		margin-top: 14px;
	}

	.bhs-home .bhs-delivery-policy__schedule p {
		font-size: 0.85rem;
		line-height: 1.62;
	}
}

/* Delivery trust signal and support pages. */
.bhs-home .bhs-delivery-signal {
	border-bottom: 1px solid rgba(0, 73, 135, 0.11);
	background: #ffffff;
	color: #38516a;
}

.bhs-home .bhs-delivery-signal__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 14px;
	min-height: 38px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 0.8rem;
	font-weight: 650;
	line-height: 1.35;
	text-align: center;
}

.bhs-home .bhs-delivery-signal p {
	margin: 0;
}

.bhs-home .bhs-delivery-signal strong {
	color: var(--bhs-ink);
	font-weight: 900;
}

.bhs-home .bhs-delivery-signal a {
	color: var(--bhs-blue-deep);
	font-weight: 850;
	text-decoration: underline;
	text-decoration-color: rgba(0, 73, 135, 0.28);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.bhs-home .bhs-delivery-signal a:hover,
.bhs-home .bhs-delivery-signal a:focus-visible {
	color: var(--bhs-blue-ink);
	text-decoration-color: currentColor;
}

.bhs-support-page {
	min-height: 58vh;
	background: #ffffff;
}

.bhs-support-page__header {
	padding-top: clamp(30px, 5vw, 58px);
	padding-bottom: 0;
}

.bhs-support-page__eyebrow {
	display: inline-flex;
	margin: 0 0 10px;
	color: var(--bhs-blue-deep);
	font-size: 0.76rem;
	font-weight: 950;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.bhs-support-page__header h1 {
	max-width: 760px;
	margin: 0 0 12px;
	color: var(--bhs-ink);
	font-size: clamp(1.86rem, 3vw, 2.55rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.bhs-support-page__header p:last-child {
	max-width: 720px;
	margin: 0;
	color: #53657d;
	font-size: 1rem;
	line-height: 1.62;
}

.bhs-support-page__article {
	padding-top: clamp(24px, 3vw, 34px);
	padding-bottom: clamp(44px, 6vw, 72px);
}

.bhs-support-page__article-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 34px;
	border-top: 1px solid rgba(0, 73, 135, 0.13);
}

.bhs-support-page__section {
	border-bottom: 1px solid rgba(0, 73, 135, 0.13);
	padding: 19px 0 20px;
}

.bhs-support-page__section h2 {
	margin: 0 0 7px;
	color: var(--bhs-ink);
	font-size: 1rem;
	font-weight: 920;
	line-height: 1.25;
	letter-spacing: 0;
}

.bhs-support-page__section p {
	max-width: 600px;
	margin: 0;
	color: #53657d;
	font-size: 0.94rem;
	line-height: 1.64;
}

.bhs-support-page__contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 20px;
	margin-top: 22px;
	border: 1px solid rgba(0, 91, 151, 0.14);
	border-radius: 8px;
	padding: 16px;
	background: #f7fbff;
}

.bhs-support-page__contact div {
	display: grid;
	gap: 3px;
}

.bhs-support-page__contact strong {
	color: var(--bhs-ink);
	font-size: 0.98rem;
	font-weight: 920;
	line-height: 1.25;
}

.bhs-support-page__contact span {
	color: #53657d;
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.45;
}

.bhs-support-page__contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border-radius: 8px;
	padding: 0 14px;
	background: var(--bhs-blue-deep);
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 880;
	line-height: 1.2;
	text-decoration: none;
}

.bhs-support-page__contact a:hover,
.bhs-support-page__contact a:focus-visible {
	background: var(--bhs-blue-ink);
	color: #ffffff;
}

.bhs-delivery-info-page .bhs-delivery-policy {
	margin-top: 0;
	border-top: 0;
}

.bhs-delivery-info-page .bhs-delivery-policy__layout {
	padding-top: clamp(22px, 3vw, 32px);
	padding-bottom: clamp(44px, 6vw, 72px);
}

@media (max-width: 660px) {
	.bhs-home .bhs-delivery-signal__inner {
		justify-content: flex-start;
		min-height: 0;
		gap: 2px 10px;
		padding-top: 8px;
		padding-bottom: 8px;
		font-size: 0.76rem;
		text-align: left;
	}

	.bhs-home .bhs-delivery-signal a {
		white-space: nowrap;
	}

	.bhs-support-page__header {
		padding-top: 28px;
	}

	.bhs-support-page__header h1 {
		font-size: 1.7rem;
		line-height: 1.13;
	}

	.bhs-support-page__article-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.bhs-support-page__section {
		padding: 17px 0 18px;
	}

	.bhs-support-page__contact {
		align-items: stretch;
		padding: 14px;
	}

	.bhs-support-page__contact a {
		width: 100%;
	}
}

.bhs-home .bhs-product-card h3 {
	--bhs-card-title-line-height: 1.18;
	--bhs-card-title-lines: 3;
	display: block;
	height: calc(var(--bhs-card-title-line-height) * 1em * var(--bhs-card-title-lines));
	min-height: calc(var(--bhs-card-title-line-height) * 1em * var(--bhs-card-title-lines));
	max-height: none;
	margin: 0;
	overflow: visible;
	line-height: var(--bhs-card-title-line-height);
}

.bhs-home .bhs-product-card h3 a {
	display: -webkit-box;
	height: calc(var(--bhs-card-title-line-height) * 1em * var(--bhs-card-title-lines));
	max-height: calc(var(--bhs-card-title-line-height) * 1em * var(--bhs-card-title-lines));
	overflow: hidden;
	line-height: inherit;
	white-space: normal;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.bhs-home .bhs-product-card__body {
	justify-items: stretch;
	text-align: left;
}

.bhs-home .bhs-product-card__body:has(> .bhs-product-card__meta) {
	grid-template-rows: auto minmax(3.55em, auto) auto auto;
	gap: 6px;
}

.bhs-home .bhs-product-card h3,
.bhs-home .bhs-product-card h3 a {
	text-align: left;
}

.bhs-home .bhs-product-card__price {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	text-align: left;
}

.bhs-home .bhs-product-card .bhs-product-action {
	justify-items: stretch;
	width: 100%;
	text-align: left;
}

.bhs-home .bhs-product-card__meta .bhs-product-card__category {
	display: inline-block !important;
}

.bhs-home .bhs-product-card .bhs-add-to-cart-error {
	margin: -1px 0 0;
	color: #b82105;
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.25;
}

.bhs-home .bhs-product-card .bhs-add-to-cart-error[hidden] {
	display: none;
}

@media (max-width: 559px) {
	.bhs-home .bhs-product-card__meta {
		gap: 5px;
		font-size: 0.58rem;
	}
}
