/* ============================================================
   BeerHabits Shop/Woo UI
   Shared shop archive, product grid, category, cart-page, and Woo fallback styles.
   Checkout-specific styles live in checkout.css.
   Cart drawer and mini-cart base styles live in cart.css.
   Mobile overrides live in mobile.css.
   ============================================================ */

:root {
	--bh-shop-cols: 4;
	--bh-card-radius: 20px;
	--bh-shop-bg: var(--bh-page-bg);
	--bh-shop-bg-flat: var(--bh-page-bg-flat, #071827);
	--bh-shop-surface: var(--bh-panel-bg, rgba(8, 38, 58, 0.68));
	--bh-shop-surface-soft: var(--bh-surface, rgba(255, 255, 255, 0.05));
	--bh-shop-surface-strong: var(--bh-panel-bg-strong, rgba(9, 31, 48, 0.92));
	--bh-shop-border: var(--bh-line-strong, rgba(255, 255, 255, 0.15));
	--bh-shop-accent: var(--bh-accent-strong, #5cc5ff);
}
.bh-container {
	width: min(1280px, calc(100vw - 48px));
	margin-inline: auto;
}

/* ============================================================
   РЎР‘Р РћРЎ Р›РРЁРќРРҐ Р‘Р›РћРљРћР’ РќРђ WC-РЎРўР РђРќРР¦РђРҐ
   ============================================================ */

/* РЈР±РёСЂР°РµРј Kadence entry-hero / inner-header РЅР° РІСЃРµС… WC-СЃС‚СЂР°РЅРёС†Р°С… */

.woocommerce .entry-hero,
.woocommerce .bh-sitewide-promo,
.post-type-archive-product .entry-hero,
.post-type-archive-product .bh-sitewide-promo,
.tax-product_cat .entry-hero,
.tax-product_cat .bh-sitewide-promo,
.single-product .entry-hero {
	display: none !important;
}

/* РЈР±РёСЂР°РµРј РѕС‚СЃС‚СѓРї СЃРІРµСЂС…Сѓ Сѓ РЅР°С€РµРіРѕ shop-main С‡С‚РѕР±С‹ СЃР»Р°Р№РґРµСЂ РїСЂРёРјС‹РєР°Р» Рє header */

#bh-shop {
	padding-top: 0 !important;
	margin-top: 0 !important;
	background: transparent !important;
}
body.bh-shop-page,
body.bh-shop-page #wrapper,
body.bh-shop-page #inner-wrap {
	background: var(--bh-shop-bg) !important;
	background-attachment: fixed !important;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */

/* Full-width breakout from Kadence content container */

.bh-slider {
	position: relative;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	height: clamp(300px, 38vw, 500px);
	overflow: hidden;
	background: #0a4f78;
}

/* Sliding track */

.bh-slider__track {
	display: flex;
	height: 100%;
	transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

/* Individual slide вЂ” 2-column: text left, image right */

.bh-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	background:
	radial-gradient(ellipse at 75% 40%, color-mix(in srgb, var(--slide-accent) 28%, transparent), transparent 55%),
	radial-gradient(ellipse at 15% 85%, rgba(255,255,255,0.05), transparent 40%),
	linear-gradient(130deg, var(--slide-color) 0%, color-mix(in srgb, var(--slide-color) 65%, #000) 100%);
	/* Padding РґРѕР»Р¶РµРЅ Р±С‹С‚СЊ С€РёСЂРµ С‡РµРј СЃС‚СЂРµР»РєР° (46px + 14px offset = 60px) СЃ Р·Р°РїР°СЃРѕРј */

	padding: 0 max(96px, calc(50vw - 580px));
	gap: 32px;
	/* РќР•Рў overflow:hidden вЂ” РёРЅР°С‡Рµ РѕР±СЂРµР·Р°РµС‚ РёР·РѕР±СЂР°Р¶РµРЅРёРµ */

}

/* Fallback for browsers without color-mix */

@supports not (color: color-mix(in srgb, red 10%, blue)) {
	.bh-slider__slide {
		background: linear-gradient(130deg, var(--slide-color), #071e2e);
	}
}

/* Left column: text content */

.bh-slider__content {
	position: relative;
	z-index: 2;
	color: var(--bh-white);
	padding: 8px 0;
}
.bh-slider__kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--slide-accent, var(--bh-accent-deep));
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	padding: 5px 14px;
	margin-bottom: 20px;
}
.bh-slider__title {
	font-size: clamp(1.35rem, 2.8vw, 2.1rem);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.025em;
	color: var(--bh-white);
	margin: 0 0 12px;
}
.bh-slider__text {
	font-size: clamp(0.88rem, 1.3vw, 1rem);
	line-height: 1.65;
	color: rgba(255,255,255,0.7);
	margin: 0 0 20px;
	max-width: 480px;
}

/* Perks list */

.bh-slider__perks {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.bh-slider__perks li {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.82);
	display: flex;
	align-items: center;
	gap: 8px;
}
.bh-slider__perks li::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--slide-accent, var(--bh-accent-deep));
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.bh-slider__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 13px 28px;
	background: var(--slide-accent, var(--bh-accent-deep));
	color: var(--bh-white);
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 24px rgba(0,0,0,0.3);
	transition: filter 0.2s, transform 0.18s, box-shadow 0.2s;
	white-space: nowrap;
}
.bh-slider__btn:hover {
	filter: brightness(1.14);
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(0,0,0,0.35);
	color: var(--bh-white);
}

/* Right column: product image */

.bh-slider__image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	z-index: 2;
	overflow: visible;
}
.bh-slider__image img {
	display: block;
	max-height: clamp(180px, 34vw, 440px);
	max-width: 90%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 44px rgba(0,0,0,0.5));
	transform: rotate(-2deg) translateY(-8px);
	transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}
.bh-slider__slide.is-active .bh-slider__image img {
	animation: bhFloatImg 4s ease-in-out infinite alternate;
}

@keyframes bhFloatImg {
	from {
		transform: rotate(-2.5deg) translateY(-10px);
	}
	to {
		transform: rotate(-0.5deg) translateY(-20px);
	}
}

/* is-entering: content fades + slides in from slight offset */

.bh-slider__slide.is-entering .bh-slider__content {
	animation: bhSlideContentIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bh-slider__slide.is-entering .bh-slider__image {
	animation: bhSlideImageIn 1.10s cubic-bezier(0.16, 1, 0.3, 1) 0.04s both;
}

@keyframes bhSlideContentIn {
	from {
		opacity: 0;
		filter: blur(10px);
		transform: translate3d(-34px, 12px, 0) scale(0.985);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes bhSlideImageIn {
	from {
		opacity: 0;
		filter: blur(14px) saturate(0.86);
		transform: translate3d(46px, 12px, 0) scale(0.94);
	}
	to {
		opacity: 1;
		filter: blur(0) saturate(1);
		transform: translate3d(0, 0, 0) scale(1);
	}
}

/* Grain / film noise overlay */

.bh-slider::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	background-size: 200px 200px;
	mix-blend-mode: overlay;
}

/* Decorative emoji вЂ” larger, slow spin */

.bh-slider__deco {
	position: absolute;
	bottom: 8%;
	right: 0;
	font-size: clamp(52px, 7.5vw, 96px);
	line-height: 1;
	opacity: 0.20;
	pointer-events: none;
	user-select: none;
	filter: blur(0.5px);
	animation: bhDecoSpin 24s linear infinite;
}

@keyframes bhDecoSpin {
	from {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(8deg) scale(1.06);
	}
	to {
		transform: rotate(0deg) scale(1);
	}
}

/* Glow behind product image вЂ” radial color blob */

.bh-slider__image::before {
	content: '';
	position: absolute;
	width: 70%;
	height: 80%;
	top: 10%;
	left: 15%;
	background: radial-gradient(ellipse at 50% 50%, color-mix(in srgb, var(--slide-accent, var(--bh-accent-deep)) 40%, transparent), transparent 70%);
	pointer-events: none;
	z-index: 0;
	filter: blur(32px);
	border-radius: 50%;
}

/* Diagonal clip-path split вЂ” on the img itself, not the container */

/* Container stays overflow:visible so glow bleeds out */

.bh-slider__image img {
	clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
	position: relative;
	z-index: 1;
}

/* Arrow buttons вЂ” sharp rectangle, premium style */

.bh-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: 4px;
	/* sharp corners */

	background: rgba(255,255,255,0.10);
	color: var(--bh-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.20);
	transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	overflow: hidden;
}

/* Animated border shimmer on hover */

.bh-slider__arrow::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.45s ease;
}
.bh-slider__arrow:hover::after {
	transform: translateX(100%);
}
.bh-slider__arrow:hover {
	background: rgba(15, 139, 203, 0.30);
	border-color: rgba(15, 139, 203, 0.60);
	box-shadow: 0 0 16px rgba(15, 139, 203, 0.35);
	transform: translateY(-50%);
}
.bh-slider__arrow:focus-visible {
	outline: 2px solid var(--bh-accent-deep);
	outline-offset: 2px;
}
.bh-slider__arrow--prev {
	left: 16px;
}
.bh-slider__arrow--next {
	right: 16px;
}

/* Dots вЂ” hidden visually, kept in DOM for aria/JS fallback */

.bh-slider__dots {
	display: none;
}

/* ============================================================
   SLIDER CONTROLS BAR вЂ” segmented progress + counter
   ============================================================ */

.bh-slider__controls {
	position: absolute;
	bottom: 24px;
	left: max(24px, calc(50vw - 580px));
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 10;
}

/* Segmented progress bars */

.bh-slider__segs {
	display: flex;
	gap: 6px;
	align-items: center;
}
.bh-slider__seg {
	width: 48px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255,255,255,0.22);
	border: none;
	padding: 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: background 0.2s;
}
.bh-slider__seg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: var(--bh-white);
	border-radius: 2px;
	transition: none;
}
.bh-slider__seg.is-done {
	background: rgba(255,255,255,0.55);
}
.bh-slider__seg.is-done::after {
	width: 100%;
}

/* Active segment: no fill without is-playing (resets to 0) */

.bh-slider__seg.is-active::after {
	width: 0%;
	transition: none;
}

/* Active segment fill animation вЂ” synced with autoplay */

.bh-slider.is-playing .bh-slider__seg.is-active::after {
	width: 100%;
	transition: width 6s linear;
}

/* Counter: "01 / 03" */

.bh-slider__counter {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.65);
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.bh-slider__count-current {
	color: var(--bh-white);
}
.bh-slider__count-sep {
	margin: 0 2px;
	color: rgba(255,255,255,0.35);
}

/* Progress bar (top edge, very subtle) */

.bh-slider::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--bh-accent-deep), var(--bh-accent-strong), var(--bh-accent-deep));
	background-size: 200% 100%;
	width: 0%;
	z-index: 10;
	transition: none;
	animation: none;
}
.bh-slider.is-playing::after {
	width: 100%;
	transition: width 6s linear;
}

/* Responsive в‰¤ 900px: stack vertically */

@media (max-width: 960px) {
	.bh-slider {
		height: clamp(300px, 76vw, 500px);
		min-height: 0;
	}
	.bh-slider__slide {
		grid-template-columns: minmax(0, 1fr) minmax(138px, 0.78fr);
		grid-template-rows: none;
		padding: 28px 54px 72px;
		gap: 16px;
		align-items: center;
	}
	.bh-slider__content {
		padding: 0;
	}
	.bh-slider__image {
		display: flex;
		min-width: 0;
		clip-path: none;
	}
	.bh-slider__image img {
		max-width: 100%;
		max-height: clamp(170px, 50vw, 330px);
	}
	.bh-slider__deco {
		position: absolute;
		right: 10px;
		top: 58%;
		bottom: auto;
		transform: translateY(-50%);
		font-size: clamp(48px, 14vw, 96px);
		opacity: 0.12;
		filter: blur(0.5px);
		animation: bhDecoSpin 24s linear infinite;
	}
	.bh-slider__arrow {
		display: none;
	}
	.bh-slider__dots {
		display: none;
	}
	.bh-slider__controls {
		left: 50%;
		transform: translateX(-50%);
		bottom: 20px;
	}
	.bh-slider__text {
		max-width: 100%;
	}
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.bh-trust-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(11,56,82,0.08);
	border-top: 1px solid rgba(11,56,82,0.08);
	border-bottom: 1px solid rgba(11,56,82,0.08);
	margin-top: 0;
}
.bh-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 24px;
	background: var(--bh-white);
}
.bh-trust-item__icon {
	flex-shrink: 0;
}
.bh-trust-item__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.bh-trust-item__copy strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--bh-text, #0d2b3e);
	line-height: 1.3;
}
.bh-trust-item__copy span {
	font-size: 0.78rem;
	color: var(--bh-text-soft, #4a7085);
	line-height: 1.4;
}

@media (max-width: 960px) {
	.bh-trust-bar {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.bh-trust-bar {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   CATEGORY SHOWCASE
   ============================================================ */

.bh-cat-showcase {
	padding: 52px 0 48px;
	background: #f8fafc;
	border-bottom: 1px solid rgba(11,56,82,0.07);
}
.bh-cat-showcase__head {
	text-align: center;
	margin-bottom: 36px;
}
.bh-cat-showcase__title {
	font-size: clamp(1.4rem, 2.8vw, 2rem);
	font-weight: 800;
	color: var(--bh-text, #0d2b3e);
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}
.bh-cat-showcase__sub {
	font-size: 0.95rem;
	color: var(--bh-text-soft, #4a7085);
	margin: 0;
	max-width: 520px;
	margin-inline: auto;
}

/* 3-column grid */

.bh-cat-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Individual category card */

.bh-cat-card {
	position: relative;
	background: var(--bh-white);
	border: 1px solid rgba(11,56,82,0.09);
	border-radius: 18px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 28px 0 28px 28px;
	gap: 0;
	transition: box-shadow 0.28s ease, transform 0.24s ease;
	/* Accent line СЃРІРµСЂС…Сѓ */

	border-top: 3px solid var(--cat-accent, var(--bh-accent-deep));
}
.bh-cat-card:hover {
	box-shadow: 0 12px 40px rgba(11,56,82,0.12);
	transform: translateY(-3px);
}

/* Left: text content */

.bh-cat-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1;
}
.bh-cat-card__kicker {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cat-accent, var(--bh-accent-deep));
}
.bh-cat-card__name {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.2;
}
.bh-cat-card__name a {
	color: var(--bh-text, #0d2b3e);
	text-decoration: none;
	transition: color 0.18s;
}
.bh-cat-card__name a:hover {
	color: var(--cat-accent, var(--bh-accent-deep));
}
.bh-cat-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.bh-cat-card__list li::before {
	content: 'вЂ”';
	color: var(--cat-accent, var(--bh-accent-deep));
	font-size: 0.75rem;
	margin-right: 6px;
	opacity: 0.7;
}
.bh-cat-card__list a {
	font-size: 0.84rem;
	color: var(--bh-text-soft, #4a7085);
	text-decoration: none;
	transition: color 0.18s;
}
.bh-cat-card__list a:hover {
	color: var(--cat-accent, var(--bh-accent-deep));
}
.bh-cat-card__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--cat-accent, var(--bh-accent-deep));
	text-decoration: none;
	margin-top: 4px;
	transition: gap 0.18s;
}
.bh-cat-card__link:hover {
	gap: 8px;
	color: var(--cat-accent, var(--bh-accent-deep));
}

/* Right: product image */

.bh-cat-card__image {
	width: 130px;
	height: 160px;
	flex-shrink: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: visible;
	padding-right: 8px;
}
.bh-cat-card__image img {
	width: 120px;
	height: auto;
	max-height: 170px;
	object-fit: contain;
	filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
	transform: rotate(-2deg) translateY(-4px);
	transition: transform 0.36s cubic-bezier(0.34,1.56,0.64,1);
}
.bh-cat-card:hover .bh-cat-card__image img {
	transform: rotate(-0.5deg) translateY(-12px) scale(1.06);
}

/* Responsive */

@media (max-width: 960px) {
	.bh-cat-showcase__grid {
		grid-template-columns: 1fr;
	}
	.bh-cat-card {
		padding: 22px;
	}
	.bh-cat-card__image {
		width: 100px;
		height: 120px;
	}
}

/* ---- Shop header ---- */

.bh-shop-header {
	padding: 40px 0 0;
}
.bh-shop-header__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.bh-shop-header__title {
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0;
	text-transform: none;
	color: var(--bh-text, #0d2b3e);
}
.bh-shop-header__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(11, 56, 82, 0.08);
}

/* WooCommerce result count */

.woocommerce-result-count {
	margin: 0;
	font-size: 0.85rem;
	color: var(--bh-text-soft, #4a7085);
}

/* WooCommerce ordering select */

.woocommerce-ordering select {
	appearance: none;
	padding: 8px 36px 8px 14px;
	border: 1.5px solid rgba(11, 56, 82, 0.14);
	border-radius: 999px;
	background: var(--bh-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a7085' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
	font-size: 0.85rem;
	color: var(--bh-text, #0d2b3e);
	cursor: pointer;
	min-width: 180px;
}

/* ---- Category pills ---- */

.bh-shop-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.bh-shop-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	border-radius: 999px;
	border: 1.5px solid rgba(11, 56, 82, 0.14);
	background: var(--bh-white);
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--bh-text, #0d2b3e);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
	white-space: nowrap;
}
.bh-shop-cat-pill:hover {
	border-color: var(--bh-accent, var(--bh-accent-deep));
	color: var(--bh-accent, var(--bh-accent-deep));
	background: rgba(15, 139, 203, 0.05);
}
.bh-shop-cat-pill.is-active {
	background: var(--bh-accent, var(--bh-accent-deep));
	border-color: var(--bh-accent, var(--bh-accent-deep));
	color: var(--bh-white);
}
.bh-shop-cat-pill__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.1);
}
.bh-shop-cat-pill.is-active .bh-shop-cat-pill__count {
	background: rgba(255, 255, 255, 0.25);
}

/* ---- Product grid ---- */

.bh-shop-body {
	padding: 32px 0 64px;
}
.bh-product-grid {
	display: grid;
	grid-template-columns: repeat(var(--bh-shop-cols), 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ---- Product card ---- */

.bh-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--bh-card-radius);
	background: var(--bh-white);
	border: 1px solid rgba(11, 56, 82, 0.08);
	box-shadow: 0 4px 20px rgba(10, 50, 72, 0.07);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.bh-product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(10, 50, 72, 0.14);
}
.bh-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: rgba(15, 139, 203, 0.04);
}
.bh-product-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.42s ease;
}
.bh-product-card:hover .bh-product-card__img {
	transform: scale(1.05);
}
.bh-product-card__img--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bh-product-card__img--placeholder svg {
	width: 60px;
	height: 60px;
}
.bh-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.bh-product-card__badge--sale {
	background: #e84040;
	color: var(--bh-white);
}
.bh-product-card__badge--new {
	background: var(--bh-accent, var(--bh-accent-deep));
	color: var(--bh-white);
}
.bh-product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 18px 18px;
	gap: 6px;
}
.bh-product-card__cat {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bh-accent, var(--bh-accent-deep));
	opacity: 0.8;
}
.bh-product-card__title {
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.bh-product-card__title a {
	color: var(--bh-text, #0d2b3e);
	text-decoration: none;
	transition: color 0.18s;
}
.bh-product-card__title a:hover {
	color: var(--bh-accent, var(--bh-accent-deep));
}
.bh-product-card__desc {
	font-size: 0.82rem;
	color: var(--bh-text-soft, #4a7085);
	line-height: 1.55;
	margin: 2px 0 0;
	min-height: 48px;
	/* align descriptions across cards */

	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bh-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 12px;
}
.bh-product-card__price {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--bh-text, #0d2b3e);
}
.bh-product-card__price del {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--bh-text-soft, #4a7085);
	margin-right: 4px;
}
.bh-product-card__price ins {
	text-decoration: none;
	color: #e84040;
}

/* Add to cart button */

.bh-btn {
	--bh-button-gap: 6px;
	--bh-button-padding: 9px 16px;
	--bh-button-radius: 999px;
	--bh-button-font-size: 0.82rem;
	--bh-button-font-weight: 700;
	--bh-button-transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--bh-button-gap);
	padding: var(--bh-button-padding);
	border-radius: var(--bh-button-radius);
	font-size: var(--bh-button-font-size);
	font-weight: var(--bh-button-font-weight);
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: var(--bh-button-transition);
	white-space: nowrap;
}
.bh-btn--primary {
	--bh-button-primary-bg: var(--bh-accent, var(--bh-accent-deep));
	--bh-button-primary-color: var(--bh-white);
	--bh-button-primary-shadow: 0 4px 14px rgba(15, 139, 203, 0.3);
	background: var(--bh-button-primary-bg);
	color: var(--bh-button-primary-color);
	box-shadow: var(--bh-button-primary-shadow);
}
.bh-btn--primary:hover {
	background: var(--bh-button-primary-hover-bg, var(--bh-accent-deep, #0b72a8));
	transform: translateY(-1px);
	box-shadow: var(--bh-button-primary-hover-shadow, 0 6px 20px rgba(15, 139, 203, 0.4));
}
.bh-btn--primary.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Quantity added tick on button */

.bh-btn--primary.added::after {
	content: " вњ”";
}

/* ---- WooCommerce pagination ---- */

.woocommerce-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.woocommerce-pagination ul {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 600;
	border: 1.5px solid rgba(11, 56, 82, 0.12);
	color: var(--bh-text, #0d2b3e);
	text-decoration: none;
	background: var(--bh-white);
	transition: all 0.18s;
}
.woocommerce-pagination ul li a:hover {
	border-color: var(--bh-accent, var(--bh-accent-deep));
	color: var(--bh-accent, var(--bh-accent-deep));
}
.woocommerce-pagination ul li span.current {
	background: var(--bh-accent, var(--bh-accent-deep));
	border-color: var(--bh-accent, var(--bh-accent-deep));
	color: var(--bh-white);
}

/* ---- Responsive ---- */

@media (max-width: 1200px) {
	:root {
		--bh-shop-cols: 3;
	}
}

@media (max-width: 960px) {
	:root {
		--bh-shop-cols: 2;
	}
	.bh-shop-header__title {
		font-size: 1.4rem;
	}
	.bh-product-grid {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	:root {
		--bh-shop-cols: 2;
	}
	.bh-container {
		width: calc(100vw - 24px);
	}
	.bh-product-card__body {
		padding: 12px 14px 14px;
	}
	.bh-product-card__desc {
		display: none;
	}
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */

/* Hide Kadence + WooCommerce breadcrumbs on product pages вЂ” our back link replaces them */

.single-product .kadence-breadcrumbs,
.single-product nav.woocommerce-breadcrumb,
.single-product .woocommerce-breadcrumb {
	display: none !important;
}

/* Back to shop link */

.bh-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--bh-text-soft, #4a7085);
	text-decoration: none;
	margin: 0 0 4px;
	transition: color 0.18s;
}
.bh-back-link:hover {
	color: var(--bh-accent, var(--bh-accent-deep));
}

/* 2-column grid layout */

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	padding: 32px 0 0;
}

/* Reset floats that WooCommerce sets by default */

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .entry-summary {
	float: none !important;
	width: 100% !important;
}
.single-product div.product::after {
	display: none;
}

/* Gallery */

.single-product .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
	border-radius: var(--bh-card-radius, 20px);
	overflow: hidden;
	position: sticky;
	top: 24px;
	background: rgba(15, 139, 203, 0.04);
}
.single-product .woocommerce-product-gallery figure {
	margin: 0;
}
.single-product .woocommerce-product-gallery__wrapper img {
	width: 100%;
	height: auto;
	display: block;
}
.single-product .flex-control-nav {
	display: flex;
	gap: 6px;
	padding: 8px;
	margin: 0;
	list-style: none;
	background: var(--bh-white);
}
.single-product .flex-control-thumbs li {
	flex: 1;
}
.single-product .flex-control-thumbs img {
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: border-color 0.18s;
	width: 100%;
}
.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover {
	border-color: var(--bh-accent, var(--bh-accent-deep));
}

/* Sale badge */

.single-product span.onsale {
	display: inline-block;
	background: #e84040;
	color: var(--bh-white);
	border-radius: 999px;
	padding: 3px 10px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 10px;
	min-height: auto;
	min-width: auto;
	position: static;
	line-height: 1.6;
}

/* Summary */

.single-product .entry-summary {
	grid-column: 2;
	grid-row: 1;
	padding: 0;
}
.single-product .product_title.entry-title {
	font-size: clamp(1.3rem, 2.5vw, 1.9rem);
	font-weight: 800;
	color: var(--bh-text, #0d2b3e);
	margin: 0 0 12px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}
.single-product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
}

/* Price */

.single-product p.price,
.single-product span.price {
	display: block;
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--bh-text, #0d2b3e);
	margin: 0 0 16px;
	line-height: 1;
}
.single-product p.price del,
.single-product span.price del {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--bh-text-soft, #4a7085);
	margin-right: 6px;
	opacity: 0.7;
}
.single-product p.price ins,
.single-product span.price ins {
	text-decoration: none;
	color: #e84040;
}

/* Short description */

.single-product .woocommerce-product-details__short-description {
	font-size: 0.93rem;
	line-height: 1.65;
	color: var(--bh-text-soft, #4a7085);
	margin: 0 0 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(11, 56, 82, 0.08);
}

/* Add-to-cart form */

.single-product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 0 0 20px;
}

/* Quantity +/- */

.bh-qty-wrap {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid rgba(11, 56, 82, 0.14);
	border-radius: 999px;
	overflow: hidden;
	background: var(--bh-white);
	height: 48px;
}
.bh-qty-minus,
.bh-qty-plus {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 100%;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--bh-text-soft, #4a7085);
	transition: color 0.18s, background 0.18s;
	line-height: 1;
	user-select: none;
	-webkit-user-select: none;
}
.bh-qty-minus:hover,
.bh-qty-plus:hover {
	color: var(--bh-accent, var(--bh-accent-deep));
	background: rgba(15, 139, 203, 0.06);
}
.bh-qty-wrap input.qty {
	width: 44px;
	text-align: center;
	border: none;
	outline: none;
	font-size: 1rem;
	font-weight: 700;
	color: var(--bh-text, #0d2b3e);
	padding: 0;
	background: transparent;
	-moz-appearance: textfield;
	appearance: textfield;
}
.bh-qty-wrap input.qty::-webkit-inner-spin-button,
.bh-qty-wrap input.qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

/* Add-to-cart button */

.single-product button.single_add_to_cart_button {
	flex: 1;
	min-width: 160px;
	height: 48px;
	padding: 0 28px;
	background: var(--bh-accent, var(--bh-accent-deep));
	color: var(--bh-white);
	border: none;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
	box-shadow: 0 4px 18px rgba(15, 139, 203, 0.28);
	line-height: 1;
}
.single-product button.single_add_to_cart_button:hover {
	background: var(--bh-accent-deep, #0b72a8);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(15, 139, 203, 0.38);
}
.single-product button.single_add_to_cart_button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Product meta (SKU, categories) */

.single-product .product_meta {
	font-size: 0.84rem;
	color: var(--bh-text-soft, #4a7085);
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.single-product .product_meta .label {
	font-weight: 600;
	color: var(--bh-text, #0d2b3e);
	margin-right: 4px;
}
.single-product .product_meta a {
	color: var(--bh-accent, var(--bh-accent-deep));
	text-decoration: none;
}
.single-product .product_meta a:hover {
	text-decoration: underline;
}

/* Tabs */

.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid rgba(11, 56, 82, 0.08);
}
.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	border-bottom: 2px solid rgba(11, 56, 82, 0.08);
}
.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
}
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none;
}
.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 12px 20px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--bh-text-soft, #4a7085);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.18s, border-color 0.18s;
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--bh-accent, var(--bh-accent-deep));
	border-bottom-color: var(--bh-accent, var(--bh-accent-deep));
}
.single-product .woocommerce-tabs .panel {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--bh-text-soft, #4a7085);
	max-width: 760px;
}
.single-product .woocommerce-tabs .panel h2 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--bh-text, #0d2b3e);
	margin-bottom: 12px;
}

/* Related / upsells */

.single-product .related.products,
.single-product .upsells.products {
	grid-column: 1 / -1;
	margin-top: 16px;
	padding-top: 40px;
	border-top: 1px solid rgba(11, 56, 82, 0.08);
}
.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--bh-text, #0d2b3e);
	margin: 0 0 24px;
	letter-spacing: -0.01em;
}

/* Single product responsive */

@media (max-width: 768px) {
	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-top: 16px;
	}
	.single-product .woocommerce-product-gallery {
		position: static;
		grid-column: 1;
		grid-row: 1;
	}
	.single-product .entry-summary {
		grid-column: 1;
		grid-row: 2;
	}
	.single-product .woocommerce-tabs {
		grid-column: 1;
	}
	.single-product .related.products,
	.single-product .upsells.products {
		grid-column: 1;
	}
}

/* ============================================================
   STICKY ADD-TO-CART BAR
   ============================================================ */

.bh-sticky-atc {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(11, 56, 82, 0.1);
	box-shadow: 0 -4px 24px rgba(10, 50, 72, 0.1);
	z-index: 9000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.bh-sticky-atc.is-visible {
	transform: translateY(0);
}
.bh-sticky-atc__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
}
.bh-sticky-atc__name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--bh-text, #0d2b3e);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
}
.bh-sticky-atc__right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.bh-sticky-atc__price {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--bh-text, #0d2b3e);
	white-space: nowrap;
}
.bh-sticky-atc__btn {
	padding: 12px 24px;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.bh-sticky-atc__name {
		display: none;
	}
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   DARK MODE OVERRIDES вЂ” Shop / WooCommerce
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

/* Trust bar */

.bh-trust-bar {
	background: rgba(255,255,255,.03);
	border-color: rgba(255,255,255,.07);
}
.bh-trust-item {
	background: transparent;
}
.bh-trust-item__copy strong {
	color: rgba(255,255,255,.90);
}
.bh-trust-item__copy span {
	color: rgba(255,255,255,.55);
}

/* Category showcase (shop archive top) */

.bh-cat-showcase {
	background: rgba(255,255,255,.03);
	border-bottom-color: rgba(255,255,255,.07);
}
.bh-cat-showcase__title {
	color: var(--bh-white);
}
.bh-cat-showcase__sub {
	color: rgba(255,255,255,.60);
}

/* Category cards */

.bh-cat-card {
	background: rgba(255,255,255,.05);
	border-color: rgba(255,255,255,.08);
}

/* Shop header */

.bh-shop-header__meta {
	border-bottom-color: rgba(255,255,255,.08);
}

/* Ordering select */

.woocommerce-ordering select {
	background-color: rgba(255,255,255,.07);
	border-color: rgba(255,255,255,.12);
	color: rgba(255,255,255,.85);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-opacity='.6'/%3E%3C/svg%3E");
}
.woocommerce-ordering select option {
	background: #0a1e30;
	color: var(--bh-white);
}

/* Category pills */

.bh-shop-cat-pill {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.10);
	color: rgba(255,255,255,.82);
}
.bh-shop-cat-pill:hover {
	background: rgba(26,160,224,.12);
	border-color: rgba(26,160,224,.35);
	color: var(--bh-accent-strong, var(--bh-accent-strong));
}

/* Product cards */

.bh-product-card {
	background: rgba(255,255,255,.05);
	border-color: rgba(255,255,255,.08);
	box-shadow: 0 4px 20px rgba(0,0,0,.30);
}
.bh-product-card:hover {
	box-shadow: 0 16px 48px rgba(0,0,0,.50);
}
.bh-product-card__media {
	background: rgba(26,160,224,.06);
}
.bh-product-card__title a {
	color: rgba(255,255,255,.92);
}
.bh-product-card__title a:hover {
	color: var(--bh-accent-strong, var(--bh-accent-strong));
}
.bh-product-card__desc {
	color: rgba(255,255,255,.55);
}

/* Pagination */

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.10);
	color: rgba(255,255,255,.80);
}
.woocommerce-pagination ul li a:hover {
	border-color: var(--bh-accent, var(--bh-accent));
	color: var(--bh-accent, var(--bh-accent));
	background: rgba(26,160,224,.08);
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   DARK MODE вЂ” ROUND 2 SHOP / WOOCOMMERCE FIXES
   Single product, cart drawer, sticky ATC, toast, qty wrap,
   trust bar items, cat showcase cards
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

/* в”Ђв”Ђ Trust bar individual items (Р±С‹Р» var(--bh-white)) в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-trust-item {
	background: rgba(255,255,255,.03) !important;
}

/* в”Ђв”Ђ Trust bar gap line в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-trust-bar {
	background: rgba(255,255,255,.06) !important;
}

/* в”Ђв”Ђ Category showcase cards (Р±С‹Р» var(--bh-white)) в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-cat-card {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.08) !important;
	box-shadow: 0 8px 28px rgba(0,0,0,.30) !important;
}
.bh-cat-card:hover {
	box-shadow: 0 18px 44px rgba(0,0,0,.45) !important;
	border-color: var(--cat-accent, rgba(26,160,224,.40)) !important;
}
.bh-cat-card__name a {
	color: rgba(255,255,255,.95) !important;
}
.bh-cat-card__list a {
	color: rgba(255,255,255,.62) !important;
}
.bh-cat-card__list li::before {
	color: var(--cat-accent, var(--bh-accent-strong)) !important;
}

/* в”Ђв”Ђ Shop header в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-shop-header__title {
	color: var(--bh-white) !important;
}
.woocommerce-result-count {
	color: rgba(255,255,255,.55) !important;
}

/* в”Ђв”Ђ Ordering select вЂ” С„РёРЅР°Р»СЊРЅР°СЏ РїРµСЂРµСЂР°Р±РѕС‚РєР° в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-ordering select {
	background-color: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.10) !important;
	color: rgba(255,255,255,.85) !important;
}

/* в”Ђв”Ђ Category pills вЂ” Р±С‹Р» var(--bh-white) в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-shop-cat-pill {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.10) !important;
	color: rgba(255,255,255,.82) !important;
}
.bh-shop-cat-pill__count {
	background: rgba(255,255,255,.08) !important;
}

/* в”Ђв”Ђ Product cards (full overrides) в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-product-card {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.08) !important;
	box-shadow: 0 8px 28px rgba(0,0,0,.30) !important;
}

/* в”Ђв”Ђ Pagination (Р±С‹Р» var(--bh-white)) в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.10) !important;
	color: rgba(255,255,255,.85) !important;
}

/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

/* SINGLE PRODUCT PAGE                                            */

/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

/* в”Ђв”Ђ Back link в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-back-link {
	color: rgba(255,255,255,.55) !important;
}
.bh-back-link:hover {
	color: var(--bh-accent-strong) !important;
}

/* в”Ђв”Ђ Product gallery wrapper в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.single-product .woocommerce-product-gallery {
	background: rgba(26,160,224,.04) !important;
}
.single-product .flex-control-nav {
	background: rgba(255,255,255,.04) !important;
}
.single-product .flex-control-thumbs img {
	border-color: rgba(255,255,255,.08) !important;
}

/* в”Ђв”Ђ Product title / price в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.single-product .product_title.entry-title {
	color: var(--bh-white) !important;
}
.single-product p.price,
.single-product span.price {
	color: var(--bh-white) !important;
}
.single-product p.price del,
.single-product span.price del {
	color: rgba(255,255,255,.42) !important;
}

/* в”Ђв”Ђ Short description в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.single-product .woocommerce-product-details__short-description {
	color: rgba(255,255,255,.65) !important;
	border-bottom-color: rgba(255,255,255,.08) !important;
}

/* в”Ђв”Ђ Quantity selector в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-qty-wrap {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.12) !important;
}
.bh-qty-minus,
.bh-qty-plus {
	color: rgba(255,255,255,.65) !important;
}
.bh-qty-minus:hover,
.bh-qty-plus:hover {
	color: var(--bh-accent-strong) !important;
	background: rgba(15,139,203,.12) !important;
}
.bh-qty-wrap input.qty {
	color: var(--bh-white) !important;
}

/* в”Ђв”Ђ Product meta в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.single-product .product_meta {
	color: rgba(255,255,255,.62) !important;
}
.single-product .product_meta .label {
	color: rgba(255,255,255,.85) !important;
}

/* в”Ђв”Ђ Tabs в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.single-product .woocommerce-tabs {
	border-top-color: rgba(255,255,255,.08) !important;
}
.single-product .woocommerce-tabs ul.tabs {
	border-bottom-color: rgba(255,255,255,.08) !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
	color: rgba(255,255,255,.55) !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--bh-accent-strong) !important;
}
.single-product .woocommerce-tabs .panel {
	color: rgba(255,255,255,.72) !important;
}
.single-product .woocommerce-tabs .panel h2 {
	color: var(--bh-white) !important;
}

/* в”Ђв”Ђ Related products section в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.single-product .related.products,
.single-product .upsells.products {
	border-top-color: rgba(255,255,255,.08) !important;
}
.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	color: var(--bh-white) !important;
}

/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

/* STICKY ADD-TO-CART BAR                                         */

/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-sticky-atc {
	background: rgba(7,24,39,.96) !important;
	border-top-color: rgba(255,255,255,.10) !important;
	box-shadow: 0 -4px 32px rgba(0,0,0,.55) !important;
}
.bh-sticky-atc__name {
	color: var(--bh-white) !important;
}
.bh-sticky-atc__price {
	color: var(--bh-white) !important;
}

/* в”Ђв”Ђ WooCommerce notices, messages, info в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: rgba(255,255,255,.05) !important;
	color: rgba(255,255,255,.85) !important;
	border-color: rgba(255,255,255,.10) !important;
}

/* в”Ђв”Ђ WooCommerce С„РѕСЂРјР° cart/checkout в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce table.shop_table {
	background: rgba(255,255,255,.04) !important;
	border-color: rgba(255,255,255,.08) !important;
	color: rgba(255,255,255,.85) !important;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba(255,255,255,.07) !important;
	color: rgba(255,255,255,.85) !important;
}
.woocommerce-cart-form .product-name a {
	color: rgba(255,255,255,.92) !important;
}

/* в”Ђв”Ђ Checkout form fields в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
input[type="text"]:not(.bh-newsletter__field input):not(.bh-footer__nl-input),
input[type="email"]:not(.bh-newsletter__field input):not(.bh-footer__nl-input),
input[type="tel"],
input[type="number"]:not(.qty),
textarea {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.12) !important;
	color: var(--bh-white) !important;
}
.woocommerce form .form-row label {
	color: rgba(255,255,255,.85) !important;
}

/* в”Ђв”Ђ Quantity wrapper РІ РѕР±С‹С‡РЅРѕР№ cart СЃС‚СЂР°РЅРёС†Рµ в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce .quantity input.qty {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.12) !important;
	color: var(--bh-white) !important;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   DARK MODE вЂ” WOOCOMMERCE DEFAULT FALLBACKS
   РќР° СЃР»СѓС‡Р°Р№ РµСЃР»Рё СЂРµРЅРґРµСЂСЏС‚СЃСЏ СЃС‚Р°РЅРґР°СЂС‚РЅС‹Рµ РєР»Р°СЃСЃС‹ Woo
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */

/* в”Ђв”Ђ Default WC product list в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: rgba(255,255,255,.05) !important;
	border: 1px solid rgba(255,255,255,.08) !important;
	border-radius: 18px;
	padding: 16px;
	box-shadow: 0 8px 28px rgba(0,0,0,.30);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
	color: rgba(255,255,255,.92) !important;
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
	color: var(--bh-accent-strong, var(--bh-accent-strong)) !important;
}
.woocommerce ul.products li.product .price del {
	color: rgba(255,255,255,.40) !important;
}
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.added_to_cart {
	margin-top: 10px;
}

/* в”Ђв”Ђ Sale flash badge в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce span.onsale {
	background: linear-gradient(135deg, #ff5252, #c91414) !important;
	color: var(--bh-white) !important;
	box-shadow: 0 4px 14px rgba(232, 64, 64, .40);
}

/* в”Ђв”Ђ Star rating в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce .star-rating::before {
	color: rgba(255,255,255,.18) !important;
}
.woocommerce .star-rating span::before {
	color: #f0a300 !important;
}

/* в”Ђв”Ђ Breadcrumbs в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-breadcrumb,
.kadence-breadcrumbs {
	color: rgba(255,255,255,.55) !important;
}
.woocommerce-breadcrumb a,
.kadence-breadcrumbs a {
	color: rgba(255,255,255,.78) !important;
}
.woocommerce-breadcrumb a:hover,
.kadence-breadcrumbs a:hover {
	color: var(--bh-accent-strong, var(--bh-accent-strong)) !important;
}

/* в”Ђв”Ђ Cart page totals & forms в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-cart .cart_totals,
.woocommerce-cart .cart-collaterals .cart_totals {
	background: rgba(255,255,255,.04) !important;
	border: 1px solid rgba(255,255,255,.08) !important;
	border-radius: 18px;
	padding: 24px;
}
.woocommerce-cart .cart_totals h2,
.woocommerce-cart .cart-collaterals h2 {
	color: var(--bh-white) !important;
}
.woocommerce-cart .coupon,
.woocommerce-cart .actions {
	background: transparent !important;
}

/* в”Ђв”Ђ Account / login pages в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	background: rgba(255,255,255,.04) !important;
	border: 1px solid rgba(255,255,255,.08) !important;
	border-radius: 18px;
	padding: 24px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
	color: rgba(255,255,255,.78) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	color: var(--bh-accent-strong, var(--bh-accent-strong)) !important;
}

/* в”Ђв”Ђ Shop archive title block вЂ” WC default в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-products-header,
.woocommerce-products-header__title {
	color: var(--bh-white) !important;
}

/* в”Ђв”Ђ Slider progress dots РЅР° РіР»Р°РІРЅРѕР№ shop slider в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.bh-slider__dot.is-active {
	background: var(--bh-accent-strong, var(--bh-accent-strong)) !important;
}
.bh-slider::after {
	background: rgba(92, 197, 255, 0.40) !important;
}

/* в”Ђв”Ђ Universal: Р»СЋР±С‹Рµ РѕСЃС‚Р°С‚РѕС‡РЅС‹Рµ var(--bh-white) С„РѕРЅС‹ РІ .woocommerce в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce input[type="submit"],
.woocommerce-page input[type="submit"] {
	border-radius: 12px !important;
}

/* в”Ђв”Ђ Variations dropdown (РµСЃР»Рё variant product) в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce table.variations select,
.woocommerce form.variations_form select {
	background: rgba(255,255,255,.05) !important;
	border-color: rgba(255,255,255,.12) !important;
	color: var(--bh-white) !important;
}

/* в”Ђв”Ђ Notification messages в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	color: var(--bh-accent-strong, var(--bh-accent-strong)) !important;
}

/* ============================================================
   Single product refinement: dark BeerHabits product page
   ============================================================ */

body.single-product,
body.single-product.bh-shop-page {
	background: var(--bh-page-bg) !important;
	color: rgba(255, 255, 255, 0.86) !important;
}
body.single-product #wrapper,
body.single-product #inner-wrap,
body.single-product .site,
body.single-product .site-main,
body.single-product .content-bg,
body.single-product .entry-content-wrap,
body.single-product .woocommerce {
	background: transparent !important;
}
body.single-product .content-area,
body.single-product .site-container,
body.single-product .woocommerce-notices-wrapper,
body.single-product div.product {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
body.single-product .site-main {
	padding: 24px 18px 72px !important;
}
body.single-product .bh-back-link {
	color: rgba(7, 54, 79, 0.68) !important;
	margin: 0 auto 14px;
	max-width: 1180px;
	width: 100%;
}
body.single-product div.product {
	grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
	gap: 30px;
	align-items: stretch;
	padding: 30px !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	background:
	linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(92, 197, 255, 0.055)),
	rgba(10, 32, 49, 0.78) !important;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
	overflow: visible;
}
body.single-product .woocommerce-product-gallery {
	position: relative;
	top: auto;
	min-height: 100%;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(92, 197, 255, 0.04)) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28);
}
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
	height: 100%;
}
body.single-product .woocommerce-product-gallery__wrapper img {
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	border-radius: 28px;
}
body.single-product .flex-control-nav {
	background: rgba(255,255,255,0.05) !important;
	border-top: 1px solid rgba(255,255,255,0.08);
}
body.single-product .entry-summary {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 420px;
	padding: 12px 8px 12px 4px !important;
}
body.single-product .product_title.entry-title {
	max-width: 11ch;
	margin-bottom: 14px;
	color: var(--bh-white) !important;
	font-size: clamp(2rem, 3.8vw, 4.35rem);
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: none;
}
body.single-product .woocommerce-product-rating,
body.single-product .woocommerce-review-link,
body.single-product .star-rating {
	color: rgba(255,255,255,0.68) !important;
}
body.single-product p.price,
body.single-product span.price {
	margin-bottom: 18px;
	color: var(--bh-white) !important;
	font-size: 2rem;
}
body.single-product p.price del,
body.single-product span.price del {
	color: rgba(255,255,255,0.42) !important;
}
body.single-product .woocommerce-product-details__short-description {
	max-width: 620px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom-color: rgba(255,255,255,0.08) !important;
	color: rgba(255,255,255,0.70) !important;
	font-size: 1rem;
	line-height: 1.65;
}
body.single-product form.cart {
	align-items: stretch;
	gap: 12px;
	margin-bottom: 18px;
}
body.single-product .bh-qty-wrap,
body.single-product .woocommerce .quantity input.qty {
	background: rgba(255,255,255,0.06) !important;
	border-color: rgba(255,255,255,0.12) !important;
	color: var(--bh-white) !important;
}
body.single-product .bh-qty-minus,
body.single-product .bh-qty-plus,
body.single-product .bh-qty-wrap input.qty {
	color: var(--bh-white) !important;
}
body.single-product button.single_add_to_cart_button,
body.single-product .single_add_to_cart_button.button {
	min-height: 52px;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #16a8e8, #0879b8) !important;
	color: var(--bh-white) !important;
	box-shadow: 0 16px 34px rgba(8, 121, 184, 0.28) !important;
}
body.single-product button.single_add_to_cart_button:hover,
body.single-product .single_add_to_cart_button.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(8, 121, 184, 0.34) !important;
}
body.single-product .bh-product-benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 4px 0 18px;
}
body.single-product .bh-product-benefits__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	background: rgba(255,255,255,0.05);
	color: var(--bh-white);
}
body.single-product .bh-product-benefits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: rgba(92, 197, 255, 0.13);
	color: var(--bh-accent-strong);
	flex: 0 0 auto;
}
body.single-product .bh-product-benefits__copy {
	display: grid;
	gap: 2px;
}
body.single-product .bh-product-benefits__copy strong,
body.single-product .product_meta .label {
	color: var(--bh-white) !important;
}
body.single-product .bh-product-benefits__copy small,
body.single-product .product_meta {
	color: rgba(255,255,255,0.62) !important;
}
body.single-product .bh-product-features-strip {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 2px 0 0;
	padding: 16px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 24px;
	background: rgba(255,255,255,0.04);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
body.single-product .bh-product-features-strip__item {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 10px 12px;
	border-radius: 16px;
	background: rgba(255,255,255,0.05);
	color: var(--bh-white);
}
body.single-product .bh-product-features-strip__icon {
	font-size: 1rem;
	line-height: 1;
}
body.single-product .bh-product-features-strip__text {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.25;
}
body.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 22px;
	padding: 24px;
	border: 1px solid rgba(255,255,255,0.08) !important;
	border-radius: 28px;
	background: rgba(255,255,255,0.045);
}
body.single-product .woocommerce-tabs ul.tabs {
	display: inline-flex;
	gap: 8px;
	margin: 0 0 22px !important;
	padding: 6px !important;
	border: 1px solid rgba(255,255,255,0.08) !important;
	border-radius: 999px;
	background: rgba(255,255,255,0.04);
}
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
	border: 0 !important;
	background: transparent !important;
}
body.single-product .woocommerce-tabs ul.tabs li a {
	min-width: 128px;
	padding: 11px 18px !important;
	border: 0 !important;
	border-radius: 999px;
	color: rgba(255,255,255,0.66) !important;
	text-align: center;
}
body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover {
	background: rgba(92, 197, 255, 0.14) !important;
	color: var(--bh-white) !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
body.single-product .woocommerce-tabs .panel {
	max-width: none;
	margin: 0 !important;
	color: rgba(255,255,255,0.74) !important;
}
body.single-product .woocommerce-tabs .panel h2,
body.single-product #reviews #comments h2,
body.single-product #review_form #reply-title {
	margin: 0 0 14px;
	color: var(--bh-white) !important;
	font-size: 1.25rem;
	line-height: 1.25;
}
body.single-product #reviews {
	display: grid;
	grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1fr);
	gap: 22px;
	align-items: start;
}
body.single-product #reviews #comments,
body.single-product #review_form_wrapper {
	min-width: 0;
	padding: 22px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 22px;
	background: rgba(255,255,255,0.045);
}
body.single-product #reviews .commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}
body.single-product #review_form #reply-title {
	display: block;
	max-width: 440px;
}
body.single-product #review_form .comment-notes,
body.single-product #review_form .comment-form-rating,
body.single-product #review_form label,
body.single-product #reviews p {
	color: rgba(255,255,255,0.70) !important;
}
body.single-product #review_form .comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
body.single-product #review_form .comment-notes,
body.single-product #review_form .comment-form-rating,
body.single-product #review_form .comment-form-comment,
body.single-product #review_form .form-submit,
body.single-product #review_form .comment-form-cookies-consent {
	grid-column: 1 / -1;
}
body.single-product #review_form input[type="text"],
body.single-product #review_form input[type="email"],
body.single-product #review_form textarea {
	width: 100%;
	border: 1px solid rgba(255,255,255,0.12) !important;
	border-radius: 16px !important;
	background: rgba(255,255,255,0.06) !important;
	color: var(--bh-white) !important;
	box-shadow: none !important;
}
body.single-product #review_form textarea {
	min-height: 130px;
	resize: vertical;
}
body.single-product #review_form .stars a {
	color: #f0a300 !important;
	font-size: 1.25rem;
}
body.single-product #review_form input[type="submit"] {
	min-height: 46px;
	padding: 0 24px;
	border: 0 !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #16a8e8, #0879b8) !important;
	color: var(--bh-white) !important;
	font-weight: 800;
	box-shadow: 0 14px 28px rgba(8, 121, 184, 0.24);
}
body.single-product .related.products,
body.single-product .upsells.products {
	grid-column: 1 / -1;
	margin-top: 22px;
	padding-top: 24px;
	border-top-color: rgba(255,255,255,0.08) !important;
}
body.single-product .related.products > h2,
body.single-product .upsells.products > h2 {
	color: var(--bh-white) !important;
}

@media (max-width: 960px) {
	body.single-product div.product {
		grid-template-columns: 1fr;
		padding: 22px !important;
		border-radius: 28px;
	}
	body.single-product .entry-summary {
		min-height: 0;
		padding: 0 !important;
	}
	body.single-product .product_title.entry-title {
		max-width: 100%;
		font-size: clamp(2.1rem, 9vw, 3.6rem);
	}
	body.single-product .bh-product-features-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	body.single-product #reviews {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body.single-product .site-main {
		padding: 14px 12px 56px !important;
	}
	body.single-product div.product {
		padding: 16px !important;
		border-radius: 22px;
	}
	body.single-product .woocommerce-product-gallery,
	body.single-product .woocommerce-product-gallery__wrapper img {
		border-radius: 20px;
	}
	body.single-product .bh-product-benefits,
	body.single-product .bh-product-features-strip,
	body.single-product #review_form .comment-form {
		grid-template-columns: 1fr;
	}
	body.single-product .woocommerce-tabs {
		padding: 16px;
		border-radius: 22px;
	}
	body.single-product .woocommerce-tabs ul.tabs {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		border-radius: 20px;
	}
	body.single-product .woocommerce-tabs ul.tabs li a {
		width: 100%;
		min-width: 0;
	}
}

/* Modern reviews module */

body.single-product .woocommerce-Tabs-panel--reviews {
	width: 100%;
}
body.single-product #reviews {
	grid-template-columns: minmax(240px, 0.7fr) minmax(520px, 1.3fr) !important;
	gap: 18px !important;
	width: 100%;
	align-items: stretch !important;
}
body.single-product #reviews #comments {
	position: relative;
	overflow: hidden;
	padding: 24px !important;
	border-radius: 24px !important;
	background:
	linear-gradient(145deg, rgba(92, 197, 255, 0.08), rgba(255,255,255,0.035)),
	rgba(255,255,255,0.035) !important;
}
body.single-product #reviews #comments::before {
	content: "в…";
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 10px;
	border-radius: 16px;
	background: rgba(244, 181, 53, 0.14);
	color: #f4b535;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1;
}
body.single-product #reviews #comments::after {
	display: none;
}
body.single-product #reviews #comments h2 {
	margin-top: 18px !important;
	font-size: 1.05rem !important;
}
body.single-product #reviews .woocommerce-noreviews {
	margin: 10px 0 0;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,0.055);
	color: rgba(255,255,255,0.72) !important;
}
body.single-product #review_form_wrapper {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}
body.single-product #review_form,
body.single-product #review_form #respond,
body.single-product #review_form .comment-respond {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}
body.single-product #review_form #respond,
body.single-product #review_form .comment-respond {
	position: relative;
	padding: 28px !important;
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 26px;
	background:
	linear-gradient(145deg, rgba(255,255,255,0.075), rgba(92, 197, 255, 0.055)),
	rgba(255,255,255,0.04);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 50px rgba(0,0,0,0.16);
}
body.single-product #review_form #reply-title {
	max-width: 100% !important;
	margin-bottom: 8px !important;
	font-size: clamp(1.55rem, 2.6vw, 2.25rem) !important;
	line-height: 1.08 !important;
}
body.single-product #review_form .comment-notes {
	max-width: 620px;
	margin: 0 0 18px !important;
	color: rgba(255,255,255,0.62) !important;
	font-size: 0.94rem;
	font-style: normal;
	line-height: 1.55;
}
body.single-product #review_form .comment-form {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 16px !important;
	width: 100%;
}
body.single-product #review_form .comment-form-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 18px;
	background: rgba(255,255,255,0.045);
}
body.single-product #review_form .comment-form-rating label,
body.single-product #review_form label {
	margin: 0 0 8px;
	color: rgba(255,255,255,0.82) !important;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
body.single-product #review_form .comment-form-rating label {
	margin: 0;
	white-space: nowrap;
}
body.single-product #review_form .stars {
	display: flex !important;
	flex-direction: row;
	justify-content: flex-end;
	gap: 8px;
	margin: 0 !important;
}
body.single-product #review_form .stars span {
	display: flex;
	flex-direction: row;
	gap: 8px;
}
body.single-product #review_form .stars a {
	position: relative;
	width: 38px;
	height: 38px;
	margin: 0 !important;
	border: 1px solid rgba(244, 181, 53, 0.22);
	border-radius: 12px;
	background: rgba(244, 181, 53, 0.08);
	color: transparent !important;
	font-size: 0 !important;
	text-indent: 0 !important;
	overflow: hidden;
	transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
body.single-product #review_form .stars a::before {
	content: "в…" !important;
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(244, 181, 53, 0.56);
	font-family: inherit !important;
	font-size: 1.18rem;
	line-height: 1;
}
body.single-product #review_form .stars a:hover,
body.single-product #review_form .stars a.active,
body.single-product #review_form .stars.selected a.active,
body.single-product #review_form .stars.selected a.active ~ a {
	border-color: rgba(244, 181, 53, 0.72);
	background: rgba(244, 181, 53, 0.18);
	transform: translateY(-1px);
}
body.single-product #review_form .stars a:hover::before,
body.single-product #review_form .stars a.active::before,
body.single-product #review_form .stars.selected a.active::before,
body.single-product #review_form .stars.selected a.active ~ a::before {
	color: #f4b535;
}
body.single-product #review_form .comment-form-comment textarea {
	min-height: 156px !important;
}
body.single-product #review_form input[type="text"],
body.single-product #review_form input[type="email"],
body.single-product #review_form textarea {
	padding: 14px 15px !important;
	border-radius: 18px !important;
	background: rgba(9, 31, 48, 0.72) !important;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
body.single-product #review_form input[type="text"]:focus,
body.single-product #review_form input[type="email"]:focus,
body.single-product #review_form textarea:focus {
	border-color: rgba(92, 197, 255, 0.56) !important;
	background: rgba(9, 31, 48, 0.92) !important;
	box-shadow: 0 0 0 4px rgba(92, 197, 255, 0.10) !important;
	outline: none !important;
}
body.single-product #review_form .form-submit {
	display: flex;
	justify-content: flex-end;
	margin: 4px 0 0 !important;
}
body.single-product #review_form input[type="submit"] {
	min-width: 190px;
	min-height: 50px;
	border-radius: 16px !important;
}

/* ============================================================
   CART / CHECKOUT BLOCKS - BEERHABITS DARK SKIN
   Keeps WooCommerce Blocks logic intact,
only restyles the UI.
   ============================================================ */

body.woocommerce-cart,
.editor-styles-wrapper {
	--bh-cart-bg: var(--bh-page-bg-flat, var(--bh-bg));
	--bh-cart-panel: var(--bh-panel-bg-strong, rgba(17, 43, 62, 0.86));
	--bh-cart-panel-soft: rgba(255, 255, 255, 0.055);
	--bh-cart-border: rgba(92, 197, 255, 0.16);
	--bh-cart-border-strong: rgba(92, 197, 255, 0.28);
	--bh-cart-text: rgba(245, 252, 255, 0.92);
	--bh-cart-muted: rgba(216, 234, 243, 0.66);
	--bh-cart-accent: var(--bh-accent, var(--bh-accent));
	--bh-cart-gold: #f4b535;
}
body.woocommerce-cart {
	background: var(--bh-page-bg) !important;
	color: var(--bh-cart-text);
}
body.woocommerce-cart .entry-content,
.editor-styles-wrapper .wp-block-woocommerce-cart {
	width: min(1240px, calc(100vw - 44px));
	margin: 0 auto;
	padding: clamp(28px, 4vw, 58px) 0;
	color: var(--bh-cart-text);
}
body.woocommerce-cart .entry-title,
.editor-styles-wrapper h1.wp-block-post-title {
	width: min(1240px, calc(100vw - 44px));
	margin: 0 auto;
	padding-top: clamp(26px, 4vw, 56px);
	color: var(--bh-white) !important;
	font-family: "Oswald", sans-serif;
	font-size: clamp(2.2rem, 5vw, 4.6rem) !important;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}
body.woocommerce-cart .wc-block-cart,
.editor-styles-wrapper .wc-block-cart {
	position: relative;
	padding: clamp(18px, 3vw, 34px) !important;
	border: 1px solid var(--bh-cart-border);
	border-radius: 34px;
	background:
	linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(92, 197, 255, 0.045)),
	rgba(5, 24, 38, 0.78);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);
	overflow: hidden;
}
body.woocommerce-cart .wc-block-cart::before,
.editor-styles-wrapper .wc-block-cart::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
	radial-gradient(circle at 16% 0%, rgba(92, 197, 255, 0.12), transparent 26rem),
	radial-gradient(circle at 96% 10%, rgba(244, 181, 53, 0.08), transparent 24rem);
}
.wc-block-cart__main,
.wc-block-cart__sidebar,
.editor-styles-wrapper .wc-block-cart__main,
.editor-styles-wrapper .wc-block-cart__sidebar {
	position: relative;
	z-index: 1;
}
.wc-block-cart-items,
.wc-block-cart .wc-block-components-sidebar,
.wc-block-components-order-summary,
.wc-block-components-totals-wrapper,
.editor-styles-wrapper .wc-block-cart-items,
.editor-styles-wrapper .wc-block-components-sidebar {
	border-color: var(--bh-cart-border) !important;
	color: var(--bh-cart-text) !important;
}
.wc-block-cart-items__header,
.wc-block-cart-items__row,
.wc-block-components-totals-item,
.wc-block-components-totals-coupon,
.wc-block-components-order-summary-item,
.editor-styles-wrapper .wc-block-cart-items__header,
.editor-styles-wrapper .wc-block-cart-items__row {
	border-color: rgba(255, 255, 255, 0.10) !important;
}
.wc-block-cart-items__header th,
.wc-block-components-totals-wrapper,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-order-summary-item__description,
.wc-block-components-product-name,
.wc-block-components-product-metadata,
.wc-block-components-formatted-money-amount,
.wc-block-components-panel__button,
.editor-styles-wrapper .wc-block-cart,
.editor-styles-wrapper .wc-block-cart * {
	color: var(--bh-cart-text) !important;
}
.wc-block-components-product-metadata,
.wc-block-components-product-metadata *,
.wc-block-components-totals-shipping__via,
.wc-block-components-totals-item__description,
.wc-block-components-panel__button {
	color: var(--bh-cart-muted) !important;
}
.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img,
.wc-block-grid__product-image img,
.editor-styles-wrapper .wc-block-cart-item__image img {
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
}
.wc-block-components-quantity-selector,
.editor-styles-wrapper .wc-block-components-quantity-selector {
	min-height: 42px;
	border: 1px solid var(--bh-cart-border-strong) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.065) !important;
	overflow: hidden;
}
.wc-block-components-quantity-selector input,
.wc-block-components-quantity-selector button {
	color: var(--bh-white) !important;
	background: transparent !important;
}
.wc-block-cart-item__remove-link,
.wc-block-components-product-low-stock-badge,
.wc-block-components-button.is-link {
	color: #80ddff !important;
}

/* Cart sidebar card вЂ” checkout sidebar handled by section 15.5 */

.wc-block-cart .wc-block-components-sidebar,
.editor-styles-wrapper .wc-block-cart .wc-block-components-sidebar {
	padding: clamp(20px, 2vw, 30px) !important;
	border: 1px solid var(--bh-cart-border) !important;
	border-radius: 28px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(92, 197, 255, 0.04)) !important;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.wc-block-cart__submit-button,
.wc-block-components-button:not(.is-link),
.editor-styles-wrapper .wc-block-cart__submit-button {
	min-height: 54px !important;
	border: 0 !important;
	border-radius: 17px !important;
	background: linear-gradient(135deg, #22b7f0, #0589c8) !important;
	color: var(--bh-white) !important;
	font-weight: 900 !important;
	box-shadow: 0 16px 34px rgba(34, 174, 232, 0.30);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-button:not(.is-link):hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
	box-shadow: 0 20px 44px rgba(34, 174, 232, 0.38);
}
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-country-input input,
.wc-block-components-state-input input,
.wc-block-components-address-form input {
	border: 1px solid var(--bh-cart-border) !important;
	border-radius: 16px !important;
	background: rgba(255, 255, 255, 0.07) !important;
	color: var(--bh-white) !important;
}
.wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label,
.wc-block-components-address-card,
.wc-block-components-payment-method-label,
.wc-block-components-validation-error,
.wc-block-components-notice-banner {
	color: var(--bh-cart-text) !important;
}
.wp-block-woocommerce-cart-cross-sells-block,
.wc-block-grid__products,
.editor-styles-wrapper .wp-block-woocommerce-cart-cross-sells-block {
	position: relative;
	z-index: 1;
}
.wp-block-woocommerce-cart-cross-sells-block h2,
.wp-block-woocommerce-cart-cross-sells-block h3,
.wc-block-cart__cross-sells-title {
	margin-top: 26px !important;
	color: var(--bh-white) !important;
	font-family: "Oswald", sans-serif;
	font-size: clamp(1.25rem, 2.2vw, 1.85rem) !important;
	text-transform: uppercase;
}
.wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 18px !important;
}
.wc-block-grid__product {
	padding: 14px !important;
	border: 1px solid rgba(255, 255, 255, 0.10) !important;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}
.wc-block-grid__product-title,
.wc-block-grid__product-price {
	color: var(--bh-white) !important;
}
.editor-styles-wrapper .wp-block-woocommerce-cart .block-list-appender {
	display: none !important;
}

@media (max-width: 768px) {
	body.woocommerce-cart .entry-content,
	.editor-styles-wrapper .wp-block-woocommerce-cart {
		width: min(100%, calc(100vw - 28px));
		padding-block: 22px;
	}
	body.woocommerce-cart .wc-block-cart,
	.editor-styles-wrapper .wc-block-cart {
		padding: 16px !important;
		border-radius: 24px;
	}
	.wc-block-grid__products {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 960px) {
	body.single-product #reviews {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 640px) {
	body.single-product #review_form #respond,
	body.single-product #review_form .comment-respond {
		padding: 20px !important;
	}
	body.single-product #review_form .comment-form-rating {
		display: grid;
	}
	body.single-product #review_form .stars,
	body.single-product #review_form .stars span {
		flex-direction: row;
	}
	body.single-product #review_form .stars a {
		width: 34px;
		height: 34px;
	}
}

/* Payment methods list wrapper */

.wc-block-components-payment-methods,
.wc-block-components-payment-method,
.wc-block-components-payment-methods__list,
.wc-block-components-payment-method__details,
.wc-block-components-payment-method__name,
.wc-block-components-payment-method__description {
	background: transparent !important;
	color: var(--bh-cart-text) !important;
}

/* Radio / checkbox controls inside payment */

.wc-block-components-radio-control,
.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control-accordion-content {
	background: transparent !important;
	border-color: var(--bh-cart-border) !important;
	color: var(--bh-cart-text) !important;
}

/* Payment option accordion: selected/active tile */

.wc-block-components-radio-control-accordion-option.is-active,
.wc-block-components-radio-control-accordion-option:has(input:checked),
.wc-block-components-radio-control__option:has(input:checked) {
	background: rgba(34, 174, 232, 0.08) !important;
	border-color: var(--bh-cart-accent) !important;
}

/* Payment method content revealed below radio */

.wc-block-components-radio-control-accordion-content {
	background: rgba(255, 255, 255, 0.04) !important;
	border-top: 1px solid var(--bh-cart-border) !important;
	color: var(--bh-cart-muted) !important;
}

/* Input: radio/checkbox indicator */

.wc-block-components-radio-control input[type="radio"],
.wc-block-components-checkbox input[type="checkbox"] {
	accent-color: var(--bh-cart-accent);
}

/* Order summary sidebar heading & totals */

.wc-block-components-order-summary__button-text,
.wc-block-components-sidebar-layout__sidebar .wc-block-components-panel__button,
.wc-block-components-sidebar-layout__sidebar h2 {
	color: var(--bh-white) !important;
}
.wc-block-components-sidebar-layout__sidebar {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(92, 197, 255, 0.04)) !important;
	border: 1px solid var(--bh-cart-border) !important;
	border-radius: 28px;
	color: var(--bh-cart-text) !important;
}

/* Coupon input inside checkout */

.wc-block-components-totals-coupon__form input,
.wc-block-components-totals-coupon .wc-block-components-text-input input {
	background: rgba(255, 255, 255, 0.07) !important;
	border-color: var(--bh-cart-border) !important;
	color: var(--bh-white) !important;
	border-radius: 12px !important;
}

/* Select dropdowns inside checkout blocks */

.wc-block-components-combobox .wc-block-components-combobox-control,
.wc-block-components-select select,
select.wc-block-components-select-control__input {
	background: rgba(255, 255, 255, 0.07) !important;
	border-color: var(--bh-cart-border) !important;
	color: var(--bh-white) !important;
	border-radius: 12px !important;
}

/* Input placeholder text */

.wc-block-components-text-input input::placeholder,
.wc-block-components-address-form input::placeholder {
	color: rgba(255, 255, 255, 0.38) !important;
}

/* Checkout final polish: keep the WooCommerce Blocks logic {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible;
}
/* ============================================================
   FIX 2 вЂ” CATALOG: ensure all product cards have dark background
   Prevents white/empty cards in last row of grid
   ============================================================ */

/* Force dark background on ALL product card states */

.bh-product-card,
.bh-product-card:empty,
ul.products li.product.bh-product-card {
	background: rgba(255, 255, 255, 0.05) !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Hide completely empty li elements in product grid (no children) */

.bh-product-grid li:empty,
ul.products li:empty {
	display: none !important;
}

/* Placeholder image area on cards without thumbnail */

.bh-product-card__img--placeholder {
	background: rgba(17, 43, 62, 0.60) !important;
}

/* WooCommerce native placeholder image вЂ” force dark background */

.woocommerce-placeholder,
img.woocommerce-placeholder,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail.wp-post-image {
	background: rgba(255, 255, 255, 0.04) !important;
	opacity: 0.55;
}

/* Media area of cards without thumbnail should not show white */

.bh-product-card .bh-product-card__media:not(:has(img)) {
	background: rgba(17, 43, 62, 0.70) !important;
}

/* ============================================================
   FIX F8 вЂ” Shop header title above category pills (z-index)
   ============================================================ */

.bh-shop-header {
	position: relative;
	z-index: 10;
}
.bh-shop-header__title {
	position: relative;
	z-index: 10;
}

/* If a category dropdown panel exists, keep it below the title */

.bh-category-dropdown__panel,
.bh-shop-cats-dropdown,
.bh-shop-filter-panel {
	z-index: 9;
}

/* ============================================================
   FIX F10 вЂ” Slider dots: larger size and active accent color
   ============================================================ */

.bh-slider__dot {
	width: 10px;
	height: 10px;
	background: rgba(255,255,255,0.35);
	border-radius: 50%;
}
.bh-slider__dot.is-active {
	background: #22aee8 !important;
	width: 28px;
	border-radius: 5px;
}

/* ============================================================
   FIX F11 вЂ” Trust-bar background matches page dark theme
   ============================================================ */

.bh-trust-bar {
	background: var(--bh-bg-secondary, #0f2035) !important;
	border-color: rgba(255,255,255,0.06) !important;
}
.bh-trust-item {
	background: transparent !important;
}
.wc-block-components-select__container select,
.wc-block-components-select-control select {
	appearance: none !important;
	-webkit-appearance: none !important;
	background: rgba(255,255,255,0.07) !important;
	color: var(--bh-white) !important;
	border: 1px solid rgba(255,255,255,0.15) !important;
}
.wc-block-components-select__container select option {
	background: #0a1e30;
	color: var(--bh-white);
}

/* ============================================================
   FIX F20 вЂ” "Uuenda ostukorvi" update cart button: ghost style
   ============================================================ */

.woocommerce-cart .button[name="update_cart"],
button.cart-update,
.woocommerce-cart-form button[name="update_cart"] {
	background: transparent !important;
	border: 1px solid rgba(255,255,255,0.25) !important;
	color: rgba(255,255,255,0.70) !important;
	box-shadow: none !important;
}
.woocommerce-cart .button[name="update_cart"]:hover,
.woocommerce-cart-form button[name="update_cart"]:hover {
	border-color: #22aee8 !important;
	color: #22aee8 !important;
	background: rgba(34,174,232,0.06) !important;
}

/* ============================================================
   BH 2026 reference slider: cinematic product stage
   ============================================================ */

.bh-slider {
	isolation: isolate;
	height: clamp(640px, calc(100vh - 118px), 760px) !important;
	min-height: 640px;
	background: var(--bh-page-bg-flat, var(--bh-bg)) !important;
	border-top: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	overflow: hidden !important;
}
.bh-slider::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 1 !important;
	background:
	radial-gradient(ellipse at 72% 40%, rgba(92, 197, 255, 0.18), transparent 34%),
	linear-gradient(90deg, rgba(7, 24, 39, 0.98) 0%, rgba(7, 24, 39, 0.86) 33%, rgba(7, 24, 39, 0.34) 58%, rgba(7, 24, 39, 0.52) 100%),
	linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
	url("../images/hero/shop-header-hero.png") center right / cover no-repeat;
	background-blend-mode: normal, normal, multiply, normal;
}
.bh-slider::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	width: auto !important;
	height: 240px !important;
	background: linear-gradient(180deg, transparent, rgba(7, 24, 39, 0.72) 62%, var(--bh-page-bg-flat, var(--bh-bg)) 100%) !important;
	transition: none !important;
	animation: none !important;
	pointer-events: none;
}
.bh-slider__track {
	position: relative;
	z-index: 1;
}
.bh-slider__slide {
	grid-template-columns: minmax(380px, 0.82fr) minmax(520px, 1.18fr) !important;
	align-items: center !important;
	gap: clamp(28px, 4vw, 76px) !important;
	padding: clamp(56px, 5.8vw, 86px) max(96px, calc(50vw - 660px)) clamp(136px, 10vw, 178px) !important;
	background: transparent !important;
}
.bh-slider__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
	radial-gradient(ellipse at 56% 48%, color-mix(in srgb, var(--slide-accent, #1fb6ee) 16%, transparent), transparent 38%),
	linear-gradient(90deg, rgba(2, 9, 16, 0.34), transparent 58%);
	pointer-events: none;
}
.bh-slider__content,
.bh-slider__image {
	position: relative;
	z-index: 3;
}
.bh-slider__content {
	max-width: 610px;
	padding: 0 !important;
}
.bh-slider__kicker {
	margin-bottom: 26px !important;
	padding: 11px 20px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	background: rgba(3, 13, 24, 0.46) !important;
	color: #31c5ff !important;
	font-size: 0.78rem !important;
	font-weight: 860 !important;
	letter-spacing: 0.18em !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
	backdrop-filter: blur(14px) !important;
	-webkit-backdrop-filter: blur(14px) !important;
}
.bh-slider__title {
	max-width: 13ch;
	margin: 0 0 20px !important;
	color: var(--bh-white) !important;
	font-size: clamp(2.75rem, 4.5vw, 5.25rem) !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-shadow: 0 14px 42px rgba(0, 0, 0, 0.64) !important;
	text-wrap: balance;
}
.bh-slider__text {
	max-width: 560px !important;
	margin-bottom: 24px !important;
	color: rgba(255, 255, 255, 0.80) !important;
	font-size: clamp(1.02rem, 1.15vw, 1.18rem) !important;
	line-height: 1.66 !important;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55) !important;
}
.bh-slider__perks {
	display: grid !important;
	gap: 13px !important;
	margin: 0 0 28px !important;
}
.bh-slider__perks li {
	gap: 13px !important;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 0.98rem !important;
}
.bh-slider__perks li::before {
	width: 20px !important;
	height: 20px !important;
	border-radius: 999px !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 1.8px solid #1fb6ee !important;
	box-shadow: inset 0 0 0 4px rgba(31, 182, 238, 0.12), 0 0 18px rgba(31, 182, 238, 0.22);
}
.bh-slider__btn {
	min-height: 58px !important;
	padding: 0 34px !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #25c0f4 0%, #0798d6 62%, #087aaa 100%) !important;
	color: var(--bh-white) !important;
	font-size: 1.02rem !important;
	box-shadow: 0 20px 44px rgba(7, 152, 214, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}
.bh-slider__image {
	justify-content: flex-end !important;
	min-height: 420px;
	perspective: 1100px;
}
.bh-slider__image::before {
	inset: auto 4% 8% auto !important;
	width: min(58vw, 720px) !important;
	height: min(46vw, 560px) !important;
	background:
	radial-gradient(ellipse at 58% 46%, rgba(31, 182, 238, 0.22), transparent 48%),
	radial-gradient(ellipse at 74% 62%, rgba(240, 146, 50, 0.18), transparent 38%) !important;
	filter: blur(30px) !important;
}
.bh-slider__image img {
	width: min(50vw, 660px) !important;
	max-width: 100% !important;
	max-height: min(56vw, 620px) !important;
	border-radius: 24px !important;
	clip-path: none !important;
	object-fit: cover !important;
	aspect-ratio: 1.22 / 1;
	filter:
	saturate(1.08)
	contrast(1.08)
	drop-shadow(0 40px 70px rgba(0, 0, 0, 0.58)) !important;
	transform: rotate(-2deg) translateY(10px) translateZ(0) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.bh-slider__slide.is-active .bh-slider__image img {
	animation: bhFloatImg2026 5.6s ease-in-out infinite alternate !important;
}

@keyframes bhFloatImg2026 {
	from {
		transform: rotate(-2.5deg) translateY(12px) scale(1);
	}
	to {
		transform: rotate(-0.8deg) translateY(-8px) scale(1.025);
	}
}
.bh-slider__deco {
	display: none !important;
}
.bh-slider__arrow {
	z-index: 14 !important;
	width: 54px !important;
	height: 54px !important;
	border-radius: 10px !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	background: rgba(255, 255, 255, 0.075) !important;
	color: var(--bh-white) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
.bh-slider__arrow--prev {
	left: clamp(22px, 2.2vw, 48px) !important;
}
.bh-slider__arrow--next {
	right: clamp(22px, 2.2vw, 48px) !important;
}
.bh-slider__dots {
	position: absolute !important;
	left: 50% !important;
	bottom: 118px !important;
	z-index: 14 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 12px !important;
	transform: translateX(-50%) !important;
}
.bh-slider__dot,
.bh-slider__seg {
	width: 34px !important;
	height: 10px !important;
	min-height: 10px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.28) !important;
}
.bh-slider__dot.is-active,
.bh-slider__seg.is-active {
	width: 42px !important;
	background: #21b9ef !important;
	box-shadow: 0 0 20px rgba(33, 185, 239, 0.34) !important;
}
.bh-slider__controls {
	left: 50% !important;
	bottom: 116px !important;
	z-index: 14 !important;
	gap: 0 !important;
	transform: translateX(-50%) !important;
}
.bh-slider__segs {
	gap: 12px !important;
}
.bh-slider__counter {
	display: none !important;
}
.bh-trust-bar {
	position: relative !important;
	z-index: 8;
	width: min(1360px, calc(100vw - 160px)) !important;
	margin-top: -38px !important;
	margin-bottom: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 20px !important;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.050), rgba(255, 255, 255, 0.024)),
	var(--bh-shop-surface) !important;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
	backdrop-filter: blur(22px) saturate(140%);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	overflow: hidden;
}
.bh-trust-item {
	min-height: 106px;
	padding: 24px clamp(20px, 2vw, 34px) !important;
	background: transparent !important;
	border-right: 1px solid rgba(255, 255, 255, 0.11);
}
.bh-trust-item:last-child {
	border-right: 0;
}
.bh-trust-item__icon svg {
	width: 36px;
	height: 36px;
}
.bh-trust-item__icon svg [stroke] {
	stroke: var(--bh-shop-accent) !important;
}
.bh-trust-item__icon svg [fill]:not([fill="none"]) {
	fill: rgba(53, 202, 255, 0.13) !important;
}
.bh-trust-item__copy strong {
	color: var(--bh-white) !important;
	font-size: clamp(0.9rem, 0.92vw, 1.04rem) !important;
	line-height: 1.22 !important;
}
.bh-trust-item__copy span {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.64) !important;
	font-size: 0.9rem !important;
	line-height: 1.3 !important;
}

@media (max-width: 1200px) {
	.bh-slider {
		height: auto !important;
		min-height: 720px !important;
	}
	.bh-slider__slide {
		grid-template-columns: minmax(0, 1fr) !important;
		padding: 52px 42px 210px !important;
	}
	.bh-slider__content {
		max-width: 650px;
	}
	.bh-slider__image {
		position: absolute !important;
		right: 22px;
		bottom: 130px;
		width: min(44vw, 420px);
		min-height: 260px;
		opacity: 0.72;
	}
	.bh-slider__image img {
		width: 100% !important;
		max-height: 330px !important;
	}
	.bh-trust-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		width: min(860px, calc(100vw - 42px)) !important;
	}
	.bh-trust-item:nth-child(2) {
		border-right: 0;
	}
	.bh-trust-item:nth-child(n+3) {
		border-top: 1px solid rgba(255, 255, 255, 0.10);
	}
}

@media (max-width: 640px) {
	.bh-slider {
		min-height: 720px !important;
	}
	.bh-slider__slide {
		padding: 54px 22px 238px !important;
	}
	.bh-slider__title {
		font-size: clamp(2.62rem, 12.4vw, 3.6rem) !important;
	}
	.bh-slider__text {
		font-size: 1rem !important;
	}
	.bh-slider__perks {
		gap: 11px !important;
	}
	.bh-slider__perks li {
		font-size: 0.9rem !important;
	}
	.bh-slider__btn {
		width: min(100%, 340px);
		justify-content: center;
	}
	.bh-slider__image {
		display: none !important;
	}
	.bh-slider__arrow {
		display: none !important;
	}
	.bh-slider__dots,
	.bh-slider__controls {
		bottom: 218px !important;
	}
	.bh-trust-bar {
		grid-template-columns: 1fr !important;
		width: calc(100vw - 28px) !important;
		margin-top: -206px !important;
		border-radius: 16px !important;
	}
	.bh-trust-item {
		min-height: 0;
		padding: 14px 16px !important;
		border-right: 0 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.10);
	}
	.bh-trust-item:first-child {
		border-top: 0;
	}
}

/* BH 2026 shop refresh: compact slider + curated ecommerce block */

.bh-shop .bh-slider {
	height: clamp(485px, calc(100vh - 245px), 560px) !important;
	min-height: 485px !important;
	background: var(--bh-shop-bg-flat) !important;
}
.bh-shop .bh-slider::before {
	background:
	radial-gradient(ellipse at 68% 42%, rgba(53, 202, 255, 0.10), transparent 36%),
	linear-gradient(90deg, rgba(2, 9, 16, 0.99) 0%, rgba(2, 9, 16, 0.86) 38%, rgba(2, 9, 16, 0.46) 66%, rgba(2, 9, 16, 0.72) 100%),
	url("../images/hero/shop-header-hero.png") center right / cover no-repeat !important;
	background-blend-mode: normal, normal, normal !important;
}
.bh-shop .bh-slider::after {
	z-index: 1 !important;
}
.bh-shop .bh-slider__track {
	z-index: 3 !important;
}
.bh-shop .bh-slider__slide {
	grid-template-columns: minmax(380px, 0.88fr) minmax(420px, 1fr) !important;
	gap: clamp(22px, 3.5vw, 58px) !important;
	padding: clamp(26px, 3vw, 42px) max(80px, calc(50vw - 620px)) clamp(74px, 5vw, 92px) !important;
}
.bh-shop .bh-slider__content {
	align-items: center !important;
	max-width: 590px !important;
	text-align: center !important;
}
.bh-shop .bh-slider__kicker {
	margin-bottom: 14px !important;
	padding: 9px 16px !important;
	font-size: 0.72rem !important;
}
.bh-shop .bh-slider__title {
	max-width: 14.5ch !important;
	margin-bottom: 12px !important;
	font-size: clamp(2rem, 2.72vw, 3.25rem) !important;
	line-height: 1.03 !important;
	margin-inline: auto !important;
}
.bh-shop .bh-slider__text {
	max-width: 540px !important;
	margin-bottom: 14px !important;
	color: rgba(255, 255, 255, 0.86) !important;
	font-size: clamp(0.94rem, 0.96vw, 1.02rem) !important;
	line-height: 1.55 !important;
	margin-inline: auto !important;
}
.bh-shop .bh-slider__perks {
	width: max-content !important;
	max-width: 100% !important;
	gap: 7px !important;
	margin-inline: auto !important;
	margin-bottom: 16px !important;
}
.bh-shop .bh-slider__perks li {
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 0.92rem !important;
}
.bh-shop a.bh-slider__btn,
.bh-shop a.bh-slider__btn:visited {
	position: relative !important;
	z-index: 18 !important;
	min-height: 52px !important;
	padding: 0 26px !important;
	background: linear-gradient(135deg, #35caff 0%, #0fa8e3 58%, #087eaf 100%) !important;
	font-size: 0.94rem !important;
	font-weight: 900 !important;
	color: var(--bh-white) !important;
	-webkit-text-fill-color: var(--bh-white) !important;
	opacity: 1 !important;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
	box-shadow: 0 18px 42px rgba(15, 168, 227, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
	filter: none !important;
}
.bh-shop a.bh-slider__btn:hover,
.bh-shop a.bh-slider__btn:focus {
	color: var(--bh-white) !important;
	-webkit-text-fill-color: var(--bh-white) !important;
	filter: brightness(1.08) !important;
}
.bh-shop .bh-slider__image {
	min-height: 300px !important;
	align-items: center !important;
	justify-content: center !important;
}
.bh-shop .bh-slider__image img {
	width: min(34vw, 430px) !important;
	max-width: 88% !important;
	max-height: min(30vw, 340px) !important;
	aspect-ratio: 1 / 1 !important;
	object-fit: contain !important;
	object-position: center !important;
	transform: rotate(-1deg) translateY(2px) scale(0.94) translateZ(0) !important;
}
.bh-slider__arrow,
.bh-shop .bh-slider__arrow {
	display: none !important;
}
.bh-shop .bh-slider__arrow--prev {
	left: calc(50% - 104px) !important;
}
.bh-shop .bh-slider__arrow--next {
	right: calc(50% - 104px) !important;
}
.bh-shop .bh-slider__dots,
.bh-shop .bh-slider__controls {
	bottom: 44px !important;
}
.bh-shop .bh-trust-bar {
	margin-top: 8px !important;
}
.bh-cat-showcase {
	display: block !important;
	position: relative;
	padding: clamp(56px, 6vw, 88px) 0 clamp(44px, 5vw, 72px) !important;
	background: transparent !important;
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
	overflow: hidden;
}
.bh-cat-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(53, 202, 255, 0.030), transparent 42%);
	opacity: 1;
}
.bh-cat-showcase > .bh-container {
	position: relative;
	z-index: 1;
}
.bh-cat-showcase__head {
	margin-bottom: clamp(28px, 3vw, 42px) !important;
}
.bh-cat-showcase__title {
	color: var(--bh-white) !important;
	font-size: clamp(2rem, 3.4vw, 3.45rem) !important;
	line-height: 1.02 !important;
	letter-spacing: 0 !important;
	text-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}
.bh-cat-showcase__sub {
	max-width: 680px !important;
	color: rgba(255, 255, 255, 0.68) !important;
	font-size: clamp(0.98rem, 1.05vw, 1.08rem) !important;
	line-height: 1.6 !important;
}
.bh-cat-showcase__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(18px, 2vw, 28px) !important;
	align-items: stretch !important;
}
.bh-cat-showcase__grid:has(.bh-cat-card:only-child) {
	grid-template-columns: minmax(0, 760px) !important;
	justify-content: center !important;
}
.bh-cat-showcase__grid:not(.bh-cat-showcase__grid--catalog):has(.bh-cat-card:only-child) {
	display: none !important;
}
.bh-cat-showcase__grid--catalog {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.bh-cat-card {
	--cat-accent: var(--bh-shop-accent) !important;
	min-height: 285px !important;
	padding: clamp(24px, 2.4vw, 34px) 0 clamp(24px, 2.4vw, 34px) clamp(24px, 2.4vw, 34px) !important;
	border-top: 0 !important;
	border-radius: 22px !important;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.026)),
	var(--bh-shop-surface) !important;
	border: 1px solid var(--bh-shop-border) !important;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
	backdrop-filter: blur(18px) saturate(135%);
	-webkit-backdrop-filter: blur(18px) saturate(135%);
}
.bh-cat-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 18px;
	left: 18px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--cat-accent, #1fb6ee), transparent 72%);
	box-shadow: 0 0 24px color-mix(in srgb, var(--cat-accent, #1fb6ee) 42%, transparent);
}
.bh-cat-card:hover {
	border-color: color-mix(in srgb, var(--cat-accent, #1fb6ee) 46%, rgba(255, 255, 255, 0.16)) !important;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), 0 0 34px color-mix(in srgb, var(--cat-accent, #1fb6ee) 18%, transparent) !important;
}
.bh-cat-card__body {
	justify-content: center;
	gap: 12px !important;
}
.bh-cat-card__kicker {
	color: var(--cat-accent, #1fb6ee) !important;
	font-size: 0.76rem !important;
	letter-spacing: 0.16em !important;
}
.bh-cat-card__name {
	max-width: 13ch;
	color: var(--bh-white) !important;
	font-size: clamp(1.25rem, 1.45vw, 1.65rem) !important;
	line-height: 1.12 !important;
}
.bh-cat-card__name a {
	color: var(--bh-white) !important;
}
.bh-cat-card__list {
	gap: 8px !important;
}
.bh-cat-card__list a {
	color: rgba(255, 255, 255, 0.66) !important;
	font-size: 0.9rem !important;
}
.bh-cat-card__list li::before {
	color: var(--cat-accent, #1fb6ee) !important;
}
.bh-cat-card__copy {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
	line-height: 1.55;
}
.bh-cat-card__link {
	color: var(--cat-accent, #1fb6ee) !important;
	font-weight: 850 !important;
}
.bh-cat-card__image {
	width: clamp(140px, 14vw, 220px) !important;
	height: 230px !important;
	align-items: center !important;
	padding-right: clamp(8px, 1.4vw, 22px) !important;
}
.bh-cat-card__image img {
	width: clamp(130px, 13vw, 210px) !important;
	max-height: 220px !important;
	filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.38)) saturate(1.08) !important;
}
.bh-cat-card--catalog {
	grid-template-columns: minmax(0, 1fr);
	padding-right: clamp(24px, 2.4vw, 34px) !important;
	text-decoration: none;
}
.bh-cat-card--catalog .bh-cat-card__body {
	position: relative;
	z-index: 1;
	max-width: 74%;
	min-height: 210px;
}
.bh-cat-card--catalog .bh-cat-card__image {
	position: absolute;
	right: 4px;
	bottom: 0;
	z-index: 0;
	width: min(52%, 210px) !important;
	height: 178px !important;
	opacity: 0.22;
}
.bh-cat-card--catalog:hover .bh-cat-card__image {
	opacity: 0.34;
}
.bh-cat-card--catalog .bh-cat-card__image img {
	width: 100% !important;
	max-height: 178px !important;
	object-fit: contain;
}
.bh-shop-curated {
	position: relative;
	padding: 46px 0 18px;
	background: transparent;
}
.bh-shop-curated__inner {
	display: grid;
	grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
	align-items: stretch;
	gap: clamp(22px, 3vw, 44px);
}
.bh-shop-curated__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 3vw, 38px);
	border: 1px solid var(--bh-shop-border);
	border-radius: 22px;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
	var(--bh-shop-surface);
}
.bh-shop-curated__label {
	width: max-content;
	margin-bottom: 14px;
	color: #35caff;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.bh-shop-curated__copy h2 {
	max-width: 12ch;
	margin: 0 0 14px;
	color: var(--bh-white);
	font-size: clamp(2rem, 3vw, 3.2rem);
	line-height: 1.04;
}
.bh-shop-curated__copy p {
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
	line-height: 1.62;
}
.bh-shop-curated__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.bh-shop-curated__tile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 170px;
	padding: 22px;
	border: 1px solid var(--bh-shop-border);
	border-radius: 20px;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024)),
	var(--bh-shop-surface);
	color: var(--bh-white);
	text-decoration: none;
	overflow: hidden;
	transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.bh-shop-curated__tile:hover,
.bh-shop-curated__tile:focus {
	transform: translateY(-3px);
	border-color: rgba(53, 202, 255, 0.34);
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.030)),
	var(--bh-shop-surface-strong);
}
.bh-shop-curated__tile--wide {
	grid-row: span 2;
	min-height: 354px;
	background:
	linear-gradient(180deg, rgba(2, 9, 16, 0.18), rgba(2, 9, 16, 0.50)),
	url("../images/content/beerhabits-snack-board-2.jpg") center / cover no-repeat;
}
.bh-shop-curated__tile span {
	font-size: 1.02rem;
	font-weight: 850;
}
.bh-shop-curated__tile strong {
	margin-top: 14px;
	color: #35caff;
	font-size: clamp(3.4rem, 5vw, 5.4rem);
	line-height: .9;
}
.bh-shop-curated__tile small {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	line-height: 1.4;
}

@media (max-width: 960px) {
	.bh-shop-curated__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bh-shop .bh-slider {
		height: clamp(500px, 132vw, 560px) !important;
		min-height: 0 !important;
	}
	.bh-shop .bh-slider__slide {
		grid-template-columns: minmax(0, 1fr) minmax(120px, 0.74fr) !important;
		padding: 24px 18px 76px !important;
		gap: 10px !important;
		align-items: center !important;
		justify-content: stretch !important;
		overflow: hidden !important;
	}
	.bh-shop .bh-slider__content {
		width: 100% !important;
		max-width: none !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.bh-shop .bh-slider__title {
		font-size: clamp(1.18rem, 5vw, 1.78rem) !important;
		max-width: 12ch !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.bh-shop .bh-slider__text {
		width: 100% !important;
		max-width: 30ch !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
		font-size: 0.78rem !important;
		line-height: 1.45 !important;
		overflow-wrap: normal !important;
	}
	.bh-shop .bh-slider__perks {
		width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
		gap: 4px !important;
	}
	.bh-shop .bh-slider__btn {
		width: max-content !important;
		max-width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
		padding: 10px 15px !important;
	}
	.bh-shop .bh-slider__image {
		position: relative !important;
		display: flex !important;
		top: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		min-height: 0 !important;
		opacity: 1;
	}
	.bh-shop .bh-slider__image img {
		width: 100% !important;
		max-height: 210px !important;
		border-radius: 18px !important;
	}
	.bh-shop .bh-slider__arrow {
		display: none !important;
		bottom: 28px !important;
	}
	.bh-shop .bh-slider__dots,
	.bh-shop .bh-slider__controls {
		bottom: 42px !important;
	}
	.bh-shop .bh-trust-bar {
		margin-top: 14px !important;
	}
	.bh-shop-curated {
		padding-top: 34px;
	}
	.bh-shop-curated__grid {
		grid-template-columns: 1fr;
	}
	.bh-shop-curated__tile,
	.bh-shop-curated__tile--wide {
		min-height: 150px;
		grid-row: auto;
	}
}

/* BH 2026 shop blocks: unified glass rhythm for catalog area */

.bh-shop-header,
.bh-shop-body {
	background: transparent !important;
}
.bh-shop-header {
	padding: clamp(44px, 5vw, 72px) 0 0 !important;
}
.bh-shop-header__inner {
	gap: 22px !important;
}
.bh-shop-header__title {
	color: var(--bh-white) !important;
	font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
	line-height: 1.04 !important;
	letter-spacing: 0 !important;
	text-align: center;
}
.bh-shop-header__meta {
	justify-content: center !important;
	padding: 18px !important;
	border: 1px solid var(--bh-shop-border) !important;
	border-radius: 20px !important;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.050), rgba(255, 255, 255, 0.024)),
	var(--bh-shop-surface) !important;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.bh-shop-cats {
	justify-content: center !important;
}
.bh-shop-cat-pill {
	border-color: rgba(255, 255, 255, 0.12) !important;
	background: rgba(255, 255, 255, 0.052) !important;
	color: rgba(255, 255, 255, 0.78) !important;
}
.bh-shop-cat-pill:hover,
.bh-shop-cat-pill:focus {
	border-color: rgba(53, 202, 255, 0.36) !important;
	background: rgba(53, 202, 255, 0.10) !important;
	color: var(--bh-white) !important;
}
.bh-shop-cat-pill.is-active {
	border-color: rgba(53, 202, 255, 0.42) !important;
	background: rgba(53, 202, 255, 0.18) !important;
	color: var(--bh-white) !important;
	box-shadow: 0 14px 34px rgba(31, 182, 238, 0.14);
}
.bh-shop-header__meta .woocommerce-result-count,
.bh-shop-header__meta .woocommerce-ordering {
	color: rgba(255, 255, 255, 0.60) !important;
}
.bh-shop-header__meta .woocommerce-ordering select {
	border-color: rgba(255, 255, 255, 0.13) !important;
	background-color: rgba(255, 255, 255, 0.055) !important;
	color: var(--bh-white) !important;
}
.bh-shop-body {
	padding: clamp(28px, 4vw, 44px) 0 clamp(72px, 7vw, 110px) !important;
}
.bh-product-grid {
	gap: clamp(18px, 2vw, 28px) !important;
}
.bh-product-card {
	border-radius: 22px !important;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.024)),
	var(--bh-shop-surface) !important;
	border: 1px solid var(--bh-shop-border) !important;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}
.bh-product-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 16px;
	left: 16px;
	z-index: 3;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #1fb6ee, transparent 72%);
	box-shadow: 0 0 24px rgba(31, 182, 238, 0.22);
	pointer-events: none;
}
.bh-product-card:hover {
	border-color: rgba(53, 202, 255, 0.24) !important;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), 0 0 32px rgba(31, 182, 238, 0.12) !important;
}
.bh-product-card__media {
	margin: 14px 14px 0;
	border-radius: 18px;
	background:
	linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.024)),
	rgba(2, 9, 16, 0.34) !important;
}
.bh-product-card__img {
	object-fit: contain !important;
	padding: 12px;
	filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.34));
}
.bh-product-card__body {
	padding: 16px 18px 18px !important;
}
.bh-product-card__cat {
	color: #35caff !important;
}
.bh-product-card__title a {
	color: var(--bh-white) !important;
}
.bh-product-card__desc {
	color: rgba(255, 255, 255, 0.58) !important;
}
.bh-product-card__price {
	color: var(--bh-white) !important;
}
.bh-product-card__actions .bh-btn,
.bh-product-card__actions .button {
	min-height: 42px;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #35caff 0%, #0fa8e3 62%, #087eaf 100%) !important;
	color: var(--bh-white) !important;
	box-shadow: 0 14px 30px rgba(15, 168, 227, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

@media (max-width: 768px) {
	.bh-cat-showcase__grid {
		grid-template-columns: 1fr !important;
	}
	.bh-cat-showcase__grid--catalog {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.bh-cat-card {
		min-height: 240px !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
	}
	.bh-cat-card__image {
		width: 118px !important;
		height: 160px !important;
	}
	.bh-cat-card__image img {
		width: 118px !important;
		max-height: 160px !important;
	}
	.bh-cat-card--catalog .bh-cat-card__body {
		position: relative;
		z-index: 1;
		max-width: 76%;
	}
	.bh-cat-card--catalog .bh-cat-card__image {
		right: 6px;
		bottom: 4px;
		width: min(46%, 170px) !important;
		height: 150px !important;
		opacity: 0.24;
	}
	.bh-shop-header__meta {
		align-items: center !important;
		flex-direction: column !important;
	}
}

@media (max-width: 480px) {
	.bh-cat-card {
		grid-template-columns: 1fr !important;
		padding-right: 24px !important;
	}
	.bh-cat-showcase__grid--catalog {
		grid-template-columns: 1fr !important;
	}
	.bh-cat-card:not(.bh-cat-card--catalog) .bh-cat-card__image {
		display: none !important;
	}
	.bh-cat-card--catalog {
		display: flex !important;
		flex-direction: column !important;
		min-height: auto !important;
		padding-right: 24px !important;
	}
	.bh-cat-card--catalog .bh-cat-card__body {
		max-width: 100%;
		min-height: 0;
	}
	.bh-cat-card--catalog .bh-cat-card__name {
		max-width: 100%;
	}
	.bh-cat-card--catalog .bh-cat-card__copy {
		max-width: 100%;
	}
	.bh-cat-card--catalog .bh-cat-card__image {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100% !important;
		height: 128px !important;
		margin-top: 16px;
		padding-right: 0 !important;
		opacity: 0.58;
		justify-content: flex-end !important;
	}
	.bh-cat-card--catalog .bh-cat-card__image img {
		width: min(62%, 190px) !important;
		max-height: 128px !important;
	}
	.bh-product-card__media {
		margin: 10px 10px 0;
	}
}

/* Shop Top 5 and premium product-card polish */
.bh-shop-top-products {
	position: relative;
	padding: clamp(46px, 5vw, 74px) 0 clamp(22px, 3vw, 38px);
	overflow: hidden;
}

.bh-shop-top-products::before {
	content: "";
	position: absolute;
	inset: 8% 0 auto;
	height: 68%;
	background:
		radial-gradient(circle at 18% 20%, rgba(31, 182, 238, 0.14), transparent 34%),
		radial-gradient(circle at 82% 40%, rgba(247, 184, 75, 0.11), transparent 30%);
	pointer-events: none;
}

.bh-shop-top-products__inner {
	position: relative;
	z-index: 1;
}

.bh-shop-top-products__head {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 720px;
	margin: 0 auto clamp(26px, 3vw, 38px);
	text-align: center;
}

.bh-shop-top-products__title {
	margin: 16px 0 10px;
	color: var(--bh-white);
	font-family: var(--bh-font-heading, inherit);
	font-size: clamp(2.25rem, 4vw, 4.1rem);
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: none;
}

.bh-shop-top-products__head p {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
	line-height: 1.7;
}

.bh-shop-top-products__grid {
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: clamp(14px, 1.5vw, 20px) !important;
}

.bh-shop .bh-product-card {
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(23, 49, 67, 0.98), rgba(5, 19, 31, 0.98)),
		var(--bh-shop-surface) !important;
}

.bh-shop .bh-product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
		radial-gradient(circle at 80% 8%, rgba(247, 184, 75, 0.12), transparent 26%);
	opacity: 0;
	transition: opacity 0.24s ease;
	pointer-events: none;
}

.bh-shop .bh-product-card:hover::after,
.bh-shop .bh-product-card:focus-within::after {
	opacity: 1;
}

.bh-shop .bh-product-card__media {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: rgba(3, 13, 22, 0.16) !important;
	border: 1px solid rgba(126, 224, 255, 0.09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bh-shop .bh-product-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 62%, rgba(1, 8, 14, 0.24));
	pointer-events: none;
}

.bh-shop .bh-product-card__img {
	width: 100%;
	height: 100%;
	padding: 0 !important;
	object-fit: cover !important;
	border-radius: 16px;
	filter: saturate(1.08) contrast(1.04) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.bh-shop .bh-product-card__body,
.bh-shop .bh-product-card__footer {
	position: relative;
	z-index: 1;
}

.bh-product-card__wishlist {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(4, 16, 27, 0.68);
	color: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bh-product-card__wishlist:hover,
.bh-product-card__wishlist:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(247, 184, 75, 0.54);
	color: var(--bh-amber);
}

.bh-product-card__wishlist.is-active {
	border-color: rgba(247, 184, 75, 0.66);
	background: rgba(247, 184, 75, 0.18);
	color: var(--bh-amber);
}

.bh-product-card__wishlist svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linejoin: round;
}

.bh-product-card__wishlist.is-active svg {
	fill: currentColor;
}

.bh-product-card__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 6px 0 8px;
	color: var(--bh-amber);
	font-size: 0.78rem;
	line-height: 1;
}

.bh-product-card__rating strong {
	color: var(--bh-white);
	font-size: 0.82rem;
	font-weight: 800;
}

.bh-product-card__rating small {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.74rem;
}

.bh-shop .bh-product-card__title {
	margin-top: 0;
}

.bh-shop .bh-product-card__desc {
	min-height: 2.7em;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media (max-width: 1280px) {
	.bh-shop-top-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 768px) {
	.bh-shop-top-products {
		padding-top: 38px;
	}

	.bh-shop-top-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.bh-product-card__wishlist {
		top: 18px;
		right: 18px;
		width: 38px;
		height: 38px;
	}
}

@media (max-width: 520px) {
	.bh-shop-top-products__grid {
		display: flex !important;
		grid-template-columns: none !important;
		grid-auto-flow: column;
		gap: 14px !important;
		width: calc(100vw - 16px);
		margin: 0 -6px;
		padding: 4px 14px 18px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		scroll-padding-inline: 14px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.bh-shop-top-products__grid::-webkit-scrollbar {
		display: none;
	}

	.bh-shop-top-products__grid > .bh-product-card {
		flex: 0 0 min(82vw, 340px);
		max-width: min(82vw, 340px);
		scroll-snap-align: center;
	}

	.bh-shop-top-products__title {
		font-size: clamp(2rem, 12vw, 3rem);
	}
}
