/**
 * CG Buy Box
 *
 * Scoped to .cg-bb and .cg-bb-tabs so nothing here can leak into the rest of
 * the product page. Fonts are the ones the site already loads.
 */

.cg-bb {
	--cg-ink: #17352a;
	--cg-ink-soft: #41544b;
	--cg-muted: #6b7d74;
	--cg-green: #1f5340;
	--cg-green-mid: #5b8d76;
	--cg-green-soft: #eef4ea;
	--cg-green-line: #d9e6dd;
	--cg-line: #e3ece6;
	--cg-card: #ffffff;
	--cg-warm: #b4531f;
	--cg-warm-soft: #fbe9dc;
	--cg-star: #dfa32c;
	--cg-radius: 16px;
	--cg-radius-sm: 12px;
	--cg-serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
	--cg-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	font-family: var(--cg-sans);
	color: var(--cg-ink-soft);
	max-width: 100%;
	position: static;
}

.cg-bb *,
.cg-bb *::before,
.cg-bb *::after {
	box-sizing: border-box;
}

.cg-bb > * + * {
	margin-top: 22px;
}

.cg-bb__label {
	display: block;
	font-size: 13.5px;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: var(--cg-ink);
}

.cg-bb-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.cg-bb-ico svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
}

/* ------------------------------------------------------------------ head */

.cg-bb__head > * + * {
	margin-top: 10px;
}

.cg-bb__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.cg-bb__chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--cg-green-soft);
	color: #3a6450;
	font-size: 12.5px;
	line-height: 1.15;
	font-weight: 650;
	letter-spacing: -0.005em;
	white-space: nowrap;
}

.cg-bb__chip--sale {
	background: var(--cg-warm-soft);
	color: var(--cg-warm);
	font-weight: 800;
}

.cg-bb__chip--new {
	background: #eaf4e2;
	color: #5c8a34;
	font-weight: 800;
}

.cg-bb__title {
	margin: 0;
	padding: 0;
	font-family: var(--cg-serif);
	font-weight: 700;
	color: var(--cg-green);
	font-size: clamp(30px, 3.5vw, 46px);
	line-height: 1.04;
	letter-spacing: -0.015em;
}

.cg-bb__title-main {
	display: block;
}

.cg-bb__title-sub,
.cg-bb__title-micro {
	display: block;
	font-family: var(--cg-sans);
	color: var(--cg-ink-soft);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.cg-bb__title-sub {
	margin-top: 8px;
	/* Scales with the title, but never below 15px. Without the floor these lines
	   collapse in the tablet band, where the title has already hit its own
	   minimum and a plain em keeps shrinking. */
	font-size: max(15px, 0.44em);
	line-height: 1.25;
}

.cg-bb__title-micro {
	margin-top: 6px;
	/* Still a clear step down from the sub line, but no longer an afterthought. */
	font-size: max(13.5px, 0.4em);
	line-height: 1.3;
	color: var(--cg-muted);
}

/* ---------------------------------------------------------------- rating */

.cg-bb__rating {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 8px;
	margin-top: 10px;
	white-space: nowrap;
}

.cg-bb__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	line-height: 1;
}

.cg-bb__star {
	width: 16px;
	height: 16px;
	line-height: 1;
	color: #d9ddd7;
}

/* The icon must be sized against the star, never left to the SVG's own
   intrinsic size. Percentages here resolve because the star is a flex item
   with a definite width, so this also follows the smaller mobile star. */
.cg-bb__star .cg-bb-ico {
	width: 100%;
	height: 100%;
}

.cg-bb__star.is-on {
	color: var(--cg-star);
}

/* line-height: 1 on the text so its box matches the glyphs. Centring a 16px
   star against a full line box, which carries descender space the digits do
   not use, is what made the stars sit low. */
.cg-bb__rating-num {
	font-size: 14px;
	line-height: 1;
	font-weight: 800;
	color: var(--cg-ink);
}

.cg-bb__rating-link {
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	color: var(--cg-green-mid);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cg-bb__rating-link:hover {
	color: var(--cg-green);
}

/* ----------------------------------------------------------------- blurb */

.cg-bb__summary > * + * {
	margin-top: 15px;
}

.cg-bb__blurb {
	margin: 0;
	/* Padding, not margin: adjacent margins collapse in normal flow, so a
	   bottom margin here would simply be swallowed by the next block's. */
	padding-bottom: 9px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--cg-ink-soft);
	max-width: 46em;
}

.cg-bb__blurb > * {
	margin-top: 0;
	margin-bottom: .7em;
}

.cg-bb__blurb > *:last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------------- price */

.cg-bb__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 10px 12px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--cg-line);
}

.cg-bb__price-now {
	font-family: var(--cg-serif);
	/* A clear step below the title. Both are the same serif, so at near-matching
	   sizes they competed for the first read instead of leading into each other. */
	font-size: clamp(26px, 2.6vw, 38px);
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--cg-green);
}

.cg-bb__price-was {
	/* Kept at roughly half the current price, so the pairing looks unchanged. */
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	color: #9aa8a1;
	text-decoration: line-through;
}

.cg-bb__price-save {
	display: inline-flex;
	align-items: center;
	padding: 6px 11px;
	border-radius: 999px;
	background: var(--cg-warm);
	color: #fff;
	font-size: 12.5px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.01em;
	white-space: nowrap;
	transform: translateY(-2px);
}

.cg-bb__price-per {
	font-size: 14px;
	line-height: 1.2;
	color: var(--cg-ink-soft);
}

.cg-bb__price-per strong {
	font-weight: 800;
	color: var(--cg-ink);
}

.cg-bb__price [hidden] {
	display: none !important;
}

/* ------------------------------------------------------------------- kit */

.cg-bb__kit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 9px;
}

.cg-bb__kit-card {
	padding: 12px 13px 13px;
	border: 1px solid var(--cg-line);
	border-radius: var(--cg-radius-sm);
	background: var(--cg-card);
	min-width: 0;
}

.cg-bb__kit-bar {
	display: block;
	width: 22px;
	height: 5px;
	border-radius: 999px;
	background: var(--cg-green-mid);
	margin-bottom: 9px;
}

.cg-bb__kit-name {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--cg-ink);
	letter-spacing: -0.01em;
}

.cg-bb__kit-sub {
	display: block;
	margin-top: 3px;
	font-size: 12.8px;
	line-height: 1.25;
	color: var(--cg-muted);
}

/* -------------------------------------------------------------- benefits */

.cg-bb__benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 22px;
}

.cg-bb__benefits li {
	display: grid;
	grid-template-columns: 19px minmax(0, 1fr);
	gap: 9px;
	margin: 0;
	padding: 0;
	font-size: 14.6px;
	line-height: 1.35;
	color: var(--cg-ink-soft);
	list-style: none;
}

.cg-bb__benefits li::marker,
.cg-bb__benefits li::before {
	content: none;
}

.cg-bb__benefits .cg-bb-ico {
	width: 19px;
	height: 19px;
	margin-top: 1px;
	color: var(--cg-green-mid);
}

.cg-bb__benefits strong {
	font-weight: 800;
	color: var(--cg-ink);
}

/* ----------------------------------------------------------------- sizes */

.cg-bb__sizes-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
}

.cg-bb__calc-toggle {
	appearance: none;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 650;
	color: var(--cg-green-mid);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
	white-space: nowrap;
}

.cg-bb__calc-toggle:hover {
	color: var(--cg-green);
}

.cg-bb__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 11px;
	align-items: stretch;
}

.cg-bb--cards-1 .cg-bb__cards {
	grid-template-columns: minmax(0, 1fr);
}

.cg-bb--cards-2 .cg-bb__cards,
.cg-bb--cards-4 .cg-bb__cards {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 601px) {
	.cg-bb--cards-4 .cg-bb__cards {
		grid-auto-rows: 1fr;
	}
}

.cg-bb__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin: 11px 0 0;
	padding: 18px 46px 16px 16px;
	border: 1.5px solid var(--cg-line);
	border-radius: var(--cg-radius);
	background: var(--cg-card);
	text-align: left;
	font-family: inherit;
	cursor: pointer;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
	min-width: 0;
	width: 100%;
	overflow: visible;
}

.cg-bb__card:hover:not(.is-disabled) {
	border-color: #bcd3c5;
	box-shadow: 0 8px 20px rgba(23, 53, 42, .06);
}

.cg-bb__card.is-selected {
	border-color: var(--cg-green);
	box-shadow: 0 0 0 1px var(--cg-green), 0 10px 24px rgba(23, 53, 42, .08);
}

.cg-bb__card.is-disabled {
	opacity: .55;
	cursor: not-allowed;
}

.cg-bb__card-badge {
	position: absolute;
	top: -11px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	max-width: calc(100% - 28px);
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--cg-green);
	color: #fff;
	font-size: 11px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cg-bb__card-badge--sale {
	background: var(--cg-warm);
}

.cg-bb__card-badge--bulk {
	background: #2f6285;
}

.cg-bb__card-badge--starter {
	background: var(--cg-green-mid);
}

.cg-bb__card-badge--bloom {
	background: #8e5ba6;
}

.cg-bb__card-badge--new {
	background: #5c8a34;
}

.cg-bb__card-tick {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	border: 1.5px solid #cbd9d0;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.cg-bb__card-tick .cg-bb-ico {
	width: 14px;
	height: 14px;
}

.cg-bb__card.is-selected .cg-bb__card-tick {
	background: var(--cg-green);
	border-color: var(--cg-green);
	color: #fff;
}

.cg-bb__card-size {
	font-size: 27px;
	line-height: 1.05;
	font-weight: 850;
	letter-spacing: -0.03em;
	color: var(--cg-ink);
}

.cg-bb__card-headline {
	margin-top: 3px;
	font-size: 13.4px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--cg-ink-soft);
}

.cg-bb__card-prices {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
}

.cg-bb__card-price {
	font-size: 20px;
	line-height: 1.1;
	font-weight: 850;
	letter-spacing: -0.02em;
	color: var(--cg-ink);
}

.cg-bb__card-was {
	font-size: 13.5px;
	line-height: 1.1;
	font-weight: 600;
	color: #9aa8a1;
	text-decoration: line-through;
}

.cg-bb__card-per {
	margin-top: 4px;
	font-size: 12.8px;
	line-height: 1.25;
	color: var(--cg-muted);
}

.cg-bb__card-per strong {
	font-weight: 800;
	color: #2c6a4f;
}

.cg-bb__card-note {
	margin-top: 8px;
	font-size: 12.8px;
	line-height: 1.3;
	color: var(--cg-muted);
}

.cg-bb__card-status {
	margin-top: auto;
	padding-top: 8px;
	font-size: 11.6px;
	line-height: 1.2;
	font-weight: 750;
	color: #a8761c;
}

.cg-bb__card-status.is-out {
	color: #a33;
}

/* ------------------------------------------------------------ calculator */

.cg-bb__calc {
	margin-top: 12px;
	padding: 15px 16px 14px;
	border: 1px solid var(--cg-green-line);
	border-radius: var(--cg-radius);
	background: #f7fbf6;
}

.cg-bb__calc[hidden] {
	display: none;
}

.cg-bb__calc-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.cg-bb__calc-field {
	display: block;
	min-width: 0;
}

.cg-bb__calc-field > span {
	display: block;
	margin-bottom: 5px;
	font-size: 12.4px;
	font-weight: 700;
	color: var(--cg-ink);
}

.cg-bb__calc-field select {
	width: 100%;
	max-width: 100%;
	height: 42px;
	padding: 0 34px 0 11px;
	border: 1px solid var(--cg-green-line);
	border-radius: 10px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235b8d76'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5H5.5Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 18px 18px;
	appearance: none;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: 14px;
	color: var(--cg-ink);
	line-height: 1.2;
}

.cg-bb__calc-result {
	margin: 12px 0 0;
	font-size: 15.5px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--cg-green);
}

.cg-bb__calc-result strong {
	font-weight: 850;
}

.cg-bb__calc-foot {
	margin: 6px 0 0;
	font-size: 11.8px;
	line-height: 1.35;
	color: var(--cg-muted);
}

/* --------------------------------------------------------------- sprayer */

.cg-bb__sprayer {
	margin-top: 18px;
}

.cg-bb__sprayer-label {
	display: grid;
	grid-template-columns: 22px 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	margin: 0;
	padding: 13px 15px;
	border: 1.5px solid var(--cg-line);
	border-radius: var(--cg-radius);
	background: var(--cg-card);
	cursor: pointer;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.cg-bb__sprayer-label:hover {
	border-color: #bcd3c5;
}

.cg-bb__sprayer.is-on .cg-bb__sprayer-label {
	border-color: var(--cg-green);
	box-shadow: 0 0 0 1px var(--cg-green);
	background: #f8fcf8;
}

.cg-bb__sprayer-check {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	pointer-events: none;
}

.cg-bb__sprayer-box {
	width: 22px;
	height: 22px;
	border-radius: 7px;
	border: 1.5px solid #cbd9d0;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.cg-bb__sprayer-box .cg-bb-ico {
	width: 15px;
	height: 15px;
}

.cg-bb__sprayer.is-on .cg-bb__sprayer-box {
	background: var(--cg-green);
	border-color: var(--cg-green);
	color: #fff;
}

.cg-bb__sprayer-check:focus-visible + .cg-bb__sprayer-box {
	outline: 2px solid var(--cg-green-mid);
	outline-offset: 2px;
}

.cg-bb__sprayer-media {
	width: 58px;
	height: 58px;
	border-radius: 12px;
	background: linear-gradient(145deg, #eef6f0, #fff);
	border: 1px solid var(--cg-line);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.cg-bb__sprayer-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.cg-bb__sprayer-copy {
	min-width: 0;
}

.cg-bb__sprayer-copy strong {
	display: block;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--cg-ink);
	letter-spacing: -0.01em;
}

.cg-bb__sprayer-copy span {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	line-height: 1.32;
	color: var(--cg-muted);
}

.cg-bb__sprayer-price {
	text-align: right;
	white-space: nowrap;
}

.cg-bb__sprayer-price strong {
	display: block;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 850;
	color: var(--cg-ink);
	letter-spacing: -0.02em;
}

.cg-bb__sprayer-price s {
	display: block;
	margin-top: 2px;
	font-size: 12.5px;
	color: #9aa8a1;
}

/* ------------------------------------------------------------------ cart */

.cg-bb__cart {
	margin-top: 14px;
}

.cg-bb__cart form.cart {
	margin: 0;
	padding: 0;
}

.cg-bb__cart form.cart::before,
.cg-bb__cart form.cart::after {
	content: none;
	display: none;
}

/* The native selects stay in the page and keep driving WooCommerce, they are
   just not the control the customer uses. */
.cg-bb__cart table.variations,
.cg-bb__cart .variations,
.cg-bb__cart .variable-items-wrapper,
.cg-bb__cart .reset_variations,
.cg-bb__cart .woocommerce-variation-price,
.cg-bb__cart .woocommerce-variation-availability,
.cg-bb__cart .woocommerce-variation-description {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0 !important;
}

.cg-bb__cart .single_variation_wrap {
	position: relative;
}

/* Flex, not grid, on purpose.
   This container belongs to WooCommerce and the theme, and either can inject
   elements into it at any time (the "View cart" link, wallet buttons, theme
   extras). A grid gives those elements a cell to steal, which pushed the
   quantity box and the button out of line. Flex items just flow, so anything
   unexpected costs nothing and nothing moves. */
.cg-bb__cart .woocommerce-variation-add-to-cart,
.cg-bb__cart form.cart:not(.variations_form) {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 11px;
	width: 100%;
	max-width: 100%;
}

/* Anything not accounted for below sits after the known parts rather than
   before them, and never claims a row of its own. */
.cg-bb__cart .woocommerce-variation-add-to-cart > *,
.cg-bb__cart form.cart:not(.variations_form) > * {
	order: 6;
}

.cg-bb__cart .quantity {
	order: 1;
	flex: 0 0 136px;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: 136px;
	max-width: 136px;
	height: 58px;
	margin: 0 !important;
	padding: 0 4px;
	border: 1.5px solid var(--cg-line);
	border-radius: 14px;
	background: #fff;
	float: none !important;
}

/* Themes that add their own stepper icons inside .quantity: the buy box has its
   own buttons, and these would otherwise squash the input. */
.cg-bb__cart .quantity .quantity-icon,
.cg-bb__cart .quantity .quantity-up,
.cg-bb__cart .quantity .quantity-down,
.cg-bb__cart .quantity .quantity-button,
.cg-bb__cart .quantity .plus,
.cg-bb__cart .quantity .minus {
	display: none !important;
}

.cg-bb__cart .quantity label,
.cg-bb__cart .quantity .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.cg-bb__cart .quantity input.qty {
	-moz-appearance: textfield;
	appearance: textfield;
	width: 100%;
	min-width: 0;
	height: 52px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
	font-family: inherit;
	font-size: 17px;
	font-weight: 750;
	color: var(--cg-ink);
	line-height: 1;
}

.cg-bb__cart .quantity input.qty::-webkit-outer-spin-button,
.cg-bb__cart .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cg-bb__qty-btn {
	appearance: none;
	flex: 0 0 34px;
	width: 34px;
	height: 44px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--cg-green);
	font-family: inherit;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.cg-bb__qty-btn:hover {
	background: var(--cg-green-soft);
}

.cg-bb__cart .single_add_to_cart_button,
.cg-bb__cart .single_add_to_cart_button.added,
.cg-bb__cart .single_add_to_cart_button.button.alt,
.cg-bb__cart .single_add_to_cart_button.button.alt.added {
	/* Held with !important because themes restyle the .added state after an
	   AJAX add, which otherwise leaves white text on a white button. */
	background-color: var(--cg-green) !important;
	background-image: none !important;
	color: #fff !important;
	border: 0 !important;
	opacity: 1 !important;
}

.cg-bb__cart .single_add_to_cart_button::after,
.cg-bb__cart .single_add_to_cart_button::before {
	content: none !important;
}

.cg-bb__cart .single_add_to_cart_button {
	order: 2;
	flex: 1 1 200px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	min-width: 0;
	min-height: 58px;
	margin: 0 !important;
	padding: 14px 22px;
	border: 0;
	border-radius: 14px;
	background: var(--cg-green);
	color: #fff !important;
	font-family: inherit;
	font-size: 17px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-align: center;
	cursor: pointer;
	white-space: normal;
	transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
	box-shadow: 0 10px 24px rgba(31, 83, 64, .18);
}

/* Simple products keep the quantity selector and primary button together.
   Extra WooCommerce or payment rows still take a full line underneath. */
.cg-bb__cart--simple form.cart:not(.variations_form) > .quantity {
	order: 1 !important;
	flex: 0 0 136px !important;
}

.cg-bb__cart--simple form.cart:not(.variations_form) {
	display: flex !important;
	flex-flow: row wrap !important;
	align-items: center !important;
}

.cg-bb__cart--simple form.cart:not(.variations_form) > .single_add_to_cart_button {
	order: 2 !important;
	flex: 1 1 0 !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
}

.cg-bb__cart--simple form.cart:not(.variations_form) > .added_to_cart,
.cg-bb__cart--simple form.cart:not(.variations_form) > .cg-bb__stock,
.cg-bb__cart--simple form.cart:not(.variations_form) > #wc-stripe-payment-request-wrapper,
.cg-bb__cart--simple form.cart:not(.variations_form) > .wc-stripe-payment-request-wrapper,
.cg-bb__cart--simple form.cart:not(.variations_form) > .wcpay-payment-request-wrapper,
.cg-bb__cart--simple form.cart:not(.variations_form) > .ppcp-button-container,
.cg-bb__cart--simple form.cart:not(.variations_form) > .wc-block-components-express-payment {
	flex: 1 0 100% !important;
	width: 100% !important;
}

.cg-bb__cart .single_add_to_cart_button:hover {
	background-color: #18412f !important;
	transform: translateY(-1px);
}

.cg-bb__cart .single_add_to_cart_button.disabled,
.cg-bb__cart .single_add_to_cart_button:disabled,
.cg-bb__cart .single_add_to_cart_button.wc-variation-selection-needed {
	background-color: #9fb3a8 !important;
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

/* Its own margin as well as the button's gap, since a theme can override the
   button's display and lose the gap. */
.cg-bb__btn-price {
	margin-left: 7px;
	font-weight: 800;
	white-space: nowrap;
}

/* "View cart", appended by WooCommerce after an AJAX add. Without an explicit
   order it defaults to 0 and takes the first grid cell, which is what threw the
   quantity box and the button out of line. */
.cg-bb__cart .added_to_cart {
	order: 3;
	flex: 1 0 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 11px 18px;
	border: 1.5px solid var(--cg-green-line);
	border-radius: 13px;
	background: #fff;
	color: var(--cg-green) !important;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none !important;
	transition: border-color .16s ease, background .16s ease;
}

.cg-bb__cart .added_to_cart::after {
	content: "\2192";
	font-weight: 700;
}

.cg-bb__cart .added_to_cart:hover {
	border-color: var(--cg-green);
	background: var(--cg-green-soft);
}

/* Stock line, printed inside the form so it sits above the wallet buttons.
   Two-class selector so it outranks the catch-all order above. */
.cg-bb__cart .cg-bb__stock,
.cg-bb__stock {
	order: 4;
	flex: 1 0 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 2px 0 0;
	font-size: 13.4px;
	line-height: 1.3;
	color: var(--cg-ink-soft);
}

.cg-bb__stock-state {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 800;
	color: #2c6a4f;
}

.cg-bb__stock-state.is-out {
	color: #a33;
}

.cg-bb__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
	display: inline-block;
}

.cg-bb__stock-sep {
	color: #b9c6bf;
}

.cg-bb__stock-ship {
	font-weight: 700;
	color: var(--cg-ink);
}

.cg-bb__stock-count strong {
	font-weight: 800;
	color: var(--cg-warm);
}

/* Express checkout, wherever the gateway puts it. */
.cg-bb__cart #wc-stripe-payment-request-wrapper,
.cg-bb__cart .wc-stripe-payment-request-wrapper,
.cg-bb__cart #wc-stripe-payment-request-button-separator,
.cg-bb__cart .wc-stripe-payment-request-button-separator,
.cg-bb__cart .wcpay-payment-request-wrapper,
.cg-bb__cart #wcpay-payment-request-wrapper,
.cg-bb__cart .wcpay-express-checkout-wrapper,
.cg-bb__cart .ppcp-button-container,
.cg-bb__cart .wc-block-components-express-payment {
	order: 5;
	flex: 1 0 100%;
	width: 100%;
	max-width: 100%;
	margin: 6px 0 0 !important;
	clear: none;
}

.cg-bb__cart--no-express #wc-stripe-payment-request-wrapper,
.cg-bb__cart--no-express .wc-stripe-payment-request-wrapper,
.cg-bb__cart--no-express #wc-stripe-payment-request-button-separator,
.cg-bb__cart--no-express .wc-stripe-payment-request-button-separator,
.cg-bb__cart--no-express .wcpay-payment-request-wrapper,
.cg-bb__cart--no-express .ppcp-button-container {
	display: none !important;
}

.cg-bb__unavailable {
	margin: 16px 0 0;
	padding: 14px 16px;
	border: 1px solid var(--cg-line);
	border-radius: var(--cg-radius);
	background: #faf9f5;
	font-weight: 600;
}

/* ----------------------------------------------------------------- quote */

.cg-bb__quote {
	margin: 0;
	padding: 15px 17px 16px;
	border: 1px solid var(--cg-line);
	border-radius: var(--cg-radius);
	background: var(--cg-card);
}

.cg-bb__quote blockquote {
	margin: 9px 0 0;
	padding: 0;
	border: 0;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 600;
	color: var(--cg-ink);
	quotes: none;
	background: none;
}

.cg-bb__quote figcaption {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 11px;
	font-size: 13.2px;
	line-height: 1.3;
	color: var(--cg-muted);
}

.cg-bb__quote-avatar {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 999px;
	background: var(--cg-green-soft);
	color: #3a6450;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.cg-bb__quote-meta strong {
	font-weight: 800;
	color: var(--cg-ink);
}

.cg-bb__quote-verified {
	color: var(--cg-green-mid);
	font-weight: 700;
}

/* ----------------------------------------------------------------- trust */

.cg-bb__trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 15px 17px;
	border-radius: var(--cg-radius);
	background: var(--cg-green-soft);
	border: 1px solid var(--cg-green-line);
}

.cg-bb__trust-item {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.cg-bb__trust-item .cg-bb-ico {
	width: 24px;
	height: 24px;
	color: #3a6450;
}

.cg-bb__trust-australia {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
	/* Normalise any source colour to the trust-row green (#3a6450). */
	filter: brightness(0) saturate(100%) invert(36%) sepia(14%) saturate(1150%) hue-rotate(105deg) brightness(92%) contrast(84%);
}

.cg-bb__trust-item > span {
	min-width: 0;
}

.cg-bb__trust-item strong {
	display: block;
	font-size: 13.4px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--cg-ink);
	letter-spacing: -0.01em;
}

.cg-bb__trust-item strong + span {
	display: block;
	margin-top: 2px;
	font-size: 12.4px;
	line-height: 1.25;
	color: #5f7168;
}

/* ------------------------------------------------------------------- ugc */

.cg-bb__ugc-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 9px;
}

.cg-bb__ugc-all {
	font-size: 13px;
	font-weight: 650;
	color: var(--cg-green-mid);
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
}

.cg-bb__ugc-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 9px;
}

.cg-bb__ugc-video,
.cg-bb__ugc-photo {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: var(--cg-radius-sm);
	overflow: hidden;
	border: 1px solid var(--cg-line);
	background: #eef2ea;
	min-width: 0;
}

.cg-bb__ugc-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cg-bb__ugc-video {
	appearance: none;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 10px;
	background: var(--cg-green);
	border-color: var(--cg-green);
	color: #fff;
	font-family: inherit;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.cg-bb__ugc-video::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 48, 36, .08) 24%, rgba(16, 48, 36, .84) 100%);
	content: "";
	pointer-events: none;
}

.cg-bb__ugc-video:hover .cg-bb__ugc-video-poster,
.cg-bb__ugc-video:focus-visible .cg-bb__ugc-video-poster {
	transform: scale(1.035);
}

.cg-bb__ugc-video:focus-visible {
	outline: 3px solid rgba(58, 100, 80, .35);
	outline-offset: 3px;
}

.cg-bb__ugc-video-poster {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .2s ease;
}

.cg-bb__ugc-play {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.cg-bb__ugc-play .cg-bb-ico {
	width: 15px;
	height: 15px;
}

.cg-bb__ugc-videotext strong {
	display: block;
	font-size: 12.4px;
	line-height: 1.15;
	font-weight: 800;
}

.cg-bb__ugc-videotext {
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .34);
}

.cg-bb__ugc-videotext span {
	display: block;
	margin-top: 2px;
	font-size: 11.4px;
	opacity: .82;
}

/* ---------------------------------------------------------- video modal */

body.cg-bb-modal-open {
	overflow: hidden;
}

.cg-bb__video-modal[hidden] {
	display: none !important;
}

.cg-bb__video-modal {
	--cg-green: #1f5340;
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(8, 20, 15, .84);
	backdrop-filter: blur(5px);
}

.cg-bb__video-dialog {
	position: relative;
	width: min(960px, 100%);
	border-radius: 18px;
	background: #07130e;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .46);
}

.cg-bb__video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 18px;
	background: #000;
}

.cg-bb__video-frame iframe,
.cg-bb__video-frame video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
}

.cg-bb__video-close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin: 0;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, .82);
	border-radius: 999px;
	background: var(--cg-green);
	color: #fff;
	font-family: inherit;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .32);
}

.cg-bb__video-close:hover,
.cg-bb__video-close:focus-visible {
	background: #173e30;
}

@media (max-width: 600px) {
	.cg-bb__video-modal {
		padding: 14px;
	}

	.cg-bb__video-close {
		top: -12px;
		right: -4px;
	}
}

/* ---------------------------------------------------------------- notice */

.cg-bb-notice {
	margin: 12px 0;
	padding: 11px 14px;
	border: 1px dashed #c9a227;
	border-radius: 10px;
	background: #fffaf0;
	color: #7a5c0a;
	font-size: 13px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ------------------------------------------------------------------ tabs */

.cg-bb-tabs {
	--cg-ink: #17352a;
	--cg-ink-soft: #41544b;
	--cg-muted: #6b7d74;
	--cg-green: #1f5340;
	--cg-line: #e3ece6;
	--cg-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	margin: 22px 0 0;
	border: 1px solid var(--cg-line);
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
	font-family: var(--cg-sans);
	color: var(--cg-ink-soft);
}

.cg-bb-tabs__row + .cg-bb-tabs__row {
	border-top: 1px solid var(--cg-line);
}

.cg-bb-tabs__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 800;
	color: var(--cg-green);
	letter-spacing: -0.01em;
}

.cg-bb-tabs__head::-webkit-details-marker,
.cg-bb-tabs__head::marker {
	display: none;
	content: none;
}

.cg-bb-tabs__sign {
	position: relative;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.cg-bb-tabs__sign::before,
.cg-bb-tabs__sign::after {
	content: "";
	position: absolute;
	background: var(--cg-green);
	border-radius: 2px;
}

.cg-bb-tabs__sign::before {
	inset: 7px 0;
	height: 2px;
}

.cg-bb-tabs__sign::after {
	inset: 0 7px;
	width: 2px;
	transition: opacity .15s ease;
}

.cg-bb-tabs__row[open] .cg-bb-tabs__sign::after {
	opacity: 0;
}

.cg-bb-tabs__body {
	padding: 0 20px 20px;
	font-size: 15.2px;
	line-height: 1.55;
}

.cg-bb-tabs__body > *:first-child {
	margin-top: 0;
}

.cg-bb-tabs__body > *:last-child {
	margin-bottom: 0;
}

.cg-bb-tabs__body table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	margin: 12px 0 18px;
	border: 1px solid var(--cg-line);
	border-radius: 13px;
	overflow: hidden;
	font-size: 14px;
}

.cg-bb-tabs__body table th,
.cg-bb-tabs__body table td {
	padding: 11px 12px;
	border: 0;
	border-bottom: 1px solid var(--cg-line);
	text-align: left;
	vertical-align: middle;
	word-break: normal;
	overflow-wrap: anywhere;
}

.cg-bb-tabs__body table th {
	background: #5b8d76;
	color: #fff;
	font-weight: 800;
	font-size: 13.4px;
}

.cg-bb-tabs__body table tbody tr:nth-child(even) td {
	background: #f7fbf6;
}

.cg-bb-tabs__body table tbody tr:last-child td {
	border-bottom: 0;
}

.cg-bb-faq__item + .cg-bb-faq__item {
	margin-top: 14px;
}

.cg-bb-faq__q {
	display: block;
	font-size: 15px;
	font-weight: 800;
	color: var(--cg-ink);
}

.cg-bb-faq__a {
	margin: 4px 0 0;
}

/* Answers take HTML, so lists, tables and links need to sit properly. */
.cg-bb-faq__a > *:first-child {
	margin-top: 0;
}

.cg-bb-faq__a > *:last-child {
	margin-bottom: 0;
}

.cg-bb-faq__a p {
	margin: 0 0 8px;
}

.cg-bb-faq__a ul,
.cg-bb-faq__a ol {
	margin: 6px 0 8px;
	padding-left: 20px;
}

.cg-bb-faq__a ul {
	list-style: disc;
}

.cg-bb-faq__a ol {
	list-style: decimal;
}

.cg-bb-faq__a li {
	margin: 0 0 4px;
	padding: 0;
	list-style: inherit;
}

.cg-bb-faq__a li::marker {
	color: var(--cg-green-mid, #5b8d76);
}

.cg-bb-faq__a a {
	color: var(--cg-green, #1f5340);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cg-bb-faq__a strong,
.cg-bb-faq__a b {
	font-weight: 800;
	color: var(--cg-ink, #17352a);
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1024px) {
	.cg-bb__cards {
		gap: 10px;
	}

	.cg-bb__card {
		padding: 17px 42px 15px 14px;
	}

	.cg-bb__card-size {
		font-size: 24px;
	}
}

@media (max-width: 782px) {
	.cg-bb > * + * {
		margin-top: 18px;
	}

	.cg-bb__kit-grid,
	.cg-bb__benefits {
		grid-template-columns: minmax(0, 1fr);
	}

	.cg-bb__trust {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 7px;
		padding: 13px 10px;
	}

	.cg-bb__trust-item {
		grid-template-columns: 20px minmax(0, 1fr);
		align-items: start;
		gap: 6px;
	}

	.cg-bb__trust-item .cg-bb-ico,
	.cg-bb__trust-australia {
		width: 20px;
		height: 20px;
	}

	.cg-bb__trust-item strong {
		font-size: 11.5px;
		line-height: 1.15;
	}

	.cg-bb__trust-item strong + span {
		margin-top: 2px;
		font-size: 10.5px;
		line-height: 1.2;
	}
}

@media (max-width: 600px) {
	.cg-bb__rating {
		gap: 6px;
	}

	.cg-bb__stars {
		gap: 1px;
	}

	.cg-bb__star {
		width: 15px;
		height: 15px;
	}

	.cg-bb__rating-num,
	.cg-bb__rating-link {
		font-size: 13px;
	}

	.cg-bb__title {
		font-size: clamp(27px, 8vw, 34px);
	}

	/* Explicit sizes rather than a fraction of the title: on a phone the title
	   is already smaller, so an em-based sub line shrinks twice over and ends up
	   barely readable. */
	.cg-bb__title-sub {
		margin-top: 7px;
		font-size: 16px;
		line-height: 1.22;
	}

	.cg-bb__title-micro {
		margin-top: 5px;
		font-size: 14.5px;
		line-height: 1.28;
	}

	.cg-bb__price {
		gap: 8px 10px;
		padding-bottom: 15px;
	}

	.cg-bb__price-now {
		font-size: 26px;
	}

	.cg-bb__price-was {
		font-size: 18px;
	}

	.cg-bb__cards,
	.cg-bb--cards-2 .cg-bb__cards,
	.cg-bb--cards-4 .cg-bb__cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 9px;
	}

	/* One row per size on a phone: size and what it makes on the left,
	   price and cost per litre on the right. */
	.cg-bb__card {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: start;
		column-gap: 12px;
		row-gap: 2px;
		margin-top: 13px;
		padding: 15px 44px 14px 15px;
	}

	.cg-bb__card-size {
		grid-column: 1;
		grid-row: 1;
		font-size: 21px;
	}

	.cg-bb__card-headline {
		grid-column: 1;
		grid-row: 2;
		margin-top: 1px;
	}

	.cg-bb__card-prices {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		margin-top: 0;
	}

	.cg-bb__card-per {
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
		text-align: right;
		margin-top: 1px;
	}

	.cg-bb__card-note,
	.cg-bb__card-status {
		grid-column: 1 / -1;
	}

	.cg-bb__card-note {
		margin-top: 7px;
	}

	.cg-bb__calc-fields {
		grid-template-columns: minmax(0, 1fr);
	}

	.cg-bb__sprayer-label {
		grid-template-columns: 22px 48px minmax(0, 1fr);
		gap: 11px;
		padding: 12px;
	}

	.cg-bb__sprayer-media {
		width: 48px;
		height: 48px;
	}

	.cg-bb__sprayer-price {
		grid-column: 2 / -1;
		display: flex;
		align-items: baseline;
		gap: 8px;
		text-align: left;
	}

	.cg-bb__sprayer-price s {
		margin-top: 0;
	}

	.cg-bb__cart .woocommerce-variation-add-to-cart,
	.cg-bb__cart form.cart:not(.variations_form) {
		gap: 9px;
	}

	.cg-bb__cart .quantity {
		flex: 0 0 106px;
		width: 106px;
		max-width: 106px;
		height: 54px;
		border-radius: 13px;
	}

	.cg-bb__cart--simple form.cart:not(.variations_form) > .quantity {
		flex-basis: 106px !important;
		width: 106px !important;
		max-width: 106px !important;
	}

	.cg-bb__cart .single_add_to_cart_button {
		flex: 1 1 150px;
		min-height: 54px;
		font-size: 15.5px;
		padding: 13px 14px;
		border-radius: 13px;
	}

	.cg-bb__ugc-strip {
		grid-auto-flow: column;
		grid-auto-columns: 38%;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
	}

	.cg-bb__ugc-video,
	.cg-bb__ugc-photo {
		scroll-snap-align: start;
	}

	.cg-bb-tabs__head {
		padding: 15px 16px;
		font-size: 15.5px;
	}

	.cg-bb-tabs__body {
		padding: 0 16px 16px;
		font-size: 14.6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cg-bb * {
		transition: none !important;
	}
}

/* ------------------------------------------------------------------ *
 * Compare kits (bundle products) — 1.1.7
 * ------------------------------------------------------------------ */
.cg-bb__kits {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}
.cg-bb__kits-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	min-width: 0;
}
.cg-bb__kits-strip--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cg-bb__kits-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	min-width: 0;
	padding: 12px 14px 13px;
	border: 1.5px solid var(--cg-line);
	border-radius: var(--cg-radius-sm);
	background: var(--cg-card);
	color: var(--cg-ink-soft);
	text-decoration: none !important;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
a.cg-bb__kits-card:hover {
	border-color: var(--cg-green-mid);
	box-shadow: 0 8px 20px rgba(23, 53, 42, .07);
	transform: translateY(-1px);
}
a.cg-bb__kits-card:focus-visible {
	outline: 2px solid var(--cg-green);
	outline-offset: 2px;
}
.cg-bb__kits-card.is-current {
	border-color: var(--cg-green);
	box-shadow: 0 0 0 1px var(--cg-green);
	background: linear-gradient(180deg, #fff 0%, var(--cg-green-soft) 100%);
}
.cg-bb__kits-card.is-out {
	opacity: .7;
}
.cg-bb__kits-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	min-height: 22px;
	margin-bottom: 4px;
}
.cg-bb__kits-img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 8px;
	background: var(--cg-green-soft);
	flex-shrink: 0;
}
.cg-bb__kits-tag {
	margin-left: auto;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--cg-green);
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .01em;
}
.cg-bb__kits-name {
	color: var(--cg-ink);
	font-size: 14.5px;
	font-weight: 800;
	line-height: 1.25;
}
.cg-bb__kits-price {
	color: var(--cg-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}
.cg-bb__kits-price del {
	margin-right: 4px;
	color: var(--cg-muted);
	font-size: 12.5px;
	font-weight: 600;
}
.cg-bb__kits-price ins {
	text-decoration: none;
}
.cg-bb__kits-for {
	color: var(--cg-green);
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.35;
}
.cg-bb__kits-contents {
	color: var(--cg-muted);
	font-size: 12px;
	line-height: 1.4;
}
.cg-bb__kits-link {
	margin-top: auto;
	padding-top: 6px;
	color: var(--cg-green);
	font-size: 12.5px;
	font-weight: 700;
}
.cg-bb__kits-status {
	margin-top: auto;
	padding-top: 6px;
	color: var(--cg-warm);
	font-size: 12px;
	font-weight: 700;
}
.cg-bb--kits-only {
	margin: 0 0 20px;
}

/* Phones: one swipeable row, next card peeking, no scrollbar. */
@media (max-width: 600px) {
	.cg-bb__kits-strip,
	.cg-bb__kits-strip--3 {
		display: flex;
		gap: 10px;
		margin: 0 -16px;
		padding: 2px 16px 6px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scroll-padding: 0 16px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.cg-bb__kits-strip::-webkit-scrollbar {
		display: none;
	}
	.cg-bb__kits-card {
		flex: 0 0 68%;
		max-width: 240px;
		scroll-snap-align: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cg-bb__kits-card {
		transition: none;
	}
	a.cg-bb__kits-card:hover {
		transform: none;
	}
}

/* Compare kits: compact style (default from 1.1.8) — one slim row. */
.cg-bb__kits--compact .cg-bb__kits-strip,
.cg-bb__kits--compact .cg-bb__kits-strip--3 {
	grid-template-columns: repeat(var(--cg-kits, 4), minmax(0, 1fr));
	gap: 8px;
}
.cg-bb__kits--compact .cg-bb__kits-strip--2 { --cg-kits: 2; }
.cg-bb__kits--compact .cg-bb__kits-strip--3 { --cg-kits: 3; }
.cg-bb__kits--compact .cg-bb__kits-card {
	gap: 2px;
	padding: 10px 12px;
	border-width: 1px;
}
.cg-bb__kits--compact .cg-bb__kits-card.is-current {
	border-width: 1.5px;
	box-shadow: none;
}
.cg-bb__kits--compact .cg-bb__kits-top,
.cg-bb__kits--compact .cg-bb__kits-contents,
.cg-bb__kits--compact .cg-bb__kits-link,
.cg-bb__kits--compact .cg-bb__kits-price del {
	display: none;
}
.cg-bb__kits--compact .cg-bb__kits-name {
	font-size: 13.5px;
	line-height: 1.2;
}
.cg-bb__kits--compact .cg-bb__kits-price {
	font-size: 14px;
}
.cg-bb__kits--compact .cg-bb__kits-for {
	display: block;
	max-width: 100%;
	overflow: hidden;
	font-size: 11.5px;
	font-weight: 600;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.cg-bb__kits--compact .cg-bb__kits-status {
	padding-top: 2px;
	font-size: 11px;
}
@media (max-width: 600px) {
	.cg-bb__kits--compact .cg-bb__kits-card {
		flex: 0 0 40%;
		max-width: 160px;
	}
}
