/* BaFaCom — marketing + WooCommerce surfaces */

:root {
	--bf-ink: #12202b;
	--bf-ink-soft: #3a4a57;
	--bf-muted: #6b7c89;
	--bf-paper: #f3f6f4;
	--bf-paper-2: #e7eee9;
	--bf-line: rgba(18, 32, 43, 0.12);
	--bf-teal: #0f6b5c;
	--bf-teal-deep: #0a4d42;
	--bf-copper: #c45c26;
	--bf-copper-deep: #9a4418;
	--bf-mist: #c8d9d2;
	--bf-white: #ffffff;
	--bf-shadow: 0 24px 60px rgba(18, 32, 43, 0.12);
	--bf-radius: 18px;
	--bf-font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
	--bf-font-body: "Source Sans 3", "Segoe UI", sans-serif;
	--bf-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--bf-header-h: 4.5rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--bf-ink);
	font-family: var(--bf-font-body);
	font-size: 1.0625rem;
	line-height: 1.6;
	background:
		radial-gradient(1200px 600px at 10% -10%, rgba(15, 107, 92, 0.14), transparent 55%),
		radial-gradient(900px 500px at 100% 0%, rgba(196, 92, 38, 0.1), transparent 50%),
		linear-gradient(180deg, #eef3f0 0%, var(--bf-paper) 38%, #e9efeb 100%);
	min-height: 100vh;
}

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

a {
	color: var(--bf-teal-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--bf-copper);
}

.screen-reader-text,
.bf-skip {
	position: absolute;
	left: -9999px;
}

.bf-skip:focus {
	left: 1rem;
	top: 1rem;
	z-index: 1000;
	background: var(--bf-white);
	padding: 0.75rem 1rem;
	border-radius: 999px;
}

.bf-container {
	width: min(1120px, calc(100% - 2.5rem));
	margin-inline: auto;
}

/* Header */

.bf-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	background: rgba(243, 246, 244, 0.82);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--bf-ease), background 0.3s var(--bf-ease);
}

.bf-header.is-scrolled {
	border-bottom-color: var(--bf-line);
	background: rgba(243, 246, 244, 0.94);
}

.bf-header__inner {
	width: min(1200px, calc(100% - 2rem));
	margin-inline: auto;
	min-height: var(--bf-header-h);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.bf-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--bf-ink);
	flex-shrink: 0;
}

.bf-brand__mark {
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 0.45rem;
	background:
		linear-gradient(135deg, var(--bf-teal) 0 45%, transparent 45%),
		linear-gradient(315deg, var(--bf-copper) 0 40%, var(--bf-mist) 40%);
	box-shadow: inset 0 0 0 1px rgba(18, 32, 43, 0.08);
}

.bf-brand__text {
	font-family: var(--bf-font-display);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.03em;
}

.bf-brand__text span {
	color: var(--bf-teal);
}

.bf-nav {
	margin-left: auto;
}

.bf-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bf-nav__list a {
	text-decoration: none;
	color: var(--bf-ink-soft);
	font-weight: 600;
	font-size: 0.95rem;
}

.bf-nav__list a:hover,
.bf-nav__list .current-menu-item > a {
	color: var(--bf-ink);
}

.bf-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-left: 1rem;
}

.bf-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
	color: var(--bf-ink-soft);
	font-weight: 600;
	font-size: 0.9rem;
}

.bf-cart-link__count {
	min-width: 1.35rem;
	height: 1.35rem;
	padding: 0 0.35rem;
	border-radius: 999px;
	background: var(--bf-ink);
	color: var(--bf-white);
	font-size: 0.75rem;
	display: inline-grid;
	place-items: center;
}

.bf-cart-link__count[data-count="0"] {
	background: var(--bf-mist);
	color: var(--bf-ink);
}

.bf-nav-toggle {
	display: none;
	margin-left: auto;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--bf-line);
	border-radius: 0.7rem;
	background: var(--bf-white);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.35rem;
	cursor: pointer;
}

.bf-nav-toggle__bar {
	display: block;
	width: 1.1rem;
	height: 2px;
	background: var(--bf-ink);
}

/* Buttons */

.bf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.9rem;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--bf-font-body);
	font-weight: 700;
	font-size: 0.98rem;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--bf-ease), background 0.25s var(--bf-ease), color 0.25s var(--bf-ease), border-color 0.25s var(--bf-ease);
}

.bf-btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.bf-btn--primary {
	background: var(--bf-teal);
	color: var(--bf-white);
}

.bf-btn--primary:hover {
	background: var(--bf-teal-deep);
	color: var(--bf-white);
}

.bf-btn--ghost {
	background: rgba(255, 255, 255, 0.55);
	border-color: var(--bf-line);
	color: var(--bf-ink);
}

.bf-btn--ghost:hover {
	background: var(--bf-white);
	color: var(--bf-ink);
}

.bf-btn--compact {
	min-height: 2.4rem;
	padding: 0.45rem 1rem;
	font-size: 0.9rem;
}

.bf-btn--lg {
	min-height: 3.25rem;
	padding: 0.85rem 1.5rem;
	font-size: 1.05rem;
}

.bf-btn--block {
	width: 100%;
}

.bf-text-link {
	font-weight: 700;
	text-decoration: none;
	color: var(--bf-teal-deep);
	white-space: nowrap;
}

.bf-text-link:hover {
	color: var(--bf-copper);
}

/* Hero */

.bf-hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: end;
	gap: 2rem;
	min-height: calc(100svh - var(--bf-header-h));
	width: min(1200px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 2.5rem 0 3.5rem;
	overflow: hidden;
}

.bf-hero__atmosphere {
	position: absolute;
	inset: 8% -5% -10% 35%;
	background:
		radial-gradient(closest-side at 60% 40%, rgba(15, 107, 92, 0.22), transparent 70%),
		radial-gradient(closest-side at 80% 70%, rgba(196, 92, 38, 0.16), transparent 65%);
	pointer-events: none;
	filter: blur(4px);
}

.bf-hero__content {
	position: relative;
	z-index: 1;
	padding-bottom: 1.5rem;
	max-width: 34rem;
}

.bf-hero__brand {
	margin: 0 0 1rem;
	font-family: var(--bf-font-display);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.95;
	color: var(--bf-ink);
}

.bf-hero__brand span {
	color: var(--bf-teal);
}

.bf-hero__title {
	margin: 0 0 1rem;
	font-family: var(--bf-font-display);
	font-size: clamp(1.55rem, 2.8vw, 2.15rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--bf-ink-soft);
	max-width: 18ch;
}

.bf-hero__lead {
	margin: 0 0 1.75rem;
	color: var(--bf-muted);
	font-size: 1.08rem;
	max-width: 38ch;
}

.bf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.bf-hero__stage {
	position: relative;
	z-index: 1;
	min-height: 26rem;
	display: grid;
	place-items: center;
}

.bf-stage {
	position: relative;
	width: min(100%, 28rem);
	aspect-ratio: 1 / 1.02;
}

.bf-stage__rail {
	position: absolute;
	inset: 12% 10%;
	border: 1px dashed rgba(15, 107, 92, 0.35);
	border-radius: 2rem;
	transform: rotate(-6deg);
}

.bf-stage__core,
.bf-stage__module {
	position: absolute;
	border-radius: 1.1rem;
	box-shadow: var(--bf-shadow);
	backdrop-filter: blur(8px);
}

.bf-stage__core {
	left: 28%;
	top: 34%;
	width: 44%;
	aspect-ratio: 1;
	display: grid;
	place-content: center;
	text-align: center;
	background: linear-gradient(160deg, #0f6b5c, #163a45);
	color: var(--bf-white);
	z-index: 2;
}

.bf-stage__core span {
	font-size: 0.85rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.bf-stage__core strong {
	font-family: var(--bf-font-display);
	font-size: 1.6rem;
	letter-spacing: -0.03em;
}

.bf-stage__module {
	padding: 0.85rem 1rem;
	font-weight: 700;
	font-size: 0.92rem;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: var(--bf-ink);
}

.bf-stage__module--a { left: 4%; top: 18%; }
.bf-stage__module--b { right: 2%; top: 22%; background: linear-gradient(135deg, #fff, #f4ebe4); }
.bf-stage__module--c { left: 8%; bottom: 18%; }
.bf-stage__module--d { right: 6%; bottom: 14%; background: linear-gradient(135deg, #edf5f2, #fff); }

[data-bf-float] {
	animation: bf-float 6s var(--bf-ease) infinite;
}

.bf-stage__module--b { animation-delay: -1.2s; }
.bf-stage__module--c { animation-delay: -2.4s; }
.bf-stage__module--d { animation-delay: -3.6s; }

@keyframes bf-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* Sections */

.bf-section {
	padding: 5rem 0;
}

.bf-section__intro {
	margin-bottom: 2.5rem;
	max-width: 40rem;
}

.bf-section__intro--row {
	max-width: none;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
}

.bf-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--bf-font-display);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.bf-section__text {
	margin: 0;
	color: var(--bf-muted);
	font-size: 1.05rem;
}

.bf-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.bf-steps__item {
	padding: 1.5rem 1.35rem 1.6rem;
	border-radius: var(--bf-radius);
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 30px rgba(18, 32, 43, 0.04);
}

.bf-steps__num {
	display: block;
	margin-bottom: 1.25rem;
	font-family: var(--bf-font-display);
	font-weight: 800;
	color: var(--bf-teal);
	letter-spacing: -0.04em;
}

.bf-steps__title {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
}

.bf-steps__item p {
	margin: 0;
	color: var(--bf-muted);
}

.bf-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.bf-product {
	display: flex;
	flex-direction: column;
	border-radius: var(--bf-radius);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 32px rgba(18, 32, 43, 0.05);
	transition: transform 0.3s var(--bf-ease), box-shadow 0.3s var(--bf-ease);
}

.bf-product:hover {
	transform: translateY(-4px);
	box-shadow: var(--bf-shadow);
}

.bf-product__media {
	display: block;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(145deg, rgba(15, 107, 92, 0.12), rgba(196, 92, 38, 0.1)),
		var(--bf-paper-2);
	overflow: hidden;
}

.bf-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bf-product__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%),
		repeating-linear-gradient(
			-18deg,
			rgba(15, 107, 92, 0.12) 0 12px,
			transparent 12px 24px
		);
}

.bf-product__body {
	padding: 1.15rem 1.2rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}

.bf-product__cat {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bf-teal);
}

.bf-product__title {
	margin: 0;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.bf-product__title a,
.bf-product__title a:visited,
.bf-product__title a:hover {
	text-decoration: none;
	color: var(--bf-ink);
}

.bf-product__price {
	margin: 0.2rem 0 0.8rem;
	font-weight: 700;
	color: var(--bf-ink-soft);
}

.bf-product__actions {
	margin-top: auto;
}

.bf-product__actions .button,
.bf-product__actions .bf-btn {
	width: 100%;
}

.bf-empty {
	padding: 2.5rem;
	border-radius: var(--bf-radius);
	background: rgba(255, 255, 255, 0.65);
	border: 1px dashed var(--bf-line);
	text-align: center;
}

.bf-empty p {
	margin: 0 0 1rem;
	color: var(--bf-muted);
}

.bf-split {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2rem;
	align-items: stretch;
}

.bf-checklist {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.bf-checklist li {
	position: relative;
	padding-left: 1.6rem;
	color: var(--bf-ink-soft);
	font-weight: 600;
}

.bf-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 0.2rem;
	background: var(--bf-teal);
	box-shadow: 0.25rem 0.25rem 0 var(--bf-copper);
}

.bf-pricing-panel {
	padding: 1.6rem;
	border-radius: calc(var(--bf-radius) + 4px);
	background: linear-gradient(165deg, #163a45 0%, #0f6b5c 55%, #0c574b 100%);
	color: var(--bf-white);
	box-shadow: var(--bf-shadow);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bf-pricing-panel__eyebrow {
	margin: 0;
	opacity: 0.75;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
}

.bf-pricing-panel__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.bf-pricing-panel__list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	font-weight: 600;
}

.bf-pricing-panel__list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.bf-pricing-panel .bf-btn--primary {
	background: var(--bf-copper);
	margin-top: auto;
}

.bf-pricing-panel .bf-btn--primary:hover {
	background: var(--bf-copper-deep);
}

.bf-section--download {
	padding-bottom: 6rem;
}

.bf-download {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 2.25rem 2rem;
	border-radius: calc(var(--bf-radius) + 6px);
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(232, 240, 236, 0.9)),
		var(--bf-white);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 40px rgba(18, 32, 43, 0.06);
}

.bf-download__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	flex-shrink: 0;
}

/* Content pages */

.bf-page,
.bf-main--shop {
	padding: 2.5rem 0 5rem;
}

.bf-page__title,
.woocommerce-products-header__title {
	margin: 0 0 1.25rem;
	font-family: var(--bf-font-display);
	font-size: clamp(2rem, 4vw, 2.8rem);
	letter-spacing: -0.04em;
}

.bf-prose {
	max-width: 42rem;
}

.bf-prose > *:first-child {
	margin-top: 0;
}

.bf-prose p,
.bf-prose li {
	color: var(--bf-ink-soft);
}

/* Footer */

.bf-footer {
	margin-top: 2rem;
	padding: 3.5rem 0 1.5rem;
	background: #102029;
	color: rgba(255, 255, 255, 0.78);
}

.bf-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.bf-footer a:hover {
	color: #fff;
}

.bf-footer__grid {
	width: min(1120px, calc(100% - 2.5rem));
	margin: 0 auto 2.5rem;
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 2rem;
}

.bf-footer__logo {
	margin: 0 0 0.75rem;
	font-family: var(--bf-font-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
}

.bf-footer__logo span {
	color: #6fc4b4;
}

.bf-footer__lead {
	margin: 0;
	max-width: 28ch;
	line-height: 1.55;
}

.bf-footer__heading {
	margin: 0 0 0.9rem;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.bf-footer__links,
.bf-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.bf-footer__bar {
	width: min(1120px, calc(100% - 2.5rem));
	margin-inline: auto;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	font-size: 0.92rem;
}

.bf-footer__menu {
	display: flex;
	gap: 1rem;
}

/* Reveal motion */

[data-bf-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--bf-ease), transform 0.7s var(--bf-ease);
}

[data-bf-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.bf-hero[data-bf-reveal] {
	transition-delay: 0.05s;
}

/* WooCommerce surfaces */

.bf-shop-surface .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-shop-surface .woocommerce ul.products::before,
.bf-shop-surface .woocommerce ul.products::after {
	display: none;
}

.bf-shop-surface .woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	padding: 0;
	border-radius: var(--bf-radius);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 32px rgba(18, 32, 43, 0.05);
}

.bf-shop-surface .woocommerce ul.products li.product a img {
	margin: 0;
	width: 100%;
}

.bf-shop-surface .woocommerce ul.products li.product .woocommerce-loop-product__title,
.bf-shop-surface .woocommerce ul.products li.product .woocommerce-loop-product__title a,
.bf-shop-surface .woocommerce ul.products li.product .woocommerce-loop-product__title a:visited {
	padding: 0 1rem;
	font-size: 1.1rem;
	font-family: var(--bf-font-display);
	color: var(--bf-ink);
	text-decoration: none;
}

.bf-shop-surface .woocommerce ul.products li.product .price {
	padding: 0 1rem;
	color: var(--bf-ink-soft);
	font-weight: 700;
}

.bf-shop-surface .woocommerce ul.products li.product .button {
	margin: 0.75rem 1rem 1.15rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.4rem;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: var(--bf-teal);
	color: #fff !important;
	border: 0;
	font-weight: 700;
}

.bf-shop-surface .woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.bf-shop-surface .woocommerce div.product .summary {
	margin: 0;
}

.bf-shop-surface .woocommerce div.product .product_title {
	font-family: var(--bf-font-display);
	letter-spacing: -0.03em;
}

.bf-shop-surface .woocommerce .quantity .qty,
.bf-shop-surface .woocommerce form .input-text,
.bf-shop-surface .woocommerce-input-wrapper input,
.bf-shop-surface .woocommerce-input-wrapper select,
.bf-shop-surface .woocommerce-input-wrapper textarea {
	border: 1px solid var(--bf-line);
	border-radius: 0.7rem;
	padding: 0.65rem 0.8rem;
	background: #fff;
}

.bf-shop-surface .woocommerce button.button,
.bf-shop-surface .woocommerce a.button,
.bf-shop-surface .woocommerce #respond input#submit,
.bf-shop-surface .woocommerce input.button {
	background: var(--bf-teal);
	color: #fff;
	border-radius: 999px;
	border: 0;
	font-weight: 700;
	padding: 0.7rem 1.2rem;
}

.bf-shop-surface .woocommerce button.button:hover,
.bf-shop-surface .woocommerce a.button:hover {
	background: var(--bf-teal-deep);
}

.bf-shop-surface .woocommerce-message,
.bf-shop-surface .woocommerce-info,
.bf-shop-surface .woocommerce-error {
	border-top-color: var(--bf-teal);
	border-radius: 0.85rem;
}

.bf-shop-surface table.shop_table {
	border-radius: var(--bf-radius);
	overflow: hidden;
	border: 1px solid var(--bf-line) !important;
	background: rgba(255, 255, 255, 0.8);
}

/* Responsive */

@media (max-width: 960px) {
	.bf-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 1.5rem;
	}

	.bf-hero__stage {
		min-height: 22rem;
		order: -1;
	}

	.bf-steps,
	.bf-product-grid,
	.bf-shop-surface .woocommerce ul.products,
	.bf-split,
	.bf-footer__grid,
	.bf-shop-surface .woocommerce div.product {
		grid-template-columns: 1fr 1fr;
	}

	.bf-footer__brand {
		grid-column: 1 / -1;
	}

	.bf-download {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 720px) {
	.bf-nav-toggle {
		display: inline-flex;
	}

	.bf-nav {
		display: none;
		position: absolute;
		left: 1rem;
		right: 1rem;
		top: calc(var(--bf-header-h) + 0.35rem);
		padding: 1rem;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid var(--bf-line);
		border-radius: 1rem;
		box-shadow: var(--bf-shadow);
	}

	.bf-nav.is-open {
		display: block;
	}

	.bf-nav__list {
		flex-direction: column;
		align-items: flex-start;
	}

	.bf-header__actions .bf-btn--compact {
		display: none;
	}

	.bf-cart-link__label {
		display: none;
	}

	.bf-steps,
	.bf-product-grid,
	.bf-shop-surface .woocommerce ul.products,
	.bf-split,
	.bf-footer__grid,
	.bf-shop-surface .woocommerce div.product,
	.bf-section__intro--row {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}

	.bf-footer__bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.bf-hero__brand {
		font-size: clamp(2.2rem, 10vw, 3rem);
	}
}
