:where(.jb-root, [class^="jb-"], [class*=" jb-"]) {
	--jb-ink: #1b1b1f;
	--jb-muted: #6b6b76;
	--jb-border: #e6e6ea;
	--jb-surface: #f7f7f9;
	--jb-red: #b3232b;
	--jb-radius: 12px;
	--jb-gap: 20px;
	box-sizing: border-box;
	color: var(--jb-ink);
}

.jb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(clamp(160px, calc((100% - (var(--jb-columns) - 1) * var(--jb-gap)) / var(--jb-columns)), 100%), 1fr));
	gap: var(--jb-gap);
}

.jb-section {
	margin: 0 auto 36px;
}

.jb-section__title,
.jb-reviews > h2 {
	margin: 0 0 18px;
}

.jb-card__image {
	position: relative;
}

.jb-card {
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.jb-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgb(27 27 31 / 10%);
}

.jb-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.jb-card__link:focus-visible,
.jb-vote__button:focus-visible,
.jb-review-form button:focus-visible {
	outline: 3px solid var(--jb-red);
	outline-offset: 3px;
}

.jb-card__image,
.jb-hero__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	margin: 0;
	overflow: hidden;
	background: #fff;
	border-radius: var(--jb-radius) var(--jb-radius) 0 0;
}

.jb-card__image img,
.jb-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Product cards use responsive high-density sources. Keep the image on whole
 * device pixels and avoid visual softening from inherited filters/transforms. */
.jb-card__product-image {
	display: block;
	max-width: 100%;
	filter: none !important;
	image-rendering: auto;
	transform: none !important;
}

.jb-card__body {
	padding: 14px;
}

.jb-card__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}

.jb-card__title {
	min-width: 0;
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.jb-card__producer-mark {
	display: grid;
	flex: 0 1 76px;
	place-items: center;
	width: 76px;
	max-width: 32%;
	height: 34px;
	margin-left: auto;
}

.jb-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 12px 0;
}

.jb-card__image > .jb-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	margin: 0;
}

.jb-card--has-editor-rating .jb-card__image > .jb-badges {
	max-width: calc(100% - 112px);
}

.jb-badge {
	background: var(--jb-badge-color, #718096);
	box-shadow: 0 2px 7px rgb(27 27 31 / 18%);
	color: #fff;
}

.jb-card__meta,
.jb-review__meta,
.jb-hero__eyebrow {
	margin: 5px 0 0;
	color: var(--jb-muted);
	font-size: .875rem;
}

.jb-card__producer-logo {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 34px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	object-fit: contain !important;
}

.jb-hero__producer-logo {
	width: 32px;
	height: 32px;
	margin-right: 6px;
	border-radius: 4px;
	object-fit: contain;
	vertical-align: middle;
}

.jb-card__editor-rating {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	padding: 0;
	border: 1px solid rgb(255 255 255 / 88%);
	border-radius: 999px;
	background: rgb(255 255 255 / 96%);
	box-shadow: 0 10px 24px rgb(27 27 31 / 14%);
	color: var(--jb-ink);
	line-height: 1;
	text-align: center;
	pointer-events: none;
}

.jb-card__editor-rating::before {
	content: '';
	position: absolute;
	inset: 5px;
	border: 1px solid rgb(179 35 43 / 12%);
	border-radius: inherit;
}

.jb-card__editor-rating-label {
	position: absolute;
	top: -9px;
	left: 50%;
	z-index: 1;
	padding: 4px 8px;
	border-radius: 999px;
	background: var(--jb-red);
	box-shadow: 0 6px 14px rgb(179 35 43 / 24%);
	color: #fff;
	font-size: .5rem;
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.jb-card__editor-rating-value {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding-top: 6px;
}

.jb-card__editor-rating strong {
	font-size: 1.55rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -.03em;
}

.jb-card__editor-rating-scale {
	color: var(--jb-muted);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: -.01em;
}

.jb-card__footer,
.jb-rating,
.jb-vote__button {
	display: flex;
	align-items: center;
	gap: 8px;
}

.jb-card__footer {
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 16px;
}

.jb-rating,
.jb-review__rating {
	color: #b07b00;
	letter-spacing: .08em;
}

.jb-stars {
	display: inline-flex;
	gap: 2px;
	vertical-align: middle;
}

.jb-card__footer .jb-stars {
	min-width: 0;
	flex: 1 1 auto;
}

.jb-stores {
	overflow-x: auto;
}

.jb-stores table {
	border-collapse: collapse;
	width: 100%;
}

.jb-stores th,
.jb-stores td {
	border-bottom: 1px solid var(--jb-border);
	padding: 12px 10px;
	text-align: left;
	vertical-align: middle;
}

.jb-stores img {
	height: 32px;
	margin-right: 8px;
	object-fit: contain;
	vertical-align: middle;
	width: 48px;
}

.jb-star {
	width: 1em;
	height: 1em;
}

.jb-card__votes {
	color: var(--jb-muted);
	font-size: .8rem;
	flex-shrink: 0;
	padding-left: 10px;
	border-left: 1px solid var(--jb-border);
	white-space: nowrap;
}

.jb-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border: 1px solid var(--jb-badge-color, var(--jb-border));
	border-radius: 999px;
	color: #fff;
	font-size: .75rem;
	font-weight: 600;
}

.jb-badge:not(.jb-badge--image) img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.jb-badge--image {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	line-height: 0;
}

.jb-badge--image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 140px;
	max-height: 72px;
	object-fit: contain;
}

.jb-card__image > .jb-badges .jb-badge--image img {
	max-width: 108px;
	max-height: 54px;
}

.jb-hero .jb-badge--image img,
.jb-product .jb-badge--image img {
	max-width: 168px;
	max-height: 84px;
}

.jb-badge:not(.jb-badge--image)[style*="#d69e2e"] {
	color: #1b1b1f;
}

.jb-badge:not(.jb-badge--image)[style*="#718096"] {
	background: #4a5568;
	color: #fff;
}

.jb-top10__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jb-top10__item {
	display: grid;
	grid-template-columns: 2.5rem 56px minmax(0, 1fr) minmax(10rem, auto) minmax(4.75rem, auto);
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--jb-border);
	transition: background-color 160ms ease;
}

.jb-top10__item:hover {
	background: var(--jb-surface);
}

.jb-top10__rank {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--jb-surface);
	font-weight: 700;
}

.jb-top10__image {
	width: 56px;
	height: 56px;
	object-fit: contain;
	padding: 3px;
	box-sizing: border-box;
	border-radius: 10px;
	background: var(--jb-surface);
	grid-column: 2;
	grid-row: 1 / span 2;
}

.jb-top10__image--placeholder {
	display: block;
}

.jb-top10__name {
	grid-column: 3;
	grid-row: 1;
	min-width: 0;
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}

.jb-top10__bar {
	grid-column: 3;
	grid-row: 2;
	width: 100%;
	height: 6px;
	overflow: hidden;
	border-radius: 3px;
	background: var(--jb-surface);
	font-size: 0;
}

.jb-top10__bar::after {
	display: block;
	width: var(--jb-bar-width);
	height: 100%;
	border-radius: inherit;
	background: var(--jb-red);
	content: "";
}

.jb-top10__details {
	display: grid;
	gap: 2px;
	color: var(--jb-muted);
	font-size: .76rem;
	line-height: 1.35;
	white-space: nowrap;
}

.jb-top10__rating {
	display: grid;
	grid-template-columns: auto auto;
	align-items: baseline;
	justify-content: end;
	column-gap: 2px;
	justify-self: end;
	min-width: 4.5rem;
	color: var(--jb-muted);
	font-variant-numeric: tabular-nums;
	line-height: 1;
	white-space: nowrap;
}

.jb-top10__rating small {
	grid-column: 1 / -1;
	margin-bottom: 4px;
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.jb-top10__rating strong {
	color: var(--jb-red);
	font-size: 1.25rem;
	font-weight: 800;
}

.jb-top10__rating > span {
	font-size: .72rem;
	font-weight: 700;
}

.jb-top10__podium {
	display: grid;
	place-items: center;
	width: 5.5rem;
	height: 5.5rem;
	min-width: 0;
	transform: translateX(-12px) !important;
}

.jb-top10__podium img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	object-fit: contain !important;
}

.jb-top10__podium--1 {
	width: 6rem;
	height: 6rem;
}

.jb-top10__podium--2,
.jb-top10__podium--3 {
	width: 5.5rem;
	height: 5.5rem;
}

.jb-hero {
	display: grid;
	grid-template-columns: minmax(180px, 300px) 1fr;
	gap: 28px;
	align-items: center;
	margin-bottom: 32px;
}

.jb-hero__image {
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
}

.jb-hero h1 {
	margin-top: 0;
	margin-bottom: 10px;
}

.jb-vote__button,
.jb-review-form button {
	padding: 10px 14px;
	border: 1px solid var(--jb-red);
	border-radius: 8px;
	background: transparent;
	color: var(--jb-red);
	cursor: pointer;
	font: inherit;
	font-weight: 600;
}

.jb-vote__button[aria-pressed="true"] {
	background: var(--jb-red);
	color: #fff;
}

.jb-vote__button {
	box-shadow: 0 2px 5px rgb(27 27 31 / 10%);
	white-space: nowrap;
}

.jb-vote__count {
	display: inline-block;
	min-width: 3ch;
	margin-left: 7px;
	padding: 2px 7px;
	border-radius: 999px;
	background: var(--jb-surface);
	color: #b3242b;
	text-align: center;
}

.jb-vote__message {
	min-height: 1.4em;
	color: var(--jb-muted);
}

.jb-facts {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 8px 18px;
}

.jb-facts dt {
	color: var(--jb-muted);
}

.jb-facts dd {
	margin: 0;
	font-weight: 600;
}

.jb-product-image {
	max-width: 520px;
	margin: 24px auto;
	padding: 20px;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
	text-align: center;
}

.jb-product-image img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.jb-price {
	margin: 18px 0;
	color: var(--jb-red);
	font-size: 1.25rem;
	font-weight: 700;
}

.jb-stores {
	margin: 24px 0;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
}

.jb-stores table {
	min-width: 560px;
}

.jb-stores th {
	color: var(--jb-muted);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.jb-stores td:first-child {
	font-weight: 600;
}

.jb-stores td:first-child img {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}

.jb-stores a {
	color: var(--jb-red);
	font-weight: 600;
	text-decoration: none;
}

.jb-stores a:hover {
	text-decoration: underline;
}

.jb-review {
	padding: 18px;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
}

.jb-reviews__list {
	display: grid;
	gap: 14px;
}

.jb-review__content {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
}

.jb-review__rating {
	display: inline-flex;
	align-items: center;
}

.jb-review h3 {
	margin: 10px 0 8px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
}

.jb-review__meta {
	margin-top: 14px;
	color: var(--jb-muted);
	font-size: .75rem;
}

.jb-review-form {
	padding: 22px;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
	max-width: 560px;
	margin-top: 32px;
}

.jb-review-form label,
.jb-review-form input,
.jb-review-form textarea {
	display: block;
	width: 100%;
}

.jb-review-form input,
.jb-review-form textarea {
	box-sizing: border-box;
	padding: 9px;
	border: 1px solid var(--jb-border);
	border-radius: 8px;
	background: transparent;
	color: inherit;
	font: inherit;
}

.jb-stars {
	display: flex;
	justify-content: flex-end;
	gap: 4px;
	border: 0;
	padding: 0;
}

.jb-review-form .jb-stars {
	justify-content: flex-start;
	width: max-content;
	margin: 8px 0 18px;
}

.jb-stars input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.jb-stars label {
	width: 28px;
	flex: 0 0 28px;
	padding: 3px;
	color: var(--jb-muted);
	cursor: pointer;
}

.jb-stars label .jb-star {
	width: 26px;
	height: 26px;
}

.jb-stars label:hover .jb-star,
.jb-stars input:focus-visible + label .jb-star,
.jb-stars input:checked + label .jb-star {
	color: #b07b00;
}

.jb-review-form .jb-stars input:focus-visible + label {
	outline: 3px solid #b07b00;
	outline-offset: 2px;
	border-radius: 5px;
}

.jb-star {
	width: 1em;
	height: 1em;
}

.jb-star__outline {
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.2;
}

.jb-star__fill {
	fill: currentColor;
}

.jb-rating-empty {
	color: var(--jb-muted);
	font-size: .875rem;
	font-style: italic;
}

.jb-pagination {
	margin-top: 24px;
}

.jb-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jb-pagination a,
.jb-pagination span {
	display: inline-block;
	padding: 7px 10px;
	border: 1px solid var(--jb-border);
	border-radius: 7px;
	color: inherit;
	text-decoration: none;
}

.jb-pagination .current {
	background: var(--jb-red);
	border-color: var(--jb-red);
	color: #fff;
}

.jb-facts {
	padding: 18px;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 600px) {
	.jb-top10__item {
		grid-template-columns: 2.5rem 48px minmax(0, 1fr);
		gap: 8px;
	}

	.jb-top10__image {
		width: 48px;
		height: 48px;
	}

	.jb-top10__podium {
		width: 4.5rem;
		height: 4.5rem;
		transform: translateX(-8px) !important;
	}

	.jb-top10__podium--1 {
		width: 5rem;
		height: 5rem;
	}

	.jb-top10__details,
	.jb-top10__rating {
		grid-row: 3;
	}

	.jb-top10__details {
		grid-column: 1 / span 2;
		white-space: normal;
	}

	.jb-top10__rating {
		grid-column: 3;
		justify-self: end;
	}

	.jb-top10__bar {
		grid-column: 3;
	}

	.jb-hero {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}



/* Theme-builder components are width-neutral. The active theme or builder owns
 * containers, content width, spacing and the complete single-page structure. */
.jb-product-layout,
.jb-product-content,
.jb-product-excerpt,
.jb-product-title,
.wp-block-julebrus-product,
[class*="wp-block-julebrus-"] {
	box-sizing: border-box;
	max-width: none;
}

.jb-product-layout {
	display: grid;
	gap: clamp(24px, 4vw, 48px);
	width: 100%;
}

.jb-product-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
	width: 100%;
}

.jb-product-content-layout > .jb-product-content,
.jb-product-content-sidebar {
	min-width: 0;
}

.jb-product-content-sidebar .jb-ad {
	margin-top: 0;
	margin-bottom: 24px;
}

.jb-product-content-sidebar .jb-ad__link,
.jb-product-content-sidebar .jb-ad__image {
	width: 100%;
}

.jb-product-content-sidebar .adsbygoogle {
	min-width: 0;
}

@media (max-width: 900px) {
	.jb-product-content-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.jb-product-content-sidebar {
		width: 100%;
		max-width: 640px;
		margin-inline: auto;
	}
}

.jb-product-content > :first-child,
.jb-product-excerpt > :first-child {
	margin-top: 0;
}

.jb-product-content > :last-child,
.jb-product-excerpt > :last-child {
	margin-bottom: 0;
}

.jb-builder-placeholder {
	padding: 16px;
	border: 1px dashed #8c8f94;
	background: #f6f7f7;
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

/* Product hero: the theme owns the outer container; this component only
 * structures the product media, content and favorite action. */
.jb-hero {
	display: grid;
	grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
	gap: clamp(22px, 4vw, 52px);
	align-items: stretch;
	width: 100%;
	margin: 0 0 clamp(28px, 5vw, 52px);
}

.jb-hero__media {
	position: relative;
	min-width: 0;
}

.jb-hero__image {
	width: 100%;
	height: 100%;
	min-height: 320px;
	aspect-ratio: auto;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: #fff;
}

.jb-hero__image img {
	width: 100%;
	height: 100%;
	max-height: 560px;
	object-fit: contain;
	/* padding: clamp(16px, 3vw, 30px); */
}

.jb-hero__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	background: var(--jb-surface);
}

.jb-hero__media > .jb-badges {
	position: absolute;
	top: clamp(10px, 2vw, 18px);
	left: clamp(10px, 2vw, 18px);
	z-index: 3;
	align-items: flex-start;
	max-width: calc(100% - 20px);
	margin: 0;
	pointer-events: none;
}

.jb-hero__media > .jb-badges .jb-badge--image img {
	max-width: clamp(92px, 11vw, 150px);
	max-height: clamp(48px, 6vw, 78px);
}

.jb-hero__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(170px, auto);
	gap: clamp(22px, 4vw, 44px);
	align-items: center;
	min-width: 0;
	padding-block: clamp(8px, 2vw, 24px);
}

.jb-hero__content {
	min-width: 0;
}

.jb-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
}

.jb-hero__eyebrow .jb-hero__producer-logo {
	flex: 0 0 auto;
	margin: 0;
}

.jb-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 4.6vw, 4.25rem);
	line-height: 1.04;
	text-wrap: balance;
}

.jb-hero__actions {
	display: grid;
	justify-items: end;
	align-content: center;
	gap: 8px;
	min-width: 0;
	padding-left: clamp(18px, 3vw, 34px);
	border-left: 1px solid var(--jb-border);
}

.jb-hero__actions-label {
	color: var(--jb-muted);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.jb-hero__actions .jb-vote {
	display: grid;
	justify-items: end;
	width: 100%;
}

.jb-hero__actions .jb-vote__button {
	justify-content: center;
	min-width: 170px;
	padding: 12px 16px;
}

.jb-hero__actions .jb-vote__message {
	max-width: 220px;
	margin: 7px 0 0;
	text-align: right;
}

.jb-hero__ad {
	grid-column: 1 / -1;
}

/* Keep every card badge attached to the product image, regardless of the
 * active theme's figure and image rules. */
.jb-card__image {
	isolation: isolate;
}

.jb-card__image > .jb-badges {
	top: 10px;
	left: 10px;
	z-index: 3;
	max-width: calc(100% - 20px);
	pointer-events: none;
}

@media (max-width: 900px) {
	.jb-hero {
		grid-template-columns: minmax(190px, 300px) minmax(0, 1fr);
		gap: 24px;
	}

	.jb-hero__body {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.jb-hero__actions {
		justify-items: start;
		padding: 20px 0 0;
		border-top: 1px solid var(--jb-border);
		border-left: 0;
	}

	.jb-hero__actions .jb-vote {
		justify-items: start;
	}

	.jb-hero__actions .jb-vote__message {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.jb-hero {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.jb-hero__image,
	.jb-hero__image-placeholder {
		min-height: 280px;
	}

	.jb-hero__body {
		padding-block: 0;
	}

	.jb-hero__actions,
	.jb-hero__actions .jb-vote,
	.jb-hero__actions .jb-vote__button {
		width: 100%;
	}

	.jb-hero__actions .jb-vote__button {
		min-width: 0;
	}
}

.jb-product-image {
	position: relative;
	isolation: isolate;
}

.jb-product-image > .jb-badges {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	max-width: calc(100% - 28px);
	margin: 0;
	pointer-events: none;
}

html body h2,
html body .wp-block-heading:is(h2) {
	font-family: var(--plattio-font-h2);
	font-weight: var(--plattio-h2-weight, 700);
	margin-top: 2%;
}

/* Producer logo cloud. */
.jb-producer-cloud-section {
	margin: 0 auto 36px;
}

.jb-producer-cloud__title {
	text-align: center;
}

.jb-producer-cloud {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: clamp(10px, 1.6vw, 18px);
}

.jb-producer-cloud__item {
	position: relative;
	display: flex;
	flex: 1 1 170px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 240px;
	min-height: 132px;
	padding: clamp(16px, 2vw, 24px);
	overflow: hidden;
	border: 1px solid var(--jb-border);
	border-radius: calc(var(--jb-radius) + 4px);
	background: #fff;
	color: var(--jb-ink);
	text-align: center;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jb-producer-cloud__item.is-small {
	flex-basis: 145px;
	max-width: 205px;
	min-height: 114px;
}

.jb-producer-cloud__item.is-large {
	flex-basis: 210px;
	max-width: 285px;
	min-height: 154px;
}

.jb-producer-cloud__item[href]:hover {
	border-color: color-mix(in srgb, var(--jb-red) 35%, var(--jb-border));
	box-shadow: 0 10px 26px rgb(27 27 31 / 9%);
	transform: translateY(-3px);
}

.jb-producer-cloud__item[href]:focus-visible {
	outline: 3px solid var(--jb-red);
	outline-offset: 3px;
}

.jb-producer-cloud__logo {
	display: flex;
	width: 100%;
	height: 90px;
	min-width: 0;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.jb-producer-cloud__item.is-small .jb-producer-cloud__logo {
	height: 74px;
}

.jb-producer-cloud__item.is-large .jb-producer-cloud__logo {
	height: 108px;
}

.jb-producer-cloud__logo .jb-producer-cloud__image,
.jb-producer-cloud__logo img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	position: static !important;
	inset: auto !important;
	float: none !important;
	aspect-ratio: auto !important;
	object-fit: contain !important;
	object-position: center !important;
	filter: none !important;
	transform: none !important;
}

/* Aspect-aware sizing keeps every logo readable without cropping. */
.jb-producer-cloud__logo.is-ultrawide .jb-producer-cloud__image {
	max-height: 64% !important;
}

.jb-producer-cloud__logo.is-landscape .jb-producer-cloud__image {
	max-height: 84% !important;
}

.jb-producer-cloud__logo.is-square .jb-producer-cloud__image {
	max-width: 82% !important;
}

.jb-producer-cloud__logo.is-portrait .jb-producer-cloud__image {
	max-width: 62% !important;
}

.jb-producer-cloud__logo.is-tall .jb-producer-cloud__image {
	max-width: 46% !important;
}

.jb-producer-cloud__fallback {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 9px;
	place-items: center;
	border: 1px solid var(--jb-border);
	border-radius: 50%;
	background: var(--jb-surface);
	font-size: 1rem;
	font-weight: 750;
	letter-spacing: .04em;
}

.jb-producer-cloud__name {
	font-size: .9rem;
	font-weight: 650;
	line-height: 1.25;
}

.jb-producer-cloud__count {
	margin-top: 8px;
	color: var(--jb-muted);
	font-size: .75rem;
	line-height: 1.2;
}

.jb-producer-cloud-section--kompakt .jb-producer-cloud {
	gap: 9px;
}

.jb-producer-cloud-section--kompakt .jb-producer-cloud__item {
	flex-basis: 130px;
	max-width: 190px;
	min-height: 106px;
	padding: 12px 14px;
}

.jb-producer-cloud-section--kompakt .jb-producer-cloud__logo {
	height: 68px;
}

.jb-producer-cloud-section--stor .jb-producer-cloud__item {
	flex-basis: 210px;
	max-width: 300px;
	min-height: 170px;
	padding: 24px 28px;
}

.jb-producer-cloud-section--stor .jb-producer-cloud__logo {
	height: 122px;
}

@media (max-width: 560px) {
	.jb-producer-cloud {
		gap: 10px;
	}

	.jb-producer-cloud__item,
	.jb-producer-cloud__item.is-small,
	.jb-producer-cloud__item.is-large,
	.jb-producer-cloud-section--stor .jb-producer-cloud__item {
		flex: 1 1 calc(50% - 5px);
		max-width: none;
		min-height: 118px;
		padding: 14px;
	}

	.jb-producer-cloud__logo,
	.jb-producer-cloud__item.is-small .jb-producer-cloud__logo,
	.jb-producer-cloud__item.is-large .jb-producer-cloud__logo,
	.jb-producer-cloud-section--stor .jb-producer-cloud__logo {
		height: 78px;
	}

	.jb-producer-cloud__logo.is-portrait .jb-producer-cloud__image {
		max-width: 68% !important;
	}

	.jb-producer-cloud__logo.is-tall .jb-producer-cloud__image {
		max-width: 52% !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jb-producer-cloud__item {
		transition: none;
	}
}

/* 0.2.16: favorite voting moved out of the hero title area. */
.jb-hero__body {
	grid-template-columns: minmax(0, 1fr);
}

.jb-favorite-panel {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 4vw, 48px);
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
}

.jb-favorite-panel__content {
	min-width: 0;
}

.jb-favorite-panel__eyebrow {
	display: block;
	margin: 0 0 6px;
	color: var(--jb-muted);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.jb-favorite-panel__content strong {
	display: block;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	line-height: 1.3;
}

.jb-favorite-panel__content p {
	margin: 6px 0 0;
	color: var(--jb-muted);
}

.jb-favorite-panel > .jb-vote {
	flex: 0 0 auto;
	min-width: min(100%, 210px);
}

.jb-favorite-panel .jb-vote__button {
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
}

.jb-vote__button[aria-busy="true"] {
	cursor: wait;
	opacity: .72;
}

.jb-vote__message[data-state="success"] {
	color: #19733a;
}

.jb-vote__message[data-state="error"] {
	color: #b42318;
}

/* Keep the public review form usable even when the global comment setting was
 * previously closed. The honeypot stays inaccessible to real visitors. */
.jb-review-form__identity {
	color: var(--jb-muted);
}

.jb-review-form__website {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 720px) {
	.jb-favorite-panel {
		align-items: stretch;
		flex-direction: column;
	}

	.jb-favorite-panel > .jb-vote {
		width: 100%;
	}
}

/* 0.2.18: compact favorite panel beside the product image. */
.jb-hero__body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: clamp(24px, 4vw, 42px);
	min-width: 0;
	padding-block: clamp(8px, 2vw, 24px);
}

.jb-favorite-panel {
	grid-column: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	gap: 18px;
	padding: clamp(18px, 2.4vw, 24px);
	border: 1px solid var(--jb-border);
	border-left: 4px solid var(--jb-red);
	border-radius: var(--jb-radius);
	background: #fff;
}

.jb-favorite-panel__content strong {
	font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.jb-favorite-panel__content p {
	max-width: 54ch;
	font-size: .925rem;
	line-height: 1.55;
}

.jb-favorite-panel > .jb-vote {
	width: 100%;
	min-width: 0;
}

.jb-favorite-panel .jb-vote__button {
	justify-content: space-between;
	width: 100%;
	min-height: 50px;
	padding: 12px 14px 12px 18px;
}

.jb-favorite-panel .jb-vote__count {
	display: inline-grid;
	place-items: center;
	min-width: 30px;
	height: 30px;
	padding-inline: 7px;
	border-radius: 999px;
	background: rgb(255 255 255 / 18%);
	font-size: .875rem;
}

.jb-favorite-panel .jb-vote__message {
	margin: 8px 0 0;
	font-size: .875rem;
}

/* 0.2.18: structured public review section. */
.jb-reviews {
	width: 100%;
}

.jb-reviews__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--jb-border);
}

.jb-reviews__eyebrow,
.jb-review-form__header > span {
	display: block;
	margin: 0 0 7px;
	color: var(--jb-red);
	font-size: .75rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.jb-reviews__intro h2 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.45rem);
	line-height: 1.1;
}

.jb-reviews__intro p {
	max-width: 62ch;
	margin: 9px 0 0;
	color: var(--jb-muted);
	line-height: 1.6;
}

.jb-reviews__summary {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
	min-width: 210px;
	padding: 14px 16px;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
}

.jb-reviews__average {
	font-size: 2rem;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.jb-reviews__summary-content {
	display: grid;
	gap: 4px;
	color: var(--jb-muted);
	font-size: .8rem;
}

.jb-reviews__summary-content .jb-stars {
	color: #b07b00;
}

.jb-reviews__no-score {
	max-width: 18ch;
	line-height: 1.35;
}

.jb-reviews__notice {
	display: grid;
	gap: 3px;
	margin: 0 0 22px;
	padding: 15px 18px;
	border: 1px solid #b7ddc4;
	border-radius: var(--jb-radius);
	background: #f1faf4;
	color: #195c31;
}

.jb-reviews__notice span {
	font-size: .9rem;
}

.jb-reviews__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(28px, 5vw, 54px);
	align-items: start;
}

.jb-reviews__layout.has-form {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.jb-reviews__feed,
.jb-reviews__form-panel {
	min-width: 0;
}

.jb-reviews__subheader {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.jb-reviews__subheader h3 {
	margin: 0;
	font-size: 1.2rem;
}

.jb-reviews__subheader > span {
	color: var(--jb-muted);
	font-size: .8rem;
}

.jb-reviews__empty {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 118px;
	padding: 20px;
	border: 1px dashed #cfd0d6;
	border-radius: var(--jb-radius);
	background: #fff;
}

.jb-reviews__empty-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff7dd;
	color: #a36c00;
	font-size: 1.3rem;
}

.jb-reviews__empty strong {
	display: block;
	font-size: 1.05rem;
}

.jb-reviews__empty p {
	margin: 5px 0 0;
	color: var(--jb-muted);
	line-height: 1.55;
}

.jb-reviews__list {
	display: grid;
	gap: 14px;
}

.jb-review {
	padding: clamp(18px, 2.5vw, 24px);
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: #fff;
}

.jb-review__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.jb-review__header time {
	color: var(--jb-muted);
	font-size: .75rem;
	white-space: nowrap;
}

.jb-review h4 {
	margin: 14px 0 8px;
	font-size: 1.15rem;
	line-height: 1.35;
}

.jb-review__content {
	color: #34343b;
	font-size: .975rem;
	line-height: 1.7;
}

.jb-review__content > :first-child {
	margin-top: 0;
}

.jb-review__content > :last-child {
	margin-bottom: 0;
}

.jb-review__footer {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding-top: 15px;
	border-top: 1px solid var(--jb-border);
}

.jb-review__avatar {
	display: inline-grid;
	place-items: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--jb-surface);
	font-size: .85rem;
	font-weight: 750;
}

.jb-review__footer > span:last-child {
	display: grid;
	gap: 1px;
}

.jb-review__footer strong {
	font-size: .875rem;
}

.jb-review__footer small {
	color: var(--jb-muted);
	font-size: .72rem;
}

.jb-reviews__form-panel {
	position: sticky;
	top: 24px;
}

.jb-review-form {
	display: grid;
	gap: 17px;
	max-width: none;
	margin: 0;
	padding: clamp(20px, 3vw, 28px);
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: var(--jb-surface);
}

.jb-review-form__header h3 {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.jb-review-form__header p {
	margin: 8px 0 0;
	color: var(--jb-muted);
	font-size: .875rem;
	line-height: 1.55;
}

.jb-review-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.jb-review-form__row label,
.jb-review-form__field {
	display: grid;
	gap: 7px;
	margin: 0;
}

.jb-review-form label > span {
	font-size: .84rem;
	font-weight: 650;
}

.jb-review-form label > span small {
	color: var(--jb-muted);
	font-size: .76rem;
	font-weight: 400;
}

.jb-review-form input,
.jb-review-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #cfd0d6;
	border-radius: 8px;
	background: #fff;
	color: var(--jb-ink);
	font: inherit;
}

.jb-review-form textarea {
	min-height: 132px;
	resize: vertical;
}

.jb-review-form input:focus,
.jb-review-form textarea:focus {
	border-color: var(--jb-red);
	outline: 0;
	box-shadow: 0 0 0 3px rgb(179 35 43 / 12%);
}

.jb-review-rating {
	min-width: 0;
	margin: 0;
	padding: 0 0 16px;
	border: 0;
	border-bottom: 1px solid var(--jb-border);
}

.jb-review-rating legend {
	margin-bottom: 8px;
	font-size: .84rem;
	font-weight: 650;
}

.jb-review-rating__choices {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 3px;
	width: max-content;
}

.jb-review-rating__choices input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.jb-review-rating__choices label {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 4px;
	border-radius: 7px;
	color: #a7a7af;
	cursor: pointer;
	transition: color 140ms ease, background-color 140ms ease;
}

.jb-review-rating__choices label .jb-star {
	width: 29px;
	height: 29px;
}

.jb-review-rating__choices label:hover {
	color: #b07b00;
}

.jb-review-rating__choices label:hover {
	background: #fff4cc;
}

.jb-review-rating__choices input:focus-visible + label {
	outline: 3px solid #b07b00;
	outline-offset: 2px;
}

.jb-review-form__identity {
	margin: 0;
	padding: 11px 13px;
	border-radius: 8px;
	background: #fff;
	font-size: .875rem;
}

.jb-review-form__submit {
	width: 100%;
	min-height: 48px;
	margin: 1px 0 0;
	padding: 12px 18px;
	border: 1px solid var(--jb-red);
	border-radius: 8px;
	background: var(--jb-red);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.jb-review-form__submit:hover {
	filter: brightness(.92);
}

.jb-review-form__privacy {
	margin: -8px 0 0;
	color: var(--jb-muted);
	font-size: .75rem;
	text-align: center;
}

@media (max-width: 980px) {
	.jb-reviews__layout.has-form {
		grid-template-columns: minmax(0, 1fr);
	}

	.jb-reviews__form-panel {
		position: static;
	}
}

@media (max-width: 720px) {
	.jb-reviews__header {
		align-items: stretch;
		flex-direction: column;
	}

	.jb-reviews__summary {
		width: 100%;
	}

	.jb-review-form__row {
		grid-template-columns: 1fr;
	}

	.jb-reviews__subheader {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}
}

@media (max-width: 480px) {
	.jb-review__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.jb-review-rating__choices label {
		width: 34px;
		height: 34px;
	}

	.jb-review-rating__choices label .jb-star {
		width: 26px;
		height: 26px;
	}
}

/* 0.2.19: verified review form and compact favorite action. */
.jb-favorite-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 11px 12px 11px 14px;
	border-left-width: 3px;
	border-radius: 10px;
}

.jb-favorite-panel__content {
	display: flex;
	align-items: baseline;
	flex: 1 1 auto;
	gap: 9px;
	min-width: 0;
}

.jb-favorite-panel__eyebrow {
	flex: 0 0 auto;
	margin: 0;
	font-size: .68rem;
	white-space: nowrap;
}

.jb-favorite-panel__content strong {
	min-width: 0;
	font-size: .94rem;
	font-weight: 650;
	line-height: 1.3;
}

.jb-favorite-panel > .jb-vote {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 9px;
	width: auto;
	min-width: 0;
}

.jb-favorite-panel .jb-vote__button {
	justify-content: center;
	width: auto;
	min-width: 0;
	min-height: 40px;
	padding: 8px 10px 8px 13px;
	border-radius: 8px;
	white-space: nowrap;
}

.jb-favorite-panel .jb-vote__count {
	min-width: 25px;
	height: 25px;
	padding-inline: 6px;
	font-size: .78rem;
}

.jb-favorite-panel .jb-vote__message {
	max-width: 190px;
	margin: 0;
	font-size: .76rem;
	line-height: 1.35;
}

.jb-favorite-panel .jb-vote__message:empty {
	display: none;
}

.jb-reviews {
	padding-block: clamp(8px, 2vw, 20px);
}

.jb-reviews__layout.has-form {
	grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
	gap: clamp(28px, 4vw, 48px);
}

.jb-reviews__form-panel {
	top: 18px;
}

.jb-review-form {
	gap: 18px;
	padding: clamp(20px, 2.8vw, 26px);
	border-radius: 12px;
}

.jb-review-form__header {
	padding-bottom: 17px;
	border-bottom: 1px solid var(--jb-border);
}

.jb-review-form__header p {
	margin-bottom: 0;
}

.jb-review-rating {
	display: grid;
	gap: 9px;
	padding: 0;
	border: 0;
}

.jb-review-rating legend {
	margin: 0;
	padding: 0;
}

.jb-review-rating__control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 44px;
}

.jb-review-rating__choices {
	display: flex;
	flex: 0 0 auto;
	flex-direction: row;
	gap: 2px;
	width: auto;
}

.jb-review-rating__choices input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.jb-review-rating__choices label {
	width: 40px;
	height: 40px;
	padding: 5px;
	border: 1px solid transparent;
	border-radius: 8px;
	color: #a7a7af;
}

.jb-review-rating__choices label:hover,
.jb-review-rating__choices label.is-active,
.jb-review-rating__choices input:checked + label {
	border-color: #ead18b;
	background: #fff8e3;
	color: #a66d00;
}

.jb-review-rating__choices label .jb-star {
	width: 27px;
	height: 27px;
}

.jb-review-rating__status {
	margin: 0;
	color: var(--jb-muted);
	font-size: .78rem;
	line-height: 1.35;
	text-align: right;
}

.jb-review-rating.has-value .jb-review-rating__status {
	color: #745000;
	font-weight: 650;
}

.jb-review-rating.has-error {
	margin: -8px;
	padding: 8px;
	border: 1px solid #e6a6aa;
	border-radius: 9px;
	background: #fff7f7;
}

.jb-review-rating__status[data-state="error"] {
	color: #a51f27;
	font-weight: 650;
}

.jb-review-form__row {
	gap: 13px;
}

.jb-review-form__row label,
.jb-review-form__field {
	gap: 7px;
}

.jb-review-form input,
.jb-review-form textarea {
	min-height: 46px;
	padding: 11px 12px;
	border-radius: 8px;
	line-height: 1.45;
}

.jb-review-form textarea {
	min-height: 146px;
}

.jb-review-form__notice {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--jb-border);
	border-radius: 8px;
	font-size: .86rem;
	font-weight: 600;
	line-height: 1.45;
}

.jb-review-form__notice[data-state="success"] {
	border-color: #b8d9c2;
	background: #f2faf4;
	color: #195c31;
}

.jb-review-form__notice[data-state="error"] {
	border-color: #e6a6aa;
	background: #fff5f5;
	color: #9f1d25;
}

.jb-review-form__submit[aria-busy="true"] {
	cursor: wait;
	opacity: .72;
}

@media (max-width: 720px) {
	.jb-favorite-panel {
		align-items: stretch;
		flex-wrap: wrap;
	}

	.jb-favorite-panel__content {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.jb-favorite-panel > .jb-vote {
		justify-content: space-between;
		width: 100%;
	}

	.jb-review-rating__control {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.jb-review-rating__status {
		text-align: left;
	}
}

@media (max-width: 420px) {
	.jb-review-rating__choices {
		width: 100%;
		justify-content: space-between;
	}

	.jb-review-rating__choices label {
		width: 38px;
		height: 38px;
	}
}

/* ============================================================
   Bottle rating icons + theme-hardened review form.
   The grey bottle is the base layer; the coloured bottle is
   stacked on top and revealed left-to-right via clip-path for
   fractional averages, or toggled with opacity in the selector.
   Critical declarations use high specificity + !important so
   aggressive theme rules (e.g. `img { max-width: 100%;
   height: auto }`, or label/input/fieldset resets) can never
   break the bottle sizing or the ability to pick a rating.
   ============================================================ */
.jb-bottle {
	position: relative !important;
	display: inline-block !important;
	width: auto !important;
	height: 1.5em;
	line-height: 0 !important;
	vertical-align: middle;
	overflow: visible !important;
}

.jb-bottle__img {
	display: block !important;
	width: auto !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: none !important;
	pointer-events: none !important;
	user-select: none !important;
}

.jb-bottle__base {
	position: static !important;
}

.jb-bottle__active {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: auto !important;
	height: 100% !important;
}

/* Rating summaries / per-review displays */
.jb-stars.jb-bottles {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: flex-end !important;
	gap: 3px !important;
	min-width: 0 !important;
	color: inherit;
}

.jb-stars.jb-bottles .jb-bottle {
	height: 1.6em !important;
}

.jb-card__footer .jb-stars.jb-bottles .jb-bottle,
.jb-top10__rating .jb-stars.jb-bottles .jb-bottle {
	height: 1.4em !important;
}

.jb-reviews__summary-content .jb-stars.jb-bottles .jb-bottle {
	height: 1.9em !important;
}

.jb-reviews__empty-icon .jb-bottle {
	height: 40px !important;
}

/* --- Interactive review rating selector --- */
.jb-reviews .jb-review-rating__control {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 14px !important;
}

.jb-reviews .jb-review-rating__choices {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 6px !important;
	width: max-content !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.jb-reviews .jb-review-rating__choices input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.jb-reviews .jb-review-rating__choices label {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 6px !important;
	border: 1px solid transparent !important;
	border-radius: 8px !important;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: background-color 140ms ease, border-color 140ms ease;
	-webkit-tap-highlight-color: transparent;
}

.jb-reviews .jb-review-rating__choices label .jb-bottle {
	height: 34px !important;
	width: auto !important;
	pointer-events: none !important;
}

/* Legacy star node is unused now; hide it if a cached template still emits it */
.jb-reviews .jb-review-rating__choices label .jb-star {
	display: none !important;
}

/* Coloured bottle stays hidden until the control is hovered or selected */
.jb-reviews .jb-review-rating__choices .jb-bottle__active {
	opacity: 0 !important;
	transition: opacity 120ms ease;
}

.jb-reviews .jb-review-rating__choices label:hover,
.jb-reviews .jb-review-rating__choices label.is-active,
.jb-reviews .jb-review-rating__choices input:checked + label,
.jb-reviews .jb-review-rating__choices input:focus-visible + label {
	border-color: #ead18b !important;
	background: #fff8e3 !important;
}

.jb-reviews .jb-review-rating__choices label:hover .jb-bottle__active,
.jb-reviews .jb-review-rating__choices label.is-active .jb-bottle__active,
.jb-reviews .jb-review-rating__choices input:checked + label .jb-bottle__active {
	opacity: 1 !important;
}

/* No-JS fallback: colour the selected bottle and every earlier one using
   :has() where supported. The JS path (adding .is-active) covers older browsers. */
.jb-reviews .jb-review-rating__choices:has(input[value="1"]:checked) label[data-rating-value="1"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="2"]:checked) label[data-rating-value="1"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="2"]:checked) label[data-rating-value="2"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="3"]:checked) label[data-rating-value="1"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="3"]:checked) label[data-rating-value="2"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="3"]:checked) label[data-rating-value="3"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="4"]:checked) label[data-rating-value="1"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="4"]:checked) label[data-rating-value="2"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="4"]:checked) label[data-rating-value="3"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="4"]:checked) label[data-rating-value="4"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="5"]:checked) label[data-rating-value="1"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="5"]:checked) label[data-rating-value="2"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="5"]:checked) label[data-rating-value="3"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="5"]:checked) label[data-rating-value="4"] .jb-bottle__active,
.jb-reviews .jb-review-rating__choices:has(input[value="5"]:checked) label[data-rating-value="5"] .jb-bottle__active {
	opacity: 1 !important;
}

.jb-reviews .jb-review-rating__status {
	margin: 0 !important;
	color: var(--jb-muted);
	font-size: .85rem;
}

/* Keep the submit button visible and clickable through theme form resets */
.jb-reviews .jb-review-form__submit {
	display: block !important;
	width: 100% !important;
	cursor: pointer !important;
	opacity: 1 !important;
	visibility: visible !important;
}


/* 0.2.27: editorial score and user review average on one rating row. */
.jb-rating--combined {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 100%;
	color: var(--jb-ink);
	letter-spacing: normal;
}

.jb-rating__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	white-space: nowrap;
}

.jb-rating__label {
	color: var(--jb-muted);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.jb-rating__score {
	display: inline-flex;
	align-items: baseline;
	gap: 1px;
	color: var(--jb-ink);
	font-size: 1.1rem;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.jb-rating__score > span {
	color: var(--jb-muted);
	font-size: .72em;
	font-weight: 600;
}

.jb-rating__score--users {
	font-size: .95rem;
}

.jb-rating__divider {
	width: 1px;
	height: 24px;
	flex: 0 0 1px;
	background: var(--jb-border);
}

.jb-rating--combined .jb-rating__count {
	color: var(--jb-muted);
	font-size: .8rem;
	letter-spacing: normal;
}

.jb-rating--combined .jb-rating-empty {
	font-size: .85rem;
}

.jb-rating--combined .jb-stars.jb-bottles .jb-bottle {
	height: 1.35em !important;
}

@media (max-width: 560px) {
	.jb-rating--combined {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.jb-rating__divider {
		display: none;
	}

	.jb-rating__item {
		flex-wrap: wrap;
		white-space: normal;
	}
}

/* 0.2.33: expandable editorial assessment beneath the hero ratings. */
.jb-editor-review{
	margin-top:18px;
	border:1px solid var(--jb-border);
	border-left:4px solid var(--jb-red);
	border-radius:var(--jb-radius);
	background:#fff;
	overflow:hidden;
}
.jb-editor-review__details{margin:0}
.jb-editor-review__summary{
	display:grid;
	gap:12px;
	padding:18px 20px;
	cursor:pointer;
	list-style:none;
}
.jb-editor-review__summary::-webkit-details-marker{display:none}
.jb-editor-review__summary:focus-visible{outline:3px solid var(--jb-red);outline-offset:-3px}
.jb-editor-review__summary-top{display:flex;align-items:center;justify-content:space-between;gap:20px}
.jb-editor-review__summary-top>span:first-child{display:grid;gap:3px}
.jb-editor-review__summary-top>span:first-child>strong{font-size:1.05rem;line-height:1.25}
.jb-editor-review__eyebrow{color:var(--jb-red);font-size:.68rem;font-weight:750;letter-spacing:.08em;text-transform:uppercase}
.jb-editor-review__score{display:inline-flex;align-items:baseline;justify-content:center;flex:0 0 auto;min-width:72px;padding:9px 11px;border:1px solid var(--jb-border);border-radius:999px;background:var(--jb-surface);font-variant-numeric:tabular-nums;line-height:1}
.jb-editor-review__score strong{font-size:1.25rem}
.jb-editor-review__score small{margin-left:2px;color:var(--jb-muted);font-size:.72rem;font-weight:700}
.jb-editor-review__excerpt{display:block;max-width:68ch;color:var(--jb-muted);font-size:.9rem;line-height:1.55}
.jb-editor-review__toggle{display:inline-flex;align-items:center;gap:8px;width:max-content;color:var(--jb-red);font-size:.8rem;font-weight:750}
.jb-editor-review__toggle-close{display:none}
.jb-editor-review__chevron{width:7px;height:7px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .16s ease}
.jb-editor-review__details[open] .jb-editor-review__toggle-open{display:none}
.jb-editor-review__details[open] .jb-editor-review__toggle-close{display:inline}
.jb-editor-review__details[open] .jb-editor-review__chevron{transform:rotate(225deg) translate(-1px,-1px)}
.jb-editor-review__details[open] .jb-editor-review__excerpt{display:none}
.jb-editor-review__content{display:grid;gap:22px;padding:20px;border-top:1px solid var(--jb-border);background:var(--jb-surface)}
.jb-editor-review__text{max-width:72ch;color:var(--jb-ink);line-height:1.7}
.jb-editor-review__text p{margin:0 0 1em}
.jb-editor-review__text p:last-child{margin-bottom:0}
.jb-editor-review__criteria{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 20px}
.jb-editor-review__criterion{display:grid;gap:7px;min-width:0}
.jb-editor-review__criterion-heading{display:flex;align-items:baseline;justify-content:space-between;gap:12px;font-size:.82rem}
.jb-editor-review__criterion-heading>span{font-weight:700}
.jb-editor-review__criterion-heading strong{font-variant-numeric:tabular-nums}
.jb-editor-review__criterion-heading small{margin-left:1px;color:var(--jb-muted);font-size:.72em}
.jb-editor-review__bar{height:6px;border-radius:999px;background:#e3e3e7;overflow:hidden}
.jb-editor-review__bar>span{display:block;height:100%;border-radius:inherit;background:var(--jb-red)}
@media(max-width:560px){.jb-editor-review__summary,.jb-editor-review__content{padding:16px}.jb-editor-review__criteria{grid-template-columns:1fr}.jb-editor-review__score{min-width:64px}.jb-editor-review__summary-top{align-items:flex-start}}
@media(prefers-reduced-motion:reduce){.jb-editor-review__chevron{transition:none}}


/* 0.2.34: editorial criterion breakdown in the product content sidebar. */
.jb-content-sidebar-stack{
	display:grid;
	gap:20px;
	width:100%;
	min-width:0;
}
.jb-content-sidebar-stack>.jb-ad{
	margin:0;
}
.jb-editor-criteria-card{
	width:100%;
	min-width:0;
	padding:18px;
	border:1px solid var(--jb-border);
	border-radius:var(--jb-radius);
	background:#fff;
	box-shadow:0 8px 24px rgb(27 27 31 / 6%);
}
.jb-editor-criteria-card__header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	margin-bottom:18px;
	padding-bottom:15px;
	border-bottom:1px solid var(--jb-border);
}
.jb-editor-criteria-card__header>span:first-child{
	display:grid;
	gap:3px;
	min-width:0;
}
.jb-editor-criteria-card__header>span:first-child>strong{
	font-size:1rem;
	line-height:1.25;
}
.jb-editor-review__criteria--sidebar{
	grid-template-columns:1fr;
	gap:14px;
}
.jb-editor-review__criteria--sidebar .jb-editor-review__criterion-heading{
	font-size:.84rem;
}
.jb-editor-review__criteria--sidebar .jb-editor-review__bar{
	height:7px;
}
@media(max-width:560px){
	.jb-editor-criteria-card{padding:16px}
	.jb-editor-criteria-card__header{align-items:flex-start}
}
/* Related products use the same responsive catalogue card grid. */
.jb-related-products {
	margin-top: 36px;
}

.jb-related-products__grid .jb-card,
.jb-related-products__grid .jb-card__link {
	height: 100%;
}

.jb-related-products__grid .jb-card__link {
	display: flex;
	flex-direction: column;
}

.jb-related-products__grid .jb-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.jb-related-products__grid .jb-card__footer {
	margin-top: auto;
	padding-top: 16px;
}



/* Producer archives keep the active theme chrome and content rhythm while
 * using the same catalogue cards as [julebrus_alle]. */
.jb-producer-archive {
	padding-block: clamp(28px, 4vw, 64px);
}


.jb-producer-archive--builder {
	padding-block: 0;
}

.jb-producer-logo {
	display: grid;
	place-items: center;
	max-width: 100%;
}

.jb-producer-logo__image {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	object-fit: contain !important;
}

.jb-producer-title {
	margin-block: 0;
}

.jb-producer-description {
	color: var(--jb-muted);
	line-height: 1.65;
}

.jb-producer-archive__inner {
	width: calc(100% - clamp(28px, 5vw, 64px));
	max-width: var(--plattio-content-max-width, var(--plattio-wide-width, var(--wp--style--global--wide-size, 1280px)));
	margin-inline: auto;
}

.jb-producer-archive__header {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 32px);
	margin: 0 0 clamp(24px, 4vw, 42px);
	padding-bottom: clamp(20px, 3vw, 30px);
	border-bottom: 1px solid var(--jb-border);
}

.jb-producer-archive__logo {
	display: grid;
	flex: 0 0 clamp(76px, 10vw, 124px);
	place-items: center;
	width: clamp(76px, 10vw, 124px);
	height: clamp(76px, 10vw, 124px);
	padding: 12px;
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius);
	background: #fff;
}

.jb-producer-archive__logo-image {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	object-fit: contain !important;
}

.jb-producer-archive__intro {
	min-width: 0;
}

.jb-producer-archive__eyebrow {
	margin: 0 0 7px;
	color: var(--jb-red);
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.jb-producer-archive__title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.75rem);
	line-height: 1.05;
}

.jb-producer-archive__description {
	max-width: 760px;
	margin-top: 12px;
	color: var(--jb-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.jb-producer-archive__description > :first-child {
	margin-top: 0;
}

.jb-producer-archive__description > :last-child {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.jb-producer-archive__inner {
		width: calc(100% - 28px);
	}

	.jb-producer-archive__header {
		align-items: flex-start;
	}

	.jb-producer-archive__logo {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
		padding: 9px;
	}
}

/* Live product search shortcode. */
.jb-live-search {
	position: relative;
	width: 100%;
	max-width: 760px;
}

.jb-live-search__title {
	margin: 0 0 14px;
}

.jb-live-search__form {
	position: relative;
	margin: 0;
}

.jb-live-search__field {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 58px;
	border: 1px solid var(--jb-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 26px rgb(27 27 31 / 7%);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.jb-live-search__field:focus-within {
	border-color: var(--jb-red);
	box-shadow: 0 0 0 3px rgb(179 35 43 / 12%), 0 12px 30px rgb(27 27 31 / 10%);
}

.jb-live-search__icon {
	display: grid;
	flex: 0 0 52px;
	place-items: center;
	width: 52px;
	color: var(--jb-muted);
}

.jb-live-search__icon svg {
	width: 21px;
	height: 21px;
}

.jb-live-search__input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 56px;
	margin: 0 !important;
	padding: 0 84px 0 0 !important;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--jb-ink);
	font: inherit;
	font-size: 1rem;
}

.jb-live-search__input::-webkit-search-cancel-button {
	display: none;
}

.jb-live-search__input::placeholder {
	color: var(--jb-muted);
	opacity: 1;
}

.jb-live-search__clear {
	position: absolute;
	right: 42px;
	top: 50%;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--jb-surface);
	color: var(--jb-muted);
	font-size: 1.25rem;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.jb-live-search__clear:hover,
.jb-live-search__clear:focus-visible {
	background: #ececf0;
	color: var(--jb-ink);
}

.jb-live-search__spinner {
	position: absolute;
	right: 17px;
	top: 50%;
	display: none;
	width: 17px;
	height: 17px;
	border: 2px solid rgb(179 35 43 / 18%);
	border-top-color: var(--jb-red);
	border-radius: 999px;
	transform: translateY(-50%);
	animation: jb-live-search-spin .72s linear infinite;
}

.jb-live-search.is-loading .jb-live-search__spinner {
	display: block;
}

.jb-live-search__panel {
	position: absolute;
	z-index: 9999;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	max-height: min(520px, 70vh);
	overflow: auto;
	border: 1px solid var(--jb-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 20px 50px rgb(27 27 31 / 16%);
}

.jb-live-search__results {
	margin: 0 !important;
	padding: 7px !important;
	list-style: none !important;
}

.jb-live-search__result {
	margin: 0;
	padding: 0;
	border-radius: 10px;
}

.jb-live-search__result + .jb-live-search__result {
	border-top: 1px solid #f0f0f2;
}

.jb-live-search__result[aria-selected="true"],
.jb-live-search__result:hover {
	background: var(--jb-surface);
}

.jb-live-search__result-link {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 7px 10px;
	color: inherit;
	text-decoration: none !important;
}

.jb-live-search__result-link:focus-visible {
	outline: 2px solid var(--jb-red);
	outline-offset: -2px;
	border-radius: 10px;
}

.jb-live-search__result-image {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	overflow: hidden;
	border: 1px solid var(--jb-border);
	border-radius: 9px;
	background: #fff;
}

.jb-live-search__result-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
}

.jb-live-search__result-image--empty::before {
	content: '';
	width: 18px;
	height: 28px;
	border: 2px solid #d7d7dc;
	border-radius: 5px 5px 7px 7px;
}

.jb-live-search__result-copy {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.jb-live-search__result-title {
	overflow: hidden;
	font-size: .96rem;
	font-weight: 750;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jb-live-search__result-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 9px;
	color: var(--jb-muted);
	font-size: .78rem;
	line-height: 1.35;
}

.jb-live-search__result-score {
	color: var(--jb-red);
	font-weight: 750;
}

.jb-live-search__result-user-score {
	font-weight: 650;
}

.jb-live-search__result-arrow {
	color: var(--jb-muted);
	font-size: 1.1rem;
	transition: transform 160ms ease, color 160ms ease;
}

.jb-live-search__result:hover .jb-live-search__result-arrow,
.jb-live-search__result[aria-selected="true"] .jb-live-search__result-arrow {
	color: var(--jb-red);
	transform: translateX(2px);
}

.jb-live-search__empty {
	padding: 22px 18px;
	color: var(--jb-muted);
	font-size: .9rem;
	text-align: center;
}

@keyframes jb-live-search-spin {
	to { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 600px) {
	.jb-live-search__field {
		min-height: 54px;
	}

	.jb-live-search__input {
		height: 52px;
		font-size: .95rem;
	}

	.jb-live-search__icon {
		flex-basis: 46px;
		width: 46px;
	}

	.jb-live-search__result-link {
		grid-template-columns: 50px minmax(0, 1fr) auto;
		gap: 10px;
		min-height: 64px;
		padding-inline: 7px;
	}

	.jb-live-search__result-image {
		width: 50px;
		height: 50px;
	}

	.jb-live-search__result-title {
		font-size: .9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jb-live-search__spinner {
		animation-duration: 1.4s;
	}
}
