:root {
	--bf-ink: #08090b;
	--bf-charcoal: #101217;
	--bf-panel: #17131d;
	--bf-panel-2: #211423;
	--bf-text: #f7f1e8;
	--bf-muted: rgba(247, 241, 232, 0.68);
	--bf-flame: #ff5a1f;
	--bf-flame-dark: #e33f10;
	--bf-red: #e32636;
	--bf-gold: #ffc247;
	--bf-berry: #ff3f7d;
	--bf-tutti: #ff941f;
	--bf-violet: #8a4dff;
	--bf-blue: #20b8ff;
	--bf-line: rgba(255, 255, 255, 0.15);
	--bf-signal-gradient: linear-gradient(105deg, var(--bf-flame) 0%, var(--bf-flame) 74%, #ff4a18 81%, #ff2554 92%, var(--bf-berry) 100%);
	--bf-signal-sheen: linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, transparent 22%, transparent 78%, rgba(255, 63, 125, 0.22) 100%);
	--bf-signal-panel-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -16px 32px rgba(112, 15, 48, 0.14), inset 0 0 24px rgba(255, 90, 31, 0.18);
	--bf-signal-bar-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 0 22px rgba(255, 90, 31, 0.22), inset 0 0 14px rgba(255, 63, 125, 0.18);
	--bf-shell: min(1240px, calc(100% - 48px));
	--bf-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
	--bf-body: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body.bf-preview {
	background: var(--bf-ink);
	margin: 0;
}

.bf-header,
.bf-header * {
	box-sizing: border-box;
}

.bf-header {
	background: var(--bf-ink);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: #ffffff;
	font-family: var(--bf-body);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.admin-bar .bf-header {
	top: 32px;
}

.bf-header__inner {
	align-items: center;
	display: grid;
	gap: 26px;
	grid-template-columns: 190px minmax(0, 1fr) auto;
	min-height: 72px;
}

.bf-header__brand {
	display: inline-flex;
}

.bf-header__brand img {
	height: auto;
	width: 168px;
}

.bf-header__nav {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: center;
}

.bf-header__nav a,
.bf-header__account,
.bf-header__cart-fallback {
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.bf-header__nav a {
	align-items: center;
	display: inline-flex;
	min-height: 44px;
	position: relative;
}

.bf-header__nav a::after {
	background: var(--bf-flame);
	bottom: 5px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.bf-header__nav a:hover,
.bf-header__nav a:focus-visible,
.bf-header__nav a[aria-current="page"] {
	color: var(--bf-flame);
}

.bf-header__nav a:hover::after,
.bf-header__nav a:focus-visible::after,
.bf-header__nav a[aria-current="page"]::after {
	transform: scaleX(1);
}

.bf-header__actions {
	align-items: center;
	display: flex;
	gap: 14px;
}

.bf-header__account-menu {
	position: relative;
}

.bf-header__account-dropdown {
	background: #0b0c10;
	border: 1px solid rgba(247, 241, 232, 0.18);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
	display: grid;
	min-width: 210px;
	opacity: 0;
	padding: 8px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	transform: translateY(-4px);
	transition: opacity 160ms ease, transform 160ms ease;
	z-index: 80;
}

.bf-header__account-dropdown::before {
	content: "";
	height: 9px;
	left: 0;
	position: absolute;
	right: 0;
	top: -9px;
}

.bf-header__account-menu:hover .bf-header__account-dropdown,
.bf-header__account-menu:focus-within .bf-header__account-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.bf-header__account-dropdown a {
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 800;
	padding: 10px 12px;
	text-decoration: none;
}

.bf-header__account-dropdown a:hover,
.bf-header__account-dropdown a:focus-visible {
	background: rgba(255, 90, 31, 0.14);
	color: var(--bf-flame);
}

.bf-header__logout--mobile {
	display: none !important;
}

.bf-language-switcher {
	font-family: var(--bf-body);
	position: relative;
}

.bf-language-switcher summary {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 4px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 900;
	gap: 7px;
	justify-content: center;
	letter-spacing: 0.06em;
	list-style: none;
	min-height: 40px;
	min-width: 44px;
	padding: 9px 10px;
	text-transform: uppercase;
}

.bf-language-switcher summary::-webkit-details-marker {
	display: none;
}

.bf-language-switcher summary:hover,
.bf-language-switcher summary:focus-visible,
.bf-language-switcher[open] summary {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--bf-ink);
}

.bf-language-switcher__menu {
	background: #0d0e12;
	border: 1px solid rgba(247, 241, 232, 0.18);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
	display: grid;
	max-height: calc(100svh - 96px);
	min-width: 190px;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 8px;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 1100;
}

.bf-language-switcher__menu a {
	align-items: center;
	border: 0;
	color: rgba(247, 241, 232, 0.76);
	display: grid;
	font-size: 0.78rem;
	gap: 9px;
	grid-template-columns: 28px minmax(0, 1fr);
	min-height: 38px;
	padding: 7px 9px;
	text-decoration: none;
	text-transform: none;
}

.bf-language-switcher__menu a:hover,
.bf-language-switcher__menu a:focus-visible,
.bf-language-switcher__menu a[aria-current="true"] {
	background: rgba(255, 90, 31, 0.1);
	color: #ffffff;
}

.bf-language-switcher__flag {
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 2px;
	display: inline-flex;
	height: 16px;
	overflow: hidden;
	width: 24px;
}

.bf-language-switcher__flag img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bf-language-switcher__menu a small {
	font-size: inherit;
}

.bf-language-switcher--mobile {
	display: none;
}

.bf-currency-switcher {
	align-items: center;
	display: flex;
	font-family: var(--bf-body);
}

.bf-currency-switcher--mobile {
	display: none;
}

/* Keep the assistant available without covering product names or prices. */
.baitfever-store-surface .bf-chat:not(.is-open),
.single-sc_product .bf-chat:not(.is-open) {
	bottom: 8px !important;
}

.baitfever-store-surface .bf-chat:not(.is-open) .bf-chat__toggle-avatar,
.single-sc_product .bf-chat:not(.is-open) .bf-chat__toggle-avatar {
	height: 72px !important;
	left: -24px !important;
	width: 72px !important;
}

.bf-header__account,
.bf-header__cart-fallback {
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
	min-height: 40px;
	padding: 10px 14px;
}

.bf-header__account:hover,
.bf-header__account:focus-visible,
.bf-header__account[aria-current="page"],
.bf-header__cart-fallback:hover,
.bf-header__cart-fallback:focus-visible {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--bf-ink);
}

.bf-header__account--mobile {
	display: none !important;
}

.bf-header__cart {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
}

.bf-header__cart .wp-block-surecart-cart-menu-icon-button,
.bf-header__cart sc-cart-menu-icon {
	margin: 0;
}

.bf-header__cart button,
.bf-header__cart .wp-block-surecart-cart-menu-icon-button {
	color: #ffffff;
}

.bf-header__toggle {
	align-items: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	cursor: pointer;
	display: none;
	flex-direction: column;
	gap: 5px;
	height: 44px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.bf-header__toggle span {
	background: #ffffff;
	display: block;
	height: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
	width: 20px;
}

/* Header actions use one consistent control treatment. */
.bf-header__actions {
	gap: 10px;
}

.bf-header__actions .bf-language-switcher summary,
.bf-header__actions .bf-currency-switcher,
.bf-header__actions .bf-header__account,
.bf-header__actions .bf-header__cart > a,
.bf-header__actions .bf-header__cart > button {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 4px;
	box-sizing: border-box;
	min-height: 42px;
}

.bf-header__actions .bf-currency-switcher {
	padding-inline: 10px;
}

.bf-header__actions .bf-currency-switcher .wp-block-surecart-currency-switcher__trigger {
	align-items: center;
	display: flex;
	min-height: 40px;
}

.bf-header__actions .bf-currency-switcher [class*="currency-switcher__chevron"],
.bf-header__actions .bf-currency-switcher [class*="currency-switcher__caret"],
.bf-header__actions .bf-currency-switcher .wp-block-surecart-currency-switcher__trigger > svg:last-child {
	display: none !important;
}

.bf-header__actions .bf-header__account {
	min-height: 42px;
}

.bf-header__account svg {
	color: #ffffff !important;
	display: block;
	height: 19px;
	stroke: currentColor !important;
	width: 19px;
}

.bf-header__account--desktop {
	align-items: center;
	min-width: 42px;
	padding: 10px;
}

.bf-header__account--desktop > span {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bf-header__account--mobile {
	align-items: center;
	gap: 10px;
}

.bf-header__actions .bf-header__cart > a,
.bf-header__actions .bf-header__cart > button {
	align-items: center;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	min-width: 42px;
	padding: 8px;
	width: 42px;
}

.bf-header__actions .bf-language-switcher summary:hover,
.bf-header__actions .bf-language-switcher summary:focus-visible,
.bf-header__actions .bf-language-switcher[open] summary,
.bf-header__actions .bf-currency-switcher:hover,
.bf-header__actions .bf-currency-switcher:focus-within,
.bf-header__actions .bf-header__account:hover,
.bf-header__actions .bf-header__account:focus-visible,
.bf-header__actions .bf-header__account[aria-current="page"],
.bf-header__actions .bf-header__cart > a:hover,
.bf-header__actions .bf-header__cart > a:focus-visible,
.bf-header__actions .bf-header__cart > button:hover,
.bf-header__actions .bf-header__cart > button:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 90, 31, 0.72);
	color: #ffffff;
}

.bf-header__actions .bf-language-switcher__flag {
	border: 0;
}

/* WordPress' logged-in styles must not add text underlines to the storefront header. */
body.logged-in .bf-header a,
body.admin-bar .bf-header a,
body.logged-in .bf-header__account-dropdown a,
body.admin-bar .bf-header__account-dropdown a {
	text-decoration: none !important;
}

.bf-header__account-dropdown-link {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 18px minmax(0, 1fr);
	text-decoration: none !important;
}

.bf-header__account-dropdown-link svg {
	display: block;
	height: 18px;
	width: 18px;
}

/* Language, currency and account menus share one desktop interaction system. */
.bf-header__actions .bf-language-switcher--desktop > .bf-language-switcher__menu,
.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__panel,
.bf-header__actions .bf-header__account-dropdown {
	background: #0d0e12 !important;
	border: 1px solid rgba(247, 241, 232, 0.18) !important;
	border-radius: 6px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45) !important;
	box-sizing: border-box;
	min-width: 220px;
	padding: 8px !important;
	z-index: 1100;
}

.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__panel {
	margin-top: 8px !important;
	right: 0;
	top: 100%;
}

.bf-header__actions .bf-language-switcher--desktop .bf-language-switcher__menu a,
.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__menu-item,
.bf-header__actions .bf-header__account-dropdown a {
	border-radius: 3px;
	color: rgba(247, 241, 232, 0.84) !important;
	font-family: var(--bf-body) !important;
	font-size: 0.78rem !important;
	font-weight: 800 !important;
	min-height: 40px;
}

.bf-header__actions .bf-language-switcher--desktop .bf-language-switcher__menu a,
.bf-header__actions .bf-header__account-dropdown a {
	padding: 9px 10px;
}

.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__menu-item {
	padding: 9px 40px 9px 10px !important;
}

.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__menu-item__label {
	color: inherit !important;
	font-size: inherit !important;
}

.bf-header__actions .bf-language-switcher--desktop .bf-language-switcher__menu a:hover,
.bf-header__actions .bf-language-switcher--desktop .bf-language-switcher__menu a:focus-visible,
.bf-header__actions .bf-language-switcher--desktop .bf-language-switcher__menu a[aria-current="true"],
.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__menu-item:hover,
.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__menu-item:focus,
.bf-header__actions .bf-currency-switcher--desktop .sc-dropdown__menu-item.sc-focused,
.bf-header__actions .bf-header__account-dropdown a:hover,
.bf-header__actions .bf-header__account-dropdown a:focus-visible {
	background: rgba(255, 90, 31, 0.14) !important;
	color: #ffffff !important;
}

.bf-header__toggle[aria-expanded="true"] span:first-child {
	transform: translateY(7px) rotate(45deg);
}

.bf-header__toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.bf-header__toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-7px) rotate(-45deg);
}

.baitfever-front-page .site-main,
.baitfever-front-page .ct-container-full {
	padding: 0;
}

.bf-site,
.bf-site * {
	box-sizing: border-box;
}

.bf-site {
	background: var(--bf-ink);
	color: var(--bf-text);
	font-family: var(--bf-body);
	font-size: 17px;
	line-height: 1.65;
	overflow: hidden;
}

.bf-site img {
	display: block;
	max-width: 100%;
}

.bf-site h1,
.bf-site h2,
.bf-site h3,
.bf-site p,
.bf-site figure,
.bf-site ul,
.bf-site ol {
	margin-top: 0;
}

.bf-site h1,
.bf-site h2,
.bf-site h3 {
	font-family: var(--bf-display);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.02;
}

.bf-site h1 {
	color: var(--bf-flame);
	font-size: 5.9rem;
	margin-bottom: 14px;
	overflow-wrap: normal;
	text-transform: uppercase;
	white-space: nowrap;
	word-break: keep-all;
}

.bf-site h2 {
	font-size: 4rem;
	margin-bottom: 20px;
}

.bf-site h3 {
	font-size: 2rem;
	margin-bottom: 14px;
}

.bf-shell {
	margin-inline: auto;
	width: var(--bf-shell);
}

.bf-kicker {
	color: var(--bf-flame);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.bf-kicker--berry {
	color: var(--bf-berry);
}

.bf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.bf-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 4px;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 50px;
	padding: 14px 20px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bf-button:hover,
.bf-button:focus-visible {
	transform: translateY(-2px);
}

.bf-button--primary {
	background: var(--bf-flame);
	color: #ffffff;
}

.bf-button--primary:hover,
.bf-button--primary:focus-visible {
	background: #ffffff;
	color: var(--bf-ink);
}

.bf-button--quiet {
	border-color: rgba(255, 255, 255, 0.56);
	color: #ffffff;
}

.bf-button--quiet:hover,
.bf-button--quiet:focus-visible {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--bf-ink);
}

.bf-button--dark {
	background: var(--bf-text);
	color: var(--bf-ink);
}

.bf-button--dark:hover,
.bf-button--dark:focus-visible {
	background: var(--bf-berry);
	color: var(--bf-ink);
}

.bf-button--berry {
	background: var(--bf-berry);
	border-color: var(--bf-berry);
	color: #ffffff;
}

.bf-button--berry:hover,
.bf-button--berry:focus-visible {
	background: var(--bf-text);
	border-color: var(--bf-text);
	color: var(--bf-ink);
}

.bf-hero {
	background: var(--bf-ink);
	color: #ffffff;
	min-height: min(780px, calc(100svh - 72px));
	position: relative;
}

.bf-hero__background,
.bf-hero__shade {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.bf-hero__background {
	object-fit: cover;
	object-position: center;
	opacity: 0.64;
}

.bf-hero__shade {
	background: rgba(5, 7, 6, 0.54);
}

.bf-hero__inner {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
	min-height: inherit;
	padding-block: 72px;
	position: relative;
	z-index: 1;
}

.bf-hero__copy {
	max-width: 680px;
	position: relative;
	z-index: 3;
}

.bf-hero__promise {
	color: #ffffff;
	font-family: var(--bf-display);
	font-size: 2.35rem;
	font-weight: 900;
	line-height: 1.06;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.bf-hero__body {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.08rem;
	margin-bottom: 0;
	max-width: 620px;
}

.bf-hero__products {
	align-self: end;
	height: 620px;
	position: relative;
}

.bf-pack {
	filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.72));
	margin: 0;
	position: absolute;
	width: min(238px, 48%);
}

.bf-pack img {
	aspect-ratio: 2 / 3;
	filter: drop-shadow(0 -1px 1px rgba(255, 255, 255, 0.28));
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.bf-pack--garlic {
	bottom: 34px;
	left: 0;
	transform: rotate(-5deg) scale(0.94);
	z-index: 1;
}

.bf-pack--fruit {
	bottom: 24px;
	right: 0;
	transform: rotate(5deg) scale(0.94);
	z-index: 2;
}

.bf-pack--pitaya {
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%) scale(1.04);
	z-index: 3;
}

.bf-proof {
	background:
		var(--bf-signal-sheen),
		var(--bf-signal-gradient);
	box-shadow: var(--bf-signal-panel-shadow);
	color: #ffffff;
}

.bf-proof__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bf-proof__grid > div {
	border-right: 1px solid rgba(255, 255, 255, 0.28);
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-height: 108px;
	padding: 26px 30px;
}

.bf-proof__grid > div:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.bf-proof strong {
	font-family: var(--bf-display);
	font-size: 1.04rem;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bf-proof span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
}

.bf-section {
	padding-block: 112px;
}

.bf-section-heading {
	align-items: end;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	margin-bottom: 50px;
}

.bf-section-heading h2 {
	margin-bottom: 0;
	max-width: 820px;
}

.bf-section-heading > p {
	color: var(--bf-muted);
	margin-bottom: 4px;
}

.bf-product-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bf-product-card {
	background: var(--bf-panel);
	border: 1px solid var(--bf-line);
	border-radius: 6px;
	display: grid;
	grid-template-rows: 340px minmax(0, 1fr);
	min-height: 450px;
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bf-product-card__media {
	background: #0d0e12;
	display: block;
	overflow: hidden;
	padding: 28px 18px;
}

.bf-product-card__media img {
	height: 100%;
	object-fit: contain;
	transition: transform 260ms ease;
	width: 100%;
}

.bf-product-card:hover .bf-product-card__media img {
	transform: scale(1.025);
}

.bf-product-card:hover,
.bf-product-card:focus-within {
	transform: translateY(-4px);
}

.bf-product-card__copy {
	align-self: center;
	padding: 38px;
}

.bf-product-card--pitaya .bf-product-card__profile,
.bf-product-card--pitaya .bf-text-link {
	color: #ff3f7d;
}

.bf-product-card--pitaya {
	border-top-color: #bd255d;
}

.bf-product-card--pitaya:hover,
.bf-product-card--pitaya:focus-within {
	border-color: rgba(189, 37, 93, 0.76);
	box-shadow: 0 20px 50px rgba(189, 37, 93, 0.2);
}

.bf-product-card__copy > p:not(.bf-product-card__profile) {
	color: var(--bf-muted);
}

.bf-product-card__profile {
	font-size: 0.74rem;
	font-weight: 850;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.bf-product-card--garlic .bf-product-card__profile,
.bf-product-card--garlic .bf-text-link {
	color: var(--bf-flame-dark);
}

.bf-product-card--garlic {
	border-top-color: var(--bf-flame);
}

.bf-product-card--garlic:hover,
.bf-product-card--garlic:focus-within {
	border-color: rgba(255, 90, 31, 0.72);
	box-shadow: 0 20px 50px rgba(255, 90, 31, 0.18);
}

.bf-product-card--fruit .bf-product-card__profile,
.bf-product-card--fruit .bf-text-link {
	color: var(--bf-tutti);
}

.bf-product-card--fruit {
	border-top-color: var(--bf-tutti);
}

.bf-product-card--fruit:hover,
.bf-product-card--fruit:focus-within {
	border-color: rgba(255, 148, 31, 0.72);
	box-shadow: 0 20px 50px rgba(255, 148, 31, 0.2);
}

.bf-text-link {
	border-bottom: 2px solid currentColor;
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 800;
	padding-bottom: 3px;
	text-decoration: none;
}

.bf-instinct {
	background: #100f15;
	isolation: isolate;
	position: relative;
}

.bf-instinct::before {
	background-image: url("../images/duo-boilies.png");
	background-position: center;
	background-size: cover;
	content: "";
	inset: 0;
	opacity: 0.075;
	position: absolute;
	z-index: -1;
}

.bf-instinct__grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.bf-instinct__media {
	position: relative;
}

.bf-instinct__media img {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.bf-instinct__media span {
	background: #0b0c10;
	border-left: 4px solid var(--bf-flame);
	border-right: 4px solid var(--bf-berry);
	bottom: 22px;
	color: #ffffff;
	font-family: var(--bf-display);
	font-size: 1.1rem;
	left: -18px;
	padding: 15px 20px;
	position: absolute;
	text-transform: uppercase;
}

.bf-instinct__copy > p:not(.bf-kicker) {
	color: var(--bf-muted);
	font-size: 1.05rem;
}

.bf-checklist {
	list-style: none;
	margin: 30px 0 34px;
	padding: 0;
}

.bf-checklist li {
	border-top: 1px solid var(--bf-line);
	font-weight: 700;
	padding: 14px 0 14px 30px;
	position: relative;
}

.bf-checklist li:last-child {
	border-bottom: 1px solid var(--bf-line);
}

.bf-checklist li::before {
	background: var(--bf-berry);
	border-radius: 50%;
	content: "";
	height: 9px;
	left: 2px;
	position: absolute;
	top: 23px;
	width: 9px;
}

.bf-worlds {
	background: var(--bf-ink);
	color: #ffffff;
}

.bf-section-heading--light > p {
	color: rgba(255, 255, 255, 0.62);
}

.bf-world-list {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	list-style: none;
	margin: 0;
	padding: 0;
}

.bf-world-list li {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: grid;
	gap: 24px;
	grid-template-columns: 100px minmax(0, 1fr) minmax(190px, 0.5fr) 130px;
	min-height: 92px;
	padding-block: 18px;
	transition: background-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.bf-world-list .bf-world--active:hover {
	background: var(--bf-panel-2);
	padding-inline: 18px;
}

.bf-world-list span {
	color: var(--bf-flame);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.bf-world-list .bf-world--active span {
	color: var(--bf-berry);
}

.bf-world-list li:nth-child(2) span {
	color: var(--bf-gold);
}

.bf-world-list li:nth-child(3) span {
	color: var(--bf-blue);
}

.bf-world-list li:nth-child(4) span {
	color: var(--bf-violet);
}

.bf-world-list li:nth-child(5) span {
	color: #18d1c0;
}

.bf-world-list li:nth-child(6) span {
	color: var(--bf-berry);
}

.bf-world-list .bf-world--active:hover span {
	color: var(--bf-gold);
}

.bf-world-list strong {
	font-family: var(--bf-display);
	font-size: 1.55rem;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bf-world-list em {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.9rem;
	font-style: normal;
}

.bf-world-list .bf-world--active:hover em {
	color: #ffffff;
}

.bf-world-list b {
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 3px;
	font-size: 0.68rem;
	font-weight: 800;
	justify-self: end;
	padding: 6px 9px;
	text-transform: uppercase;
}

.bf-world--future {
	position: relative;
}

.bf-world--future strong,
.bf-world--future em {
	display: flex;
	filter: blur(6px);
	opacity: 0.24;
	user-select: none;
}

.bf-world--future strong {
	gap: 10px;
}

.bf-world--future i {
	background: rgba(255, 255, 255, 0.78);
	border-radius: 2px;
	display: block;
	height: 15px;
	width: 118px;
}

.bf-world--future strong i:last-child {
	width: 82px;
}

.bf-world--future em i {
	height: 9px;
	width: 168px;
}

.bf-world--future:nth-child(3) strong i:first-child,
.bf-world--future:nth-child(5) strong i:last-child {
	width: 148px;
}

.bf-world--future b {
	background: #0b0c10;
	color: rgba(255, 255, 255, 0.72);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.bf-closing {
	background: #0e0e13;
	color: #ffffff;
	isolation: isolate;
	position: relative;
	text-align: center;
}

.bf-closing::before {
	background-image: url("../images/duo-boilies.png");
	background-position: center 58%;
	background-size: cover;
	content: "";
	inset: 0;
	opacity: 0.06;
	position: absolute;
	z-index: -1;
}

.bf-closing__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.bf-closing h2 {
	max-width: 850px;
}

.bf-closing p:not(.bf-kicker) {
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.bf-closing .bf-kicker {
	color: var(--bf-berry);
}

.bf-has-js .bf-site .bf-section,
.bf-has-js .bf-site .bf-proof {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.bf-has-js .bf-site .bf-is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.bf-site *,
	.bf-site *::before,
	.bf-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 1100px) {
	.bf-site h1 {
		font-size: 5.2rem;
	}

	.bf-hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.7fr);
	}

	.bf-hero__products {
		height: 520px;
	}

	.bf-product-card__copy {
		padding: 28px;
	}
}

@media (max-width: 960px) {
	.bf-header__inner {
		gap: 12px;
		grid-template-columns: minmax(0, 1fr) auto auto;
		position: relative;
	}

	.bf-header__nav {
		align-items: stretch;
		background: #0b0c0f;
		border: 1px solid var(--bf-line);
		border-top: 0;
		display: none;
		flex-direction: column;
		gap: 0;
		left: 0;
		max-height: calc(100svh - 72px);
		overflow-y: auto;
		padding: 12px 18px 18px;
		position: absolute;
		right: 0;
		top: 100%;
	}

	.bf-header__nav.is-open {
		display: flex;
	}

	.bf-header__nav a {
		border-bottom: 1px solid var(--bf-line);
		font-size: 0.86rem;
		min-height: 52px;
		padding-inline: 4px;
	}

	.bf-header__nav a::after {
		bottom: -1px;
	}

	.bf-header__account--desktop {
		display: none;
	}

	.bf-header__account-menu {
		display: none;
	}

	.bf-header__account--mobile {
		display: inline-flex !important;
		justify-content: flex-start;
	}

	.bf-header__logout--mobile {
		display: inline-flex !important;
	}

	.bf-language-switcher--desktop {
		display: none;
	}

	.bf-language-switcher--mobile {
		display: block;
		margin-top: 12px;
	}

	.bf-language-switcher--mobile summary {
		justify-content: flex-start;
		width: 100%;
	}

	.bf-language-switcher--mobile .bf-language-switcher__menu {
		box-shadow: none;
		margin-top: 8px;
		position: static;
		width: 100%;
	}

	.bf-currency-switcher--desktop {
		display: none;
	}

	.bf-currency-switcher--mobile {
		display: flex;
		margin-top: 10px;
	}

	.bf-header__toggle {
		display: inline-flex;
	}

	body.bf-menu-open {
		overflow: hidden;
	}
}

@media (max-width: 900px) {
	:root {
		--bf-shell: min(100% - 32px, 720px);
	}

	.bf-site h1 {
		font-size: clamp(2.4rem, 9vw, 4rem);
		white-space: nowrap;
	}

	.bf-site h2 {
		font-size: 3rem;
	}

	.bf-hero {
		min-height: auto;
	}

	.bf-hero__inner {
		grid-template-columns: 1fr;
		padding-block: 76px 0;
	}

	.bf-hero__copy {
		max-width: 700px;
	}

	.bf-hero__products {
		height: 510px;
		margin: 0 auto;
		max-width: 660px;
		width: 100%;
	}

	.bf-pack {
		width: min(300px, 52%);
	}

	.bf-proof__grid,
	.bf-section-heading,
	.bf-instinct__grid {
		grid-template-columns: 1fr;
	}

	.bf-section-heading,
	.bf-instinct__grid {
		gap: 34px;
	}

	.bf-product-grid {
		grid-template-columns: 1fr;
	}

	.bf-instinct__media {
		max-width: 560px;
	}

}

@media (max-width: 620px) {
	:root {
		--bf-shell: calc(100vw - 32px);
	}

	.bf-site {
		font-size: 16px;
	}

	.bf-shell {
		margin-left: 16px;
		margin-right: auto;
		max-width: calc(100vw - 32px);
		min-width: 0;
	}

	.bf-site h1 {
		font-size: clamp(2.2rem, 10vw, 2.55rem);
		overflow-wrap: normal;
		white-space: nowrap;
	}

	.bf-site h2 {
		font-size: 2.35rem;
	}

	.bf-hero__inner {
		padding-top: 58px;
	}

	.bf-hero__inner,
	.bf-product-card,
	.bf-instinct__grid,
	.bf-world-list li {
		min-width: 0;
	}

	.bf-hero__copy,
	.bf-hero__body,
	.bf-hero__promise {
		max-width: 100%;
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.bf-hero__promise {
		font-size: 1.85rem;
	}

	.bf-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bf-button {
		width: 100%;
	}

	.bf-hero__products {
		height: 360px;
		margin: -112px auto 0;
		max-width: 340px;
		width: 100%;
	}

	.bf-pack {
		width: min(166px, 49%);
	}

	.bf-pack--garlic {
		bottom: 88px;
		left: 6%;
	}

	.bf-pack--fruit {
		bottom: 80px;
		right: 6%;
	}

	.bf-pack--pitaya {
		bottom: 60px;
	}

	.bf-proof__grid > div,
	.bf-proof__grid > div:first-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.34);
		min-height: auto;
		padding: 18px 0;
	}

	.bf-proof__grid > div:first-child {
		border-top: 0;
	}

	.bf-section {
		padding-block: 78px;
	}

	.bf-product-card {
		grid-template-columns: 1fr;
	}

	.bf-product-card__media {
		aspect-ratio: 4 / 3;
	}

	.bf-product-card__media img {
		object-position: center;
	}

	.bf-product-card__copy {
		padding: 28px 24px 32px;
	}

	.bf-instinct__media span {
		bottom: 14px;
		left: 12px;
	}

	.bf-world-list li {
		gap: 8px 16px;
		grid-template-columns: 88px minmax(0, 1fr);
		padding-block: 16px;
	}

	.bf-world-list em {
		grid-column: 2;
	}

	.bf-world-list strong {
		font-size: 1.18rem;
	}

	.bf-world--future b {
		left: auto;
		right: 0;
		transform: translateY(-50%);
	}

	.bf-header__brand img {
		width: 145px;
	}

	.bf-header__inner {
		gap: 8px;
	}

	.bf-header__actions {
		gap: 8px;
	}

	.bf-header__cart-fallback {
		font-size: 0.68rem;
		min-height: 40px;
		padding: 9px 8px;
		white-space: nowrap;
	}
}

@media (max-width: 340px) {
	:root {
		--bf-shell: calc(100vw - 24px);
	}

	.bf-shell {
		margin-left: 12px;
		max-width: calc(100vw - 24px);
	}

	.bf-header__inner {
		gap: 8px;
	}

	.bf-header__brand img {
		width: 126px;
	}

	.bf-header__cart-fallback {
		font-size: 0.64rem;
		min-height: 38px;
		padding: 9px 8px;
	}

	.bf-site h1 {
		font-size: 2.5rem;
	}

	.bf-hero__promise {
		font-size: 1.55rem;
	}

	.bf-hero__body {
		font-size: 0.96rem;
	}

	.bf-hero__products {
		height: 300px;
		margin-top: -64px;
		max-width: 292px;
	}

	.bf-pack {
		width: min(142px, 48%);
	}
}
