/*
Theme Name: Bioe-Tag
Theme URI: https://bioetag.com.br/
Author: Bioe-Tag
Description: Tema sob medida para a Bioe-Tag, com integração completa ao WooCommerce.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: bioetag
*/

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("assets/fonts/inter.woff2") format("woff2");
}

@font-face {
	font-family: "Space Grotesk";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("assets/fonts/space-grotesk.woff2") format("woff2");
}

:root {
	--bio-bg: #fcfbf8;
	--bio-ink: #1a2024;
	--bio-muted: #687176;
	--bio-line: #dce1df;
	--bio-soft: #eef4f3;
	--bio-primary: #4b96a8;
	--bio-primary-dark: #327486;
	--bio-primary-pale: #dceff1;
	--bio-green: #61dc91;
	--bio-white: #fff;
	--bio-danger: #b43838;
	--bio-radius: 18px;
	--bio-radius-sm: 10px;
	--bio-shadow: 0 24px 70px rgb(20 35 39 / 10%);
	--bio-container: 1152px;
	--bio-display: "Space Grotesk", Inter, sans-serif;
	--bio-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--bio-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bio-bg);
	color: var(--bio-ink);
	font-family: var(--bio-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
[type="button"],
[type="submit"] {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid rgb(75 150 168 / 45%);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bio-container {
	width: min(calc(100% - 48px), calc(var(--bio-container) - 48px));
	margin-inline: auto;
}

.bio-narrow {
	width: min(calc(100% - 48px), 768px);
	margin-inline: auto;
}

.bio-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--bio-primary);
	font-family: "Courier New", monospace;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 1.5;
	text-transform: uppercase;
}

.bio-kicker::before {
	width: 24px;
	height: 1px;
	background: currentColor;
	content: "";
}

.bio-button,
.button,
button.button,
input.button,
.wp-element-button,
.wc-block-components-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 9px;
	background: var(--bio-primary);
	box-shadow: none;
	color: var(--bio-white);
	font-family: var(--bio-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.2;
	text-align: center;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.bio-button:hover,
.button:hover,
button.button:hover,
input.button:hover,
.wp-element-button:hover,
.wc-block-components-button:hover {
	background: var(--bio-primary-dark);
	color: var(--bio-white);
	transform: translateY(-1px);
}

.bio-button--dark {
	background: var(--bio-ink);
}

.bio-button--dark:hover {
	background: #303a40;
}

.bio-button--ghost {
	border-color: var(--bio-line);
	background: transparent;
	color: var(--bio-ink);
}

.bio-button--ghost:hover {
	border-color: var(--bio-primary);
	background: var(--bio-primary-pale);
	color: var(--bio-primary-dark);
}

.bio-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgb(26 32 36 / 8%);
	background: rgb(252 251 248 / 80%);
	backdrop-filter: blur(12px);
}

.bio-site-header__inner {
	position: relative;
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-inline: 24px;
}

.bio-logo {
	display: inline-flex;
	width: 130px;
	flex: 0 0 auto;
	align-items: center;
}

.bio-logo img {
	display: block;
	width: 100%;
}

.bio-site-nav {
	display: flex;
	align-items: center;
}

.bio-site-nav ul {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bio-site-nav a {
	color: #50585d;
	font-family: var(--bio-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	transition: color .2s ease;
}

.bio-site-nav a:hover,
.bio-site-nav .current-menu-item > a {
	color: var(--bio-primary);
}

.bio-header-actions {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.bio-cart-link {
	position: absolute;
	top: 50%;
	right: calc(100% + 10px);
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid var(--bio-line);
	border-radius: 50%;
	color: var(--bio-ink);
	transform: translateY(-50%);
}

.bio-header-buy {
	min-height: 36px;
	padding: 8px 20px;
	border-radius: 999px;
	font-family: var(--bio-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 20px;
}

.bio-cart-link svg {
	width: 20px;
	height: 20px;
}

.bio-cart-count {
	position: absolute;
	top: -4px;
	right: -3px;
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border: 2px solid var(--bio-bg);
	border-radius: 50%;
	background: var(--bio-primary);
	color: white;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.bio-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--bio-line);
	border-radius: 50%;
	background: transparent;
}

.bio-menu-toggle span,
.bio-menu-toggle::before,
.bio-menu-toggle::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--bio-ink);
	content: "";
	transition: transform .2s ease, opacity .2s ease;
}

.bio-menu-toggle[aria-expanded="true"] span {
	opacity: 0;
}

.bio-menu-toggle[aria-expanded="true"]::before {
	transform: translateY(6px) rotate(45deg);
}

.bio-menu-toggle[aria-expanded="true"]::after {
	transform: translateY(-6px) rotate(-45deg);
}

.bio-hero {
	position: relative;
	display: grid;
	min-height: 937px;
	align-items: start;
	overflow: hidden;
	background: #121b20;
	color: var(--bio-white);
	isolation: isolate;
}

.bio-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(90deg, rgb(12 21 26 / 92%) 0%, rgb(12 21 26 / 65%) 51%, rgb(12 21 26 / 12%) 100%);
	content: "";
}

.bio-hero__image {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 36%;
}

.bio-hero__grid {
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: .07;
	background-image: linear-gradient(to right, white 1px, transparent 1px), linear-gradient(to bottom, white 1px, transparent 1px);
	background-size: 64px 64px;
}

.bio-hero__content {
	width: min(770px, 72%);
	padding-block: 128px;
	margin-left: 24px;
}

.bio-signal {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 4px 12px;
	border: 1px solid rgb(255 255 255 / 23%);
	border-radius: 99px;
	background: rgb(255 255 255 / 8%);
	font-family: "Courier New", monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .24em;
}

.bio-signal::before {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--bio-green);
	box-shadow: 0 0 14px var(--bio-green);
	content: "";
}

.bio-hero h1 {
	max-width: 768px;
	margin: 24px 0 0;
	font-family: var(--bio-display);
	font-size: clamp(52px, 5.625vw, 72px);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.05;
}

.bio-hero p {
	max-width: 576px;
	margin: 24px 0 0;
	color: rgb(255 255 255 / 78%);
	font-size: 18px;
	line-height: 28px;
}

.bio-hero .bio-button {
	min-height: 48px;
	margin-top: 36px;
	padding: 14px 28px;
	border-radius: 8px;
	font-family: var(--bio-body);
	font-weight: 500;
	line-height: 20px;
}

.bio-hero .bio-button img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.bio-hero-features {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	height: 49px;
	border-top: 1px solid rgb(252 251 248 / 15%);
	background: rgb(23 33 39 / 70%);
	backdrop-filter: blur(10px);
}

.bio-hero-features .bio-container {
	padding-inline: 24px;
}

.bio-hero-features ul {
	display: flex;
	height: 48px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	margin: 0;
	overflow-x: auto;
	list-style: none;
	scrollbar-width: none;
}

.bio-hero-features ul::-webkit-scrollbar {
	display: none;
}

.bio-hero-features li {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
	color: rgb(252 251 248 / 90%);
	font-family: var(--bio-mono);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 1;
	text-transform: uppercase;
}

.bio-hero-feature__icon {
	position: relative;
	display: grid;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	place-items: center;
	border: 1px solid rgb(252 251 248 / 20%);
	border-radius: 50%;
	background: rgb(252 251 248 / 10%);
}

.bio-hero-feature__icon img {
	width: 14px;
	height: 14px;
	filter: brightness(0) invert(1);
	opacity: .9;
}

.bio-hero-feature__icon.is-crossed::after {
	position: absolute;
	top: 2px;
	left: 13px;
	width: 1px;
	height: 24px;
	background: #d55757;
	content: "";
	transform: rotate(42deg);
}

.bio-trust-strip {
	position: relative;
	background: var(--bio-ink);
	color: var(--bio-bg);
}

.bio-trust-strip::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
	background-size: 20% 96px;
	content: "";
	pointer-events: none;
}

.bio-trust-strip__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 96px 24px;
}

.bio-stat {
	padding: 0 24px;
	text-align: center;
}

.bio-stat strong {
	display: block;
	color: var(--bio-bg);
	font-family: var(--bio-display);
	font-size: 60px;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.275;
}

.bio-stat span {
	display: block;
	margin-top: 0;
	color: rgb(252 251 248 / 78%);
	font-family: var(--bio-mono);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 1.35;
}

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

.bio-section--soft {
	background: rgb(238 244 243 / 55%);
}

.bio-section--dark {
	padding-block: 96px;
	background: var(--bio-ink);
	background-image:
		linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
	background-size: 64px 64px;
	color: var(--bio-bg);
}

.bio-section--dark .bio-section__head h2 {
	font-size: 36px;
	line-height: 40px;
}

.bio-section--dark .bio-kicker {
	display: inline-flex;
	padding: 4px 12px;
	border: 1px solid rgb(252 251 248 / 20%);
	border-radius: 999px;
	background: rgb(252 251 248 / 8%);
	color: rgb(252 251 248 / 88%);
	margin-bottom: 0;
}

.bio-section--dark .bio-kicker::before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bio-green);
	box-shadow: 0 0 10px var(--bio-green);
}

.bio-section__head {
	max-width: 672px;
	margin: 0 auto 52px;
	text-align: center;
}

.bio-section__head .bio-kicker {
	justify-content: center;
}

.bio-section h2,
.bio-product-intro h1,
.bio-woo-title {
	margin: 0;
	font-family: var(--bio-display);
	font-size: clamp(38px, 3.35vw, 48px);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1;
}

.bio-section__head > p:last-child {
	margin: 18px auto 0;
	color: var(--bio-muted);
	font-size: 17px;
}

.bio-intro-grid {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 56px;
	padding-inline: 24px;
}

.bio-intro-image {
	position: relative;
}

.bio-intro-image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--bio-radius);
	object-fit: cover;
}

.bio-tech-badge {
	position: absolute;
	right: -24px;
	bottom: -24px;
	display: block;
	width: 226px;
	height: 108px;
	padding: 24px;
	border-radius: 18px;
	background: var(--bio-primary);
	box-shadow: 0 20px 30px rgb(13 27 34 / 16%);
	color: white;
	text-align: left;
}

.bio-tech-badge strong {
	display: block;
	font-family: var(--bio-display);
	font-size: 36px;
	font-weight: 600;
	line-height: 40px;
}

.bio-tech-badge span {
	display: block;
	font-family: var(--bio-mono);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 20px;
}

.bio-intro-copy h2 {
	margin: 20px 0 0;
	font-size: 48px;
	line-height: 1.25;
}

.bio-intro-copy > p:not(.bio-kicker) {
	margin: 24px 0 0;
	color: var(--bio-muted);
	font-size: 16px;
	line-height: 1.5;
}

.bio-intro-copy .bio-kicker {
	margin: 0;
}

.bio-intro-copy .bio-kicker::before {
	display: none;
}

.bio-intro-copy .bio-kicker::after {
	width: 40px;
	height: 1px;
	background: currentColor;
	content: "";
}

.bio-check-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 32px 0 0;
	list-style: none;
}

.bio-check-list li {
	position: relative;
	min-height: 22px;
	padding-left: 31px;
	font-size: 14px;
	line-height: 20px;
}

.bio-check-list li::before {
	position: absolute;
	top: .2em;
	left: 0;
	display: grid;
	width: 21px;
	height: 21px;
	place-items: center;
	border-radius: 50%;
	background: var(--bio-primary-pale);
	color: var(--bio-primary-dark);
	content: "✓";
	font-size: 12px;
	font-weight: 800;
}

.bio-intro-copy > .bio-button {
	min-height: 44px;
	margin-top: 36px;
	padding: 12px 24px;
	border-radius: 8px;
	font-family: var(--bio-body);
	font-weight: 500;
	line-height: 20px;
}

.bio-intro-copy > .bio-button img {
	width: 16px;
	height: 16px;
}

.bio-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-inline: 24px;
}

.bio-benefit {
	height: 242px;
	min-height: 242px;
	padding: 28px;
	border: 1px solid var(--bio-line);
	border-radius: 18px;
	background: rgb(252 251 248 / 82%);
}

.bio-benefit__icon {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 26px;
	place-items: center;
	border-radius: 13px;
	background: var(--bio-soft);
	color: var(--bio-primary-dark);
}

.bio-benefit__icon img {
	width: 24px;
	height: 24px;
	filter: invert(47%) sepia(19%) saturate(1168%) hue-rotate(145deg) brightness(93%) contrast(90%);
}

.bio-benefit h3 {
	margin: 0 0 12px;
	font-family: var(--bio-display);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

.bio-benefit p {
	margin: 0;
	color: var(--bio-muted);
	font-size: 14px;
	line-height: 20px;
}

.bio-timeline {
	display: grid;
	max-width: 768px;
	gap: 0;
	padding: 0;
	margin: 64px auto 0;
	list-style: none;
}

.bio-timeline li {
	position: relative;
	padding: 0 0 34px 64px;
}

.bio-timeline li::before {
	position: absolute;
	top: 40px;
	bottom: 0;
	left: 20px;
	width: 1px;
	background: rgb(255 255 255 / 15%);
	content: "";
}

.bio-timeline li:last-child::before {
	display: none;
}

.bio-timeline__number {
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid rgb(97 220 145 / 50%);
	border-radius: 50%;
	background: var(--bio-ink);
	box-shadow: 0 0 0 4px rgb(97 220 145 / 8%);
}

.bio-timeline__number img {
	width: 16px;
	height: 16px;
	filter: invert(83%) sepia(32%) saturate(768%) hue-rotate(85deg) brightness(98%) contrast(91%);
}

.bio-timeline__meta {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 7px;
	font-family: var(--bio-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	line-height: 20px;
	text-transform: uppercase;
}

.bio-timeline__meta > span:first-child {
	color: var(--bio-green);
}

.bio-timeline__day {
	color: rgb(255 255 255 / 48%);
}

.bio-timeline h3 {
	margin: 0 0 8px;
	font-family: var(--bio-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
}

.bio-timeline p {
	margin: 0;
	color: rgb(255 255 255 / 70%);
	font-size: 16px;
	line-height: 24px;
}

.bio-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-inline: 24px;
}

#colecao .bio-section__head {
	margin-bottom: 58px;
}

.bio-product-card {
	display: flex;
	min-height: 935px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius);
	background: var(--bio-white);
	box-shadow: 0 20px 55px rgb(20 35 39 / 5%);
}

.bio-product-card__media {
	position: relative;
	overflow: hidden;
}

.bio-product-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .5s ease;
}

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

.bio-product-card__tag {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 7px 12px;
	border-radius: 99px;
	background: var(--bio-bg);
	font-family: "Courier New", monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.bio-product-card__audience {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 13px;
	border-radius: 999px;
	background: rgb(252 251 248 / 92%);
	color: var(--bio-ink);
	font-family: var(--bio-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	line-height: 16px;
	text-transform: uppercase;
}

.bio-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 30px;
}

.bio-product-card__rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.bio-product-card__rating > span {
	color: var(--bio-primary);
	font-size: 15px;
	letter-spacing: .14em;
	line-height: 1;
}

.bio-product-card__rating small {
	color: var(--bio-muted);
	font-family: var(--bio-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.bio-product-card__eyebrow {
	color: var(--bio-primary);
	font-family: "Courier New", monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.bio-product-card h3 {
	margin: 8px 0 9px;
	font-family: var(--bio-display);
	font-size: 30px;
	line-height: 1.1;
}

.bio-product-card__description {
	min-height: 52px;
	margin: 0 0 20px;
	color: var(--bio-muted);
	font-size: 14px;
}

.bio-product-card__price {
	display: flex;
	align-items: baseline;
	gap: 9px;
	margin: 0;
	color: var(--bio-ink);
	font-family: var(--bio-display);
	font-size: 27px;
	font-weight: 600;
}

.bio-product-card__price del {
	margin-right: 6px;
	color: #92999c;
	font-size: 17px;
	font-weight: 400;
}

.bio-product-card__price ins {
	text-decoration: none;
}

.bio-product-card__price strong {
	font-weight: 600;
}

.bio-product-card__price small {
	color: var(--bio-muted);
	font-family: var(--bio-body);
	font-size: 12px;
	font-weight: 400;
}

.bio-product-card__installment {
	margin: 2px 0 20px;
	color: var(--bio-muted);
	font-size: 13px;
}

.bio-product-card__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	padding: 16px 0;
	margin: 0;
	border-block: 1px solid var(--bio-line);
	list-style: none;
}

.bio-product-card__highlights li {
	position: relative;
	padding-left: 14px;
	color: var(--bio-muted);
	font-size: 12px;
	line-height: 18px;
}

.bio-product-card__highlights li::before {
	position: absolute;
	top: 7px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--bio-primary);
	content: "";
}

.bio-product-card__specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin: 20px 0;
	overflow: hidden;
	border-radius: 10px;
	background: var(--bio-line);
}

.bio-product-card__specs div {
	padding: 13px 12px;
	background: var(--bio-soft);
}

.bio-product-card__specs dt {
	color: var(--bio-primary-dark);
	font-family: var(--bio-mono);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .14em;
}

.bio-product-card__specs dd {
	margin: 3px 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
}

.bio-product-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: auto;
}

.bio-testimonials {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-inline: 24px;
}

.bio-section--testimonials {
	padding-bottom: 87px;
}

.bio-quote {
	padding: 32px;
	margin: 0;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius);
	background: white;
}

.bio-quote__icon {
	width: 32px;
	height: 32px;
	filter: invert(90%) sepia(8%) saturate(362%) hue-rotate(131deg) brightness(103%) contrast(87%);
}

.bio-quote blockquote {
	margin: 20px 0 24px;
	font-family: var(--bio-body);
	font-size: 18px;
	line-height: 28px;
}

.bio-quote figcaption {
	padding-top: 20px;
	border-top: 1px solid var(--bio-line);
}

.bio-quote figcaption strong,
.bio-quote figcaption span {
	display: block;
}

.bio-quote figcaption span {
	color: var(--bio-muted);
	font-size: 14px;
	line-height: 20px;
}

.bio-contact-band {
	background: var(--bio-primary);
	color: white;
}

.bio-contact-band__inner {
	display: flex;
	min-height: 180px;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-inline: 24px;
}

.bio-contact-band h2 {
	margin: 0;
	font-family: var(--bio-display);
	font-size: 28px;
	font-weight: 600;
	line-height: 36px;
}

.bio-contact-band p {
	max-width: 590px;
	margin: 4px 0 0;
	color: rgb(255 255 255 / 85%);
	font-size: 14px;
	line-height: 20px;
}

.bio-contact-band .bio-button {
	min-height: 48px;
	flex: 0 0 auto;
	padding: 14px 28px;
	border-radius: 999px;
	background: var(--bio-ink);
	font-family: var(--bio-body);
	font-weight: 500;
	line-height: 20px;
}

.bio-contact-band .bio-button img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.bio-home-contact {
	position: relative;
	min-height: 590px;
	padding-block: 112px;
	margin-bottom: 96px;
	overflow: hidden;
	background: var(--bio-ink);
	color: var(--bio-bg);
}

.bio-home-contact::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgb(17 28 34 / 96%) 0%, rgb(17 28 34 / 80%) 48%, rgb(17 28 34 / 74%) 100%),
		linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
	background-size: auto, 64px 64px, 64px 64px;
	content: "";
}

.bio-home-contact__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bio-home-contact__grid {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: start;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
	padding-inline: 24px;
}

.bio-home-contact__copy .bio-kicker {
	margin: 5px 0 20px;
}

.bio-home-contact__copy .bio-kicker::before {
	display: none;
}

.bio-home-contact__copy .bio-kicker::after {
	width: 40px;
	height: 1px;
	background: currentColor;
	content: "";
}

.bio-home-contact__copy h2 {
	margin: 0;
	font-family: var(--bio-display);
	font-size: 48px;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1;
}

.bio-home-contact__copy > p {
	max-width: 470px;
	margin: 24px 0 0;
	color: rgb(252 251 248 / 78%);
	font-size: 16px;
	line-height: 24px;
}

.bio-home-contact__copy ul {
	display: grid;
	gap: 20px;
	padding: 0;
	margin: 40px 0 0;
	list-style: none;
}

.bio-home-contact__copy li {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bio-home-contact__copy li > span {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	border-radius: 50%;
	background: var(--bio-primary);
}

.bio-home-contact__copy li img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.bio-home-contact__copy small {
	display: block;
	color: rgb(252 251 248 / 64%);
	font-family: var(--bio-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 18px;
	text-transform: uppercase;
}

.bio-home-contact__copy li a,
.bio-home-contact__copy li p {
	margin: 0;
	color: var(--bio-bg);
	font-size: 16px;
	line-height: 24px;
}

.bio-home-contact__form {
	padding: 28px;
	border-radius: 18px;
	background: rgb(252 251 248 / 95%);
	color: var(--bio-ink);
}

.bio-home-contact__form h3 {
	margin: 0;
	font-family: var(--bio-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
}

.bio-home-contact__form > p {
	margin: 2px 0 20px;
	color: var(--bio-muted);
	font-size: 14px;
	line-height: 20px;
}

.bio-home-contact__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.bio-home-contact__form label {
	display: block;
}

.bio-home-contact__form input,
.bio-home-contact__form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--bio-line);
	border-radius: 8px;
	background: var(--bio-bg);
	color: var(--bio-ink);
	font-size: 14px;
	line-height: 20px;
}

.bio-home-contact__form input {
	height: 46px;
}

.bio-home-contact__form textarea {
	height: 106px;
	margin-top: 16px;
	resize: vertical;
}

.bio-home-contact__form button {
	display: flex;
	width: 100%;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	margin-top: 20px;
	border: 0;
	border-radius: 8px;
	background: var(--bio-primary);
	color: white;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.bio-home-contact__form button img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.bio-site-footer {
	padding: 72px 0 28px;
	background: #151d21;
	color: white;
}

.bio-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 44px;
}

.bio-footer-brand img {
	width: 190px;
	filter: brightness(0) invert(1);
}

.bio-footer-brand p {
	max-width: 320px;
	color: rgb(255 255 255 / 55%);
	font-size: 14px;
}

.bio-footer-column h2 {
	margin: 4px 0 18px;
	font-family: var(--bio-display);
	font-size: 15px;
}

.bio-footer-column ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bio-footer-column a,
.bio-footer-column li {
	color: rgb(255 255 255 / 58%);
	font-size: 13px;
}

.bio-footer-column a:hover {
	color: var(--bio-primary-pale);
}

.bio-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 27px;
	margin-top: 58px;
	border-top: 1px solid rgb(255 255 255 / 10%);
	color: rgb(255 255 255 / 42%);
	font-family: "Courier New", monospace;
	font-size: 10px;
	letter-spacing: .08em;
}

.bio-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.bio-status::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bio-green);
	box-shadow: 0 0 8px var(--bio-green);
	content: "";
}

.bio-whatsapp {
	position: fixed;
	z-index: 45;
	right: 24px;
	bottom: 24px;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border: 4px solid rgb(255 255 255 / 80%);
	border-radius: 50%;
	background: #5ddc8b;
	box-shadow: 0 13px 35px rgb(15 30 34 / 22%);
	color: white;
}

.bio-whatsapp svg {
	width: 26px;
	height: 26px;
}

/* The theme includes its own reference-matched WhatsApp control. */
#qlwapp,
.qlwapp,
.qlwapp-container {
	display: none !important;
}

/* Generic WordPress content */
.bio-page {
	padding-block: 80px 110px;
}

.bio-page__header {
	margin-bottom: 42px;
}

.bio-page__header h1 {
	margin: 0;
	font-family: var(--bio-display);
	font-size: clamp(42px, 5vw, 68px);
	letter-spacing: -.05em;
	line-height: 1.05;
}

.bio-entry-content {
	font-size: 17px;
}

.bio-entry-content > * {
	max-width: 768px;
	margin-right: auto;
	margin-left: auto;
}

.bio-entry-content > .alignwide {
	max-width: var(--bio-container);
}

.bio-entry-content > .alignfull {
	max-width: none;
}

/* WooCommerce shell */
.bio-woocommerce {
	min-height: 60vh;
	padding-block: 72px 110px;
}

.bio-woocommerce .woocommerce-breadcrumb {
	margin-bottom: 30px;
	color: var(--bio-muted);
	font-size: 12px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	margin: 0 0 24px;
	border: 1px solid var(--bio-line);
	border-top: 3px solid var(--bio-primary);
	border-radius: var(--bio-radius-sm);
	background: white;
	color: var(--bio-ink);
	list-style: none;
}

.woocommerce-error {
	border-top-color: var(--bio-danger);
}

.woocommerce-message .button,
.woocommerce-info .button {
	order: 2;
	min-height: 38px;
	padding: 8px 14px;
}

.woocommerce form .form-row {
	margin: 0 0 17px;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
	width: calc(50% - 8px);
}

.woocommerce form .form-row-first {
	float: left;
}

.woocommerce form .form-row-last {
	float: right;
}

.woocommerce form .form-row-wide,
.woocommerce form .create-account {
	clear: both;
}

.woocommerce form .form-row label {
	display: block;
	margin-bottom: 7px;
	color: var(--bio-ink);
	font-size: 12px;
	font-weight: 700;
}

.woocommerce form .required {
	color: var(--bio-danger);
	text-decoration: none;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input {
	width: 100%;
	min-height: 52px;
	padding: 12px 15px;
	border: 1px solid #ced5d3;
	border-radius: 8px;
	background: white;
	color: var(--bio-ink);
}

.woocommerce textarea {
	min-height: 118px;
	resize: vertical;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 0;
	line-height: 27px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 12px;
	right: 10px;
}

/* Shop/archive */
.woocommerce .woocommerce-products-header {
	margin-bottom: 50px;
	text-align: center;
}

.woocommerce .woocommerce-products-header__title {
	font-family: var(--bio-display);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 500;
	letter-spacing: -.05em;
}

.woocommerce .products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	padding: 0;
	margin: 40px 0 0;
	list-style: none;
}

.woocommerce .products::before,
.woocommerce .products::after {
	display: none;
}

.woocommerce ul.products li.product {
	float: none;
	width: auto;
	padding: 0 0 24px;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius);
	background: white;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1;
	margin: 0 0 22px;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-right: 22px;
	margin-left: 22px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--bio-display);
	font-size: 22px;
}

.woocommerce ul.products li.product .price {
	display: block;
	margin-bottom: 18px;
	color: var(--bio-ink);
	font-weight: 600;
}

.woocommerce span.onsale {
	top: 15px;
	right: 15px;
	left: auto;
	min-width: 0;
	min-height: 0;
	padding: 7px 11px;
	border-radius: 30px;
	background: var(--bio-primary);
	font-size: 11px;
	line-height: 1;
}

/* Single product */
.bio-product {
	padding: 72px 0 0;
}

.bio-product-intro {
	display: grid;
	align-items: center;
	width: min(calc(100% - 48px), calc(var(--bio-container) - 48px));
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 56px;
	padding-bottom: 92px;
	margin-inline: auto;
}

.bio-product-intro__media {
	min-width: 0;
	position: sticky;
	top: 92px;
}

.bio-product-intro__media .woocommerce-product-gallery {
	position: relative;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.bio-product-intro__media .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.bio-product-intro__media .woocommerce-product-gallery__image img,
.bio-product-intro__fallback {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	border-radius: var(--bio-radius);
	background: white;
	object-fit: cover;
}

.bio-product-intro__media .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgb(31 46 51 / 12%);
	border-radius: 50%;
	background: rgb(252 251 248 / 92%);
	box-shadow: 0 8px 24px rgb(12 31 37 / 12%);
	transition: transform .2s ease, box-shadow .2s ease;
}

.bio-product-intro__media .woocommerce-product-gallery__trigger:hover {
	box-shadow: 0 10px 28px rgb(12 31 37 / 18%);
	transform: translateY(-2px);
}

.bio-product-intro__media .woocommerce-product-gallery__trigger img {
	display: block;
	width: 17px;
	height: 17px;
}

.bio-product-intro__summary {
	min-width: 0;
}

.bio-product-intro__summary .product_title {
	margin: 8px 0 20px;
	font-size: clamp(43px, 4.6vw, 66px);
	line-height: 1;
}

.bio-product-intro__summary .woocommerce-product-details__short-description {
	color: var(--bio-muted);
	font-size: 17px;
}

.bio-product-intro__summary .price {
	margin: 28px 0 10px;
	color: var(--bio-ink);
	font-family: var(--bio-display);
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -.03em;
}

.bio-product-intro__summary .price del {
	color: #90979a;
	font-size: 19px;
	font-weight: 400;
}

.bio-product-intro__summary .price ins {
	text-decoration: none;
}

.bio-product-intro__summary .woocommerce-product-rating,
.bio-product-intro__summary .product_meta {
	color: var(--bio-muted);
	font-size: 12px;
}

.bio-product-intro__summary .stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 11px;
	margin: 0;
	border: 1px solid rgb(93 181 155 / 25%);
	border-radius: 999px;
	background: rgb(93 181 155 / 9%);
	color: var(--bio-primary-dark);
	font-size: 12px;
	font-weight: 700;
}

.bio-product-intro__summary .stock::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #59c68c;
	box-shadow: 0 0 0 4px rgb(89 198 140 / 13%);
	content: "";
}

.bio-product-intro__summary form.cart {
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin: 22px 0 18px;
}

.woocommerce .quantity .qty {
	width: 76px;
	height: 52px;
	padding: 8px;
	border: 1px solid #ced5d3;
	border-radius: 8px;
	background: white;
	text-align: center;
}

.bio-product-intro__summary .single_add_to_cart_button {
	flex: 1;
}

.bio-product-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 0;
	margin: 22px 0 0;
	color: var(--bio-muted);
	font-size: 11px;
	line-height: 1.45;
	text-align: left;
}

.bio-product-trust span {
	padding: 14px;
	border: 1px solid var(--bio-line);
	border-radius: 10px;
	background: rgb(238 244 243 / 45%);
}

.bio-product-trust strong {
	display: block;
	margin-bottom: 2px;
	color: var(--bio-ink);
	font-size: 12px;
}

.bio-product-intro__summary .product_meta {
	display: block;
	padding-top: 18px;
	margin-top: 20px;
	border-top: 1px solid var(--bio-line);
	line-height: 1.7;
}

.bio-product-story section {
	padding-block: 92px;
}

.bio-product-story section:nth-child(even) {
	background: rgb(238 244 243 / 55%);
}

.bio-product-story h2 {
	margin: 0 0 28px;
	font-family: var(--bio-display);
	font-size: clamp(35px, 4vw, 52px);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1.1;
}

.bio-product-story p {
	color: var(--bio-muted);
}

.bio-product-benefits {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 13px 34px;
	padding: 0;
	margin: 30px 0 0;
	list-style: none;
}

.bio-product-benefits li {
	position: relative;
	padding: 17px 0 17px 32px;
	border-bottom: 1px solid var(--bio-line);
}

.bio-product-benefits li::before {
	position: absolute;
	top: 17px;
	left: 0;
	color: var(--bio-primary);
	content: "✦";
}

.bio-product-faq details {
	padding: 23px 0;
	border-bottom: 1px solid var(--bio-line);
}

.bio-product-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	font-family: var(--bio-display);
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.bio-product-faq summary::after {
	color: var(--bio-primary);
	content: "+";
	font-size: 24px;
}

.bio-product-faq details[open] summary::after {
	content: "−";
}

.bio-product-faq details p {
	max-width: 700px;
	margin-bottom: 0;
}

.bio-product-final {
	padding-block: 96px;
	background: var(--bio-ink) !important;
	color: white;
	text-align: center;
}

.bio-product-final p {
	max-width: 680px;
	margin: 18px auto 30px;
	color: rgb(255 255 255 / 64%);
}

.bio-product-final .price {
	display: block;
	margin: 0 0 18px;
	color: white;
	font-family: var(--bio-display);
	font-size: 27px;
}

.bio-related {
	width: min(calc(100% - 48px), var(--bio-container));
	padding-block: 90px;
	margin-inline: auto;
}

.bio-related > h2 {
	margin-bottom: 36px;
	font-family: var(--bio-display);
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 500;
	letter-spacing: -.04em;
}

.bio-related .products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cart */
.woocommerce-cart .bio-woocommerce,
.woocommerce-checkout .bio-woocommerce {
	padding-top: 55px;
}

.bio-woo-head {
	margin-bottom: 45px;
}

.bio-woo-head .bio-kicker {
	margin-bottom: 12px;
}

.woocommerce-cart-form {
	width: calc(100% - 400px);
	float: left;
}

.woocommerce .cart-collaterals {
	width: 350px;
	float: right;
}

.woocommerce .cart-collaterals::after {
	display: table;
	clear: both;
	content: "";
}

.woocommerce::after,
.woocommerce-cart-form::after,
.col2-set::after {
	display: table;
	clear: both;
	content: "";
}

.woocommerce table.shop_table {
	width: 100%;
	border: 1px solid var(--bio-line);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--bio-radius);
	background: white;
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 18px;
	border: 0;
	border-bottom: 1px solid var(--bio-line);
	text-align: left;
}

.woocommerce table.shop_table tr:last-child td {
	border-bottom: 0;
}

.woocommerce table.shop_table th {
	background: var(--bio-soft);
	font-family: "Courier New", monospace;
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.woocommerce-cart-form .product-thumbnail img {
	width: 74px;
	border-radius: 8px;
}

.woocommerce-cart-form .product-name a {
	font-family: var(--bio-display);
	font-weight: 600;
}

.woocommerce a.remove {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	color: var(--bio-danger) !important;
	font-size: 20px;
}

.woocommerce a.remove:hover {
	background: #fee;
}

.woocommerce-cart-form .actions {
	background: white;
}

.woocommerce-cart-form .coupon {
	display: flex;
	gap: 8px;
}

.woocommerce-cart-form .coupon .input-text {
	width: 190px !important;
}

.woocommerce .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	padding: 26px;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius);
	background: white;
	box-shadow: var(--bio-shadow);
}

.woocommerce .cart-collaterals .cart_totals h2 {
	margin: 0 0 18px;
	font-family: var(--bio-display);
	font-size: 25px;
}

.woocommerce .cart-collaterals table.shop_table {
	border-radius: 0;
	border-width: 1px 0 0;
}

.woocommerce .cart-collaterals table.shop_table th {
	background: none;
}

.woocommerce .wc-proceed-to-checkout {
	padding: 20px 0 0;
}

.woocommerce .wc-proceed-to-checkout .checkout-button {
	width: 100%;
	margin: 0;
}

.cart-empty.woocommerce-info {
	display: block;
	padding: 52px;
	text-align: center;
}

.return-to-shop {
	text-align: center;
}

/* Checkout */
.woocommerce-checkout .bio-woo-head {
	margin-bottom: 30px;
}

.bio-checkout-assurances {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	padding: 0;
	margin: 0 0 30px;
	overflow: hidden;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius-sm);
	background: var(--bio-line);
	list-style: none;
}

.bio-checkout-assurances li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: rgb(238 244 243 / 72%);
}

.bio-checkout-assurances img {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	filter: invert(47%) sepia(15%) saturate(1466%) hue-rotate(145deg) brightness(95%);
}

.bio-checkout-assurances strong,
.bio-checkout-assurances span {
	display: block;
}

.bio-checkout-assurances strong {
	color: var(--bio-ink);
	font-size: 12px;
	line-height: 1.35;
}

.bio-checkout-assurances span {
	color: var(--bio-muted);
	font-size: 10px;
	line-height: 1.45;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle {
	max-width: none;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	display: block;
	padding: 16px 20px;
	border-top-width: 1px;
	background: white;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info strong,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info span {
	display: block;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info span {
	margin-top: 3px;
	color: var(--bio-muted);
	font-size: 12px;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
	display: inline;
	margin-left: 4px;
	color: var(--bio-primary-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.woocommerce-checkout form.checkout_coupon {
	display: block !important;
	position: relative;
	max-width: none;
	padding: 22px;
	margin: -8px 0 32px;
	overflow: hidden;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius-sm);
	background: white;
	box-shadow: 0 12px 35px rgb(11 34 39 / 7%);
}

.woocommerce-checkout form.checkout_coupon::after {
	display: table;
	clear: both;
	content: "";
}

.woocommerce-checkout form.checkout_coupon .form-row {
	margin-bottom: 0;
}

.woocommerce-checkout form.checkout_coupon .form-row-first {
	width: calc(100% - 174px);
}

.woocommerce-checkout form.checkout_coupon .form-row-last {
	width: 158px;
}

.woocommerce-checkout form.checkout_coupon .button {
	width: 100%;
	min-height: 52px;
}

.woocommerce-checkout form.checkout_coupon .has-error {
	border-color: var(--bio-danger);
	box-shadow: 0 0 0 3px rgb(190 50 50 / 10%);
}

.woocommerce-checkout form.checkout_coupon .coupon-error-notice {
	display: block;
	padding: 7px 2px 0;
	color: var(--bio-danger);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.woocommerce-checkout form.checkout_coupon + .woocommerce-message,
.woocommerce-checkout .woocommerce-form-coupon-toggle + .woocommerce-message {
	max-width: none;
}

.woocommerce-checkout .superfrete-number-notice {
	display: block !important;
	padding: 15px 20px;
	border: 1px solid rgb(75 150 168 / 24%);
	border-left: 4px solid var(--bio-primary);
	border-radius: var(--bio-radius-sm);
	background: rgb(220 239 241 / 36%);
	font-size: 13px;
}

.woocommerce-checkout form.checkout {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 1fr) 420px;
	grid-template-areas: "customer review";
	gap: 40px;
}

.woocommerce-checkout #customer_details {
	display: block;
	grid-area: customer;
	min-width: 0;
	width: auto;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: 100%;
	padding: 30px;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius);
	background: white;
}

.woocommerce-checkout #customer_details .col-2 {
	margin-top: 22px;
}

.woocommerce-checkout h3 {
	margin: 0 0 26px;
	font-family: var(--bio-display);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -.025em;
}

.woocommerce-checkout #customer_details .col-1 > .woocommerce-billing-fields > h3::before,
.woocommerce-checkout #customer_details .col-2 > .woocommerce-shipping-fields > h3::before {
	display: inline-grid;
	width: 28px;
	height: 28px;
	margin-right: 9px;
	place-items: center;
	border-radius: 50%;
	background: var(--bio-primary-pale);
	color: var(--bio-primary-dark);
	font-family: var(--bio-mono);
	font-size: 10px;
	vertical-align: 4px;
}

.woocommerce-checkout #customer_details .col-1 > .woocommerce-billing-fields > h3::before {
	content: "01";
}

.woocommerce-checkout #customer_details .col-2 > .woocommerce-shipping-fields > h3::before {
	content: "02";
}

.woocommerce-checkout form .form-row label {
	margin-bottom: 6px;
	color: #394348;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
	border-color: #d7dedc;
	background: #fdfdfc;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single {
	border-color: var(--bio-primary);
	outline: 0;
	background: white;
	box-shadow: 0 0 0 3px rgb(75 150 168 / 12%);
}

.woocommerce-checkout .woocommerce-input-wrapper .description {
	display: block;
	padding-top: 5px;
	color: var(--bio-muted);
	font-size: 10px;
}

.woocommerce-checkout #order_review_heading {
	display: none;
}

.woocommerce-checkout #order_review {
	position: sticky;
	top: 92px;
	grid-area: review;
	min-width: 0;
	padding: 28px;
	border: 1px solid var(--bio-line);
	border-radius: var(--bio-radius);
	background: white;
	box-shadow: var(--bio-shadow);
}

.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup,
.woocommerce-checkout form.checkout > .woocommerce-error,
.woocommerce-checkout form.checkout > .woocommerce-message,
.woocommerce-checkout form.checkout > .woocommerce-info {
	grid-column: 1 / -1;
}

.woocommerce-checkout form.checkout_coupon.processing {
	pointer-events: none;
}

.woocommerce-checkout form.checkout_coupon .blockUI.blockOverlay {
	border-radius: inherit;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-remove-coupon {
	display: inline-block;
	margin-left: 5px;
	color: var(--bio-danger);
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.woocommerce-checkout #order_review::before {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
	font-family: var(--bio-display);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -.025em;
	content: "Resumo do pedido";
}

.woocommerce-checkout-review-order-table {
	margin-bottom: 0 !important;
	border-radius: 0 !important;
	border-width: 1px 0 0 !important;
}

.woocommerce-checkout-review-order-table thead th {
	padding: 13px 10px !important;
	background: transparent !important;
}

.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table tbody th,
.woocommerce-checkout-review-order-table tfoot th {
	padding: 16px 10px !important;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
}

.bio-checkout-product {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--bio-display);
	font-weight: 600;
	line-height: 1.25;
}

.bio-checkout-product__image {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border: 1px solid var(--bio-line);
	border-radius: 9px;
	background: white;
	object-fit: cover;
}

.bio-checkout-product__copy,
.bio-checkout-product__name {
	display: block;
}

.bio-checkout-product__copy small {
	display: block;
	margin-top: 3px;
	color: var(--bio-muted);
	font-family: var(--bio-body);
	font-size: 11px;
	font-weight: 500;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	padding-top: 20px !important;
	color: var(--bio-ink);
	font-size: 17px;
}

.woocommerce-checkout #payment {
	margin-top: 25px;
	overflow: hidden;
	border: 1px solid var(--bio-line);
	border-radius: 12px;
	background: rgb(238 244 243 / 55%);
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 8px 20px;
	margin: 0;
	border-bottom-color: var(--bio-line);
	list-style: none;
}

.woocommerce-checkout #payment ul.payment_methods > li {
	padding: 14px 0;
	border-bottom: 1px solid var(--bio-line);
}

.woocommerce-checkout #payment ul.payment_methods > li:last-child {
	border-bottom: 0;
}

.woocommerce-checkout #payment input[type="radio"] {
	width: 18px;
	height: 18px;
	margin-right: 7px;
	accent-color: var(--bio-primary);
}

.woocommerce-checkout #payment label {
	color: var(--bio-ink);
	font-family: var(--bio-display);
	font-size: 14px;
	font-weight: 600;
}

.woocommerce-checkout #payment div.payment_box {
	padding: 13px 15px;
	margin: 12px 0 2px;
	border: 1px solid var(--bio-line);
	border-radius: 8px;
	background: white;
	color: var(--bio-muted);
	font-size: 13px;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: white;
}

.woocommerce-checkout #payment .place-order {
	padding: 20px;
	margin: 0;
	background: white;
}

.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 56px;
	margin-top: 15px;
	border-radius: 10px;
	font-size: 15px;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
	color: var(--bio-muted);
	font-size: 11px;
	line-height: 1.55;
}

/* WooCommerce blocks */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	margin: 0 !important;
}

.wc-block-cart,
.wc-block-checkout {
	color: var(--bio-ink);
}

.wc-block-components-sidebar,
.wc-block-checkout__sidebar {
	padding: 25px !important;
	border: 1px solid var(--bio-line) !important;
	border-radius: var(--bio-radius);
	background: white;
	box-shadow: var(--bio-shadow);
}

.wc-block-components-product-name {
	font-family: var(--bio-display);
	font-weight: 600;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
	border-radius: 8px;
}

.wc-block-components-totals-wrapper {
	border-color: var(--bio-line) !important;
}

.wc-block-components-checkout-step__heading {
	font-family: var(--bio-display);
}

.wc-block-components-checkout-step__title {
	font-weight: 600;
}

/* Account/order */
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 25%;
}

.woocommerce-account .woocommerce-MyAccount-content {
	width: 70%;
}

.woocommerce-MyAccount-navigation ul {
	padding: 0;
	margin: 0;
	border: 1px solid var(--bio-line);
	border-radius: 12px;
	overflow: hidden;
	list-style: none;
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 13px 17px;
	border-bottom: 1px solid var(--bio-line);
	background: white;
}

.woocommerce-MyAccount-navigation li.is-active a {
	background: var(--bio-soft);
	color: var(--bio-primary-dark);
	font-weight: 700;
}

/* Reference-matched institutional pages */
.bio-reference-page .bio-cart-link {
	display: none;
}

.bio-reference-page .bio-whatsapp {
	display: none;
}

.bio-reference-page .bio-site-header {
	background: rgb(252 251 248 / 92%);
}

.bio-reference-page .bio-header-buy {
	min-height: 36px;
	padding: 8px 24px;
	border-radius: 999px;
}

.bio-about-label {
	margin: 0;
	color: var(--bio-primary-dark);
	font-family: var(--bio-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	line-height: 1.6;
	text-transform: uppercase;
}

.bio-about-hero {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	background-color: #172128;
	background-image:
		linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
	background-size: 64px 64px;
	color: var(--bio-bg);
}

.bio-about-hero__inner {
	position: relative;
	z-index: 2;
	padding: 96px 24px 150px;
	text-align: center;
}

.bio-about-hero .bio-signal {
	display: inline-flex;
	margin: 0 auto;
	text-transform: uppercase;
}

.bio-about-hero h1 {
	max-width: 1000px;
	margin: 34px auto 34px;
	font-family: var(--bio-display);
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.05;
}

.bio-about-hero h1 em,
.bio-about-cta h2 em {
	display: block;
	color: var(--bio-green);
	font-style: normal;
}

.bio-about-hero__copy {
	max-width: 740px;
	margin-inline: auto;
	color: rgb(252 251 248 / 76%);
	font-size: 17px;
	line-height: 1.65;
}

.bio-about-hero__copy p {
	margin: 0 0 20px;
}

.bio-about-wave {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 120px;
	color: var(--bio-green);
	opacity: .26;
}

.bio-about-intro {
	padding-block: 112px;
}

.bio-about-intro__grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	padding-inline: 24px;
}

.bio-about-intro__media {
	position: relative;
}

.bio-about-intro__media > img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 18px;
	object-fit: cover;
}

.bio-about-research {
	position: absolute;
	right: -24px;
	bottom: -24px;
	width: 204px;
	padding: 25px;
	border-radius: 18px;
	background: var(--bio-primary);
	box-shadow: var(--bio-shadow);
	color: white;
}

.bio-about-research strong,
.bio-about-research span {
	display: block;
}

.bio-about-research strong {
	font-family: var(--bio-display);
	font-size: 38px;
	line-height: 1;
}

.bio-about-research span {
	margin-top: 9px;
	font-family: var(--bio-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.bio-about-intro__copy h2,
.bio-about-section-head h2,
.bio-about-cta h2,
.bio-faq-reference h1,
.bio-faq-cta h2,
.bio-contact-reference h1 {
	font-family: var(--bio-display);
	font-weight: 600;
	letter-spacing: -.045em;
}

.bio-faq-reference h1,
.bio-faq-cta h2,
.bio-contact-reference h1 {
	letter-spacing: -.03em;
}

.bio-about-intro__copy h2 {
	margin: 18px 0 22px;
	font-size: 48px;
	line-height: 1;
}

.bio-about-intro__copy > p:not(.bio-about-label),
.bio-about-section-head > p:not(.bio-about-label) {
	color: var(--bio-muted);
	font-size: 16px;
	line-height: 1.58;
}

.bio-about-intro__copy > p {
	margin: 0 0 20px;
}

.bio-about-note {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	margin-top: 24px;
	border: 1px solid var(--bio-line);
	border-radius: 16px;
	background: #f5f7f6;
}

.bio-about-note img,
.bio-about-feature-grid article span img,
.bio-about-quote > span img,
.bio-about-pressure-grid img,
.bio-contact-reference__links img {
	filter: invert(47%) sepia(19%) saturate(1168%) hue-rotate(145deg) brightness(93%) contrast(90%);
}

.bio-about-note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

.bio-about-mechanism {
	padding-block: 112px;
	background: #f2f6f5;
}

.bio-about-section-head {
	max-width: 780px;
	margin: 0 auto 56px;
	text-align: center;
}

.bio-about-section-head h2 {
	margin: 18px 0 24px;
	font-size: 48px;
	line-height: 1.04;
}

.bio-about-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-inline: 24px;
}

.bio-about-feature-grid article,
.bio-about-quote {
	border: 1px solid var(--bio-line);
	border-radius: 18px;
	background: white;
}

.bio-about-feature-grid article {
	min-height: 200px;
	padding: 28px;
}

.bio-about-feature-grid article > span,
.bio-about-quote > span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 13px;
	background: var(--bio-soft);
}

.bio-about-feature-grid h3 {
	margin: 24px 0 8px;
	font-family: var(--bio-display);
	font-size: 18px;
	line-height: 1.3;
}

.bio-about-feature-grid p {
	margin: 0;
	color: var(--bio-muted);
	font-size: 14px;
	line-height: 1.45;
}

.bio-about-quote {
	display: grid;
	max-width: 896px;
	grid-template-columns: 48px 1fr;
	gap: 24px;
	padding: 36px 40px;
	margin: 56px auto 0;
}

.bio-about-quote blockquote {
	margin: 0;
	font-family: var(--bio-display);
	font-size: 26px;
	line-height: 1.35;
}

.bio-about-quote small {
	display: block;
	margin-bottom: 8px;
	color: var(--bio-primary-dark);
	font-family: var(--bio-mono);
	font-size: 11px;
	letter-spacing: .2em;
}

.bio-about-now {
	padding-block: 112px;
	background-color: #172128;
	background-image:
		linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
	background-size: 64px 64px;
	color: white;
}

.bio-about-now .bio-about-label {
	color: var(--bio-green);
}

.bio-about-now .bio-about-section-head > p:not(.bio-about-label) {
	color: rgb(255 255 255 / 72%);
}

.bio-about-pressure-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding-inline: 24px;
}

.bio-about-pressure-grid article {
	min-height: 154px;
	padding: 24px;
	border: 1px solid rgb(255 255 255 / 17%);
	border-radius: 18px;
	background: rgb(255 255 255 / 4%);
}

.bio-about-pressure-grid img {
	filter: invert(81%) sepia(56%) saturate(457%) hue-rotate(89deg) brightness(96%) contrast(91%);
}

.bio-about-pressure-grid h3 {
	margin: 16px 0 6px;
	font-family: var(--bio-mono);
	font-size: 13px;
	letter-spacing: .02em;
	line-height: 1.35;
	text-transform: uppercase;
}

.bio-about-pressure-grid p {
	margin: 0;
	color: rgb(255 255 255 / 67%);
	font-size: 14px;
	line-height: 1.45;
}

.bio-about-cta {
	padding-block: 112px;
	text-align: center;
}

.bio-about-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	margin: 0;
	border: 1px solid var(--bio-line);
	border-radius: 999px;
	font-family: var(--bio-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.bio-about-pill img {
	filter: invert(47%) sepia(19%) saturate(1168%) hue-rotate(145deg) brightness(93%) contrast(90%);
}

.bio-about-cta h2 {
	margin: 36px 0 30px;
	font-size: 58px;
	line-height: 1.08;
}

.bio-about-cta h2 em {
	color: var(--bio-primary);
}

.bio-about-cta ul {
	display: flex;
	justify-content: center;
	gap: 28px;
	padding: 0;
	margin: 0 0 36px;
	list-style: none;
}

.bio-about-cta li {
	position: relative;
	padding-left: 22px;
	color: var(--bio-muted);
	font-size: 14px;
}

.bio-about-cta li::before {
	position: absolute;
	top: .22em;
	left: 0;
	width: 16px;
	height: 16px;
	background: url("assets/icons/circle-check.svg") center / contain no-repeat;
	content: "";
}

.bio-about-cta .bio-button {
	min-width: 252px;
	border-radius: 999px;
}

.bio-faq-reference {
	padding-block: 96px 32px;
}

.bio-faq-reference .bio-narrow {
	width: min(calc(100% - 48px), 720px);
}

.bio-faq-reference__head {
	margin-bottom: 109px;
	text-align: center;
}

.bio-faq-reference__head h1 {
	margin: 0;
	font-size: 60px;
	line-height: 1;
}

.bio-faq-reference__head p {
	max-width: 620px;
	margin: 26px auto 0;
	color: var(--bio-muted);
	font-size: 18px;
	line-height: 1.55;
}

.bio-faq-group {
	margin-bottom: 68px;
}

.bio-faq-group > h2 {
	margin: 0 0 24px;
	color: var(--bio-primary-dark);
	font-family: var(--bio-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	line-height: 1.5;
	text-transform: uppercase;
}

.bio-faq-list {
	overflow: hidden;
	border: 1px solid var(--bio-line);
	border-radius: 18px;
	background: white;
}

.bio-faq-list details + details {
	border-top: 1px solid var(--bio-line);
}

.bio-faq-list details[open] {
	background: #f7f9f8;
}

.bio-faq-list summary {
	display: flex;
	min-height: 72px;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 23px 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	list-style: none;
	cursor: pointer;
}

.bio-faq-list summary::-webkit-details-marker {
	display: none;
}

.bio-faq-list summary b {
	color: var(--bio-primary-dark);
	font-size: 18px;
	font-weight: 500;
	transition: transform .2s ease;
}

.bio-faq-list details[open] summary b {
	transform: rotate(45deg);
}

.bio-faq-answer {
	padding: 0 24px 24px;
	color: var(--bio-muted);
	font-size: 14px;
	line-height: 1.65;
}

.bio-faq-answer p {
	padding-left: 16px;
	margin: 0 0 14px;
	border-left: 2px solid var(--bio-primary);
}

.bio-faq-answer p:last-child {
	margin-bottom: 0;
}

.bio-faq-cta {
	padding: 58px 32px;
	margin-block: 88px 0;
	border: 1px solid var(--bio-line);
	border-radius: 18px;
	background: white;
	text-align: center;
}

.bio-faq-cta .bio-about-label {
	margin-bottom: 20px;
}

.bio-faq-cta h2 {
	margin: 0;
	font-size: 34px;
	line-height: 1.1;
}

.bio-faq-cta > p:not(.bio-about-label) {
	max-width: 590px;
	margin: 20px auto 28px;
	color: var(--bio-muted);
	font-size: 16px;
}

.bio-faq-cta > div {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.bio-faq-cta .bio-button {
	min-width: 188px;
	border-radius: 999px;
}

.bio-contact-reference {
	min-height: 1000px;
	padding-block: 96px 120px;
}

.bio-contact-reference__head {
	max-width: 680px;
	margin: 0 auto 48px;
	text-align: center;
}

.bio-contact-reference__head h1 {
	margin: 0;
	font-size: 60px;
	line-height: 1;
}

.bio-contact-reference__head p {
	max-width: 640px;
	margin: 28px auto 0;
	color: var(--bio-muted);
	font-size: 18px;
	line-height: 1.55;
}

.bio-contact-reference__form {
	max-width: 528px;
	padding: 32px;
	margin-inline: auto;
	border: 1px solid var(--bio-line);
	border-radius: 18px;
	background: white;
}

.bio-contact-reference__form label {
	display: block;
	margin-bottom: 16px;
	color: #525b60;
	font-size: 14px;
	line-height: 1.45;
}

.bio-contact-reference__form input,
.bio-contact-reference__form textarea {
	display: block;
	width: 100%;
	padding: 12px 16px;
	margin-top: 6px;
	border: 1px solid var(--bio-line);
	border-radius: 10px;
	background: var(--bio-bg);
	color: var(--bio-ink);
	font-size: 14px;
	line-height: 20px;
	outline: 0;
}

.bio-contact-reference__form input {
	height: 46px;
}

.bio-contact-reference__form textarea {
	min-height: 126px;
	resize: vertical;
}

.bio-contact-reference__form input:focus,
.bio-contact-reference__form textarea:focus {
	border-color: var(--bio-primary);
	box-shadow: 0 0 0 3px rgb(75 150 168 / 15%);
}

.bio-contact-reference__form .bio-button {
	width: 100%;
	min-height: 44px;
	border-radius: 999px;
}

.bio-contact-reference__links {
	display: grid;
	justify-items: center;
	gap: 10px;
	margin-top: 16px;
}

.bio-contact-reference__links a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--bio-muted);
	font-size: 14px;
}

.bio-form-notice {
	max-width: 528px;
	padding: 14px 18px;
	margin: 0 auto 20px;
	border-radius: 10px;
	font-size: 14px;
}

.bio-form-notice--success {
	background: #e9f8ee;
	color: #25663d;
}

.bio-form-notice--error {
	background: #fff0f0;
	color: var(--bio-danger);
}

@media (max-width: 1024px) {
	.bio-site-nav {
		gap: 18px;
	}

	.bio-site-nav ul {
		gap: 20px;
	}

	.bio-header-buy {
		display: none;
	}

	.bio-intro-grid {
		gap: 50px;
	}

	.bio-benefit {
		padding: 28px;
	}

	.woocommerce-cart-form {
		width: calc(100% - 335px);
	}

	.woocommerce .cart-collaterals {
		width: 300px;
	}

	.woocommerce-checkout form.checkout {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 32px;
	}
}

@media (max-width: 820px) {
	.bio-container,
	.bio-narrow {
		width: min(calc(100% - 36px), var(--bio-container));
	}

	.bio-site-header__inner {
		min-height: 64px;
		padding-inline: 8px;
	}

	.bio-logo {
		width: 130px;
	}

	.bio-menu-toggle {
		display: block;
	}

	.bio-site-nav {
		position: fixed;
		top: 65px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 28px 18px;
		background: var(--bio-bg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	}

	.bio-site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.bio-site-nav ul {
		display: grid;
		gap: 0;
	}

	.bio-site-nav li {
		border-bottom: 1px solid var(--bio-line);
	}

	.bio-site-nav a {
		display: block;
		padding: 18px 5px;
		font-family: var(--bio-display);
		font-size: 24px;
	}

	.bio-cart-link {
		position: relative;
		top: auto;
		right: auto;
		margin-left: auto;
		transform: none;
	}

	.bio-hero {
		min-height: 929px;
		align-items: start;
	}

	.bio-hero::after {
		background: linear-gradient(90deg, rgb(9 18 23 / 80%), rgb(9 18 23 / 12%)), linear-gradient(0deg, rgb(9 18 23 / 90%) 0%, transparent 68%);
	}

	.bio-hero__image {
		object-position: 58% center;
	}

	.bio-hero__content {
		width: auto;
		padding: 96px 0 80px;
		margin-inline: 8px;
	}

	.bio-hero h1 {
		margin-block: 28px 32px;
		font-size: 50px;
		letter-spacing: -.03em;
		line-height: 1;
	}

	.bio-hero p {
		margin-bottom: 28px;
		font-size: 16px;
		line-height: 1.62;
	}

	.bio-trust-strip__grid {
		grid-template-columns: 1fr 1fr;
		padding-block: 80px;
	}

	.bio-stat:nth-child(2) {
		border-right: 0;
	}

	.bio-stat:nth-child(-n+2) {
		border-bottom: 1px solid rgb(255 255 255 / 12%);
	}

	.bio-stat {
		padding: 25px 12px;
	}

	.bio-stat strong {
		font-size: 34px;
	}

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

	.bio-section__head {
		margin-bottom: 42px;
	}

	.bio-intro-grid,
	.bio-product-intro {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.bio-intro-image {
		max-width: 580px;
	}

	.bio-tech-badge {
		display: none;
	}

	.bio-intro-grid {
		padding-inline: 8px;
	}

	.bio-benefits-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bio-products-grid,
	.bio-testimonials {
		grid-template-columns: 1fr;
	}

	.bio-home-contact {
		padding-block: 78px;
		margin-bottom: 70px;
	}

	.bio-home-contact__grid {
		grid-template-columns: 1fr;
		gap: 48px;
		padding-inline: 8px;
	}

	.bio-product-card__description {
		min-height: 0;
	}

	.bio-contact-band__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 45px;
	}

	.bio-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bio-footer-brand {
		grid-column: 1 / -1;
	}

	.woocommerce .products {
		grid-template-columns: repeat(2, 1fr);
	}

	.bio-product {
		padding-top: 42px;
	}

	.bio-product-intro {
		width: min(calc(100% - 36px), var(--bio-container));
		padding-bottom: 70px;
	}

	.bio-product-intro__media {
		position: static;
	}

	.bio-product-intro__summary {
		padding-inline: 4px;
	}

	.bio-related {
		width: min(calc(100% - 36px), var(--bio-container));
	}

	.woocommerce-cart-form,
	.woocommerce .cart-collaterals {
		float: none;
		width: 100%;
	}

	.woocommerce .cart-collaterals {
		margin-top: 28px;
	}

	.woocommerce-checkout form.checkout {
		display: block;
	}

	.woocommerce-checkout form.checkout_coupon {
		max-width: none;
	}

	.woocommerce-checkout #order_review {
		position: static;
		margin-top: 48px;
	}
}

@media (max-width: 600px) {
	.bio-container,
	.bio-narrow {
		width: min(calc(100% - 32px), var(--bio-container));
	}

	.bio-header-actions {
		gap: 7px;
	}

	.bio-checkout-assurances {
		grid-template-columns: 1fr;
	}

	.bio-checkout-assurances li {
		padding: 14px 16px;
	}

	.woocommerce-checkout .superfrete-number-notice {
		display: block !important;
	}

	.woocommerce-checkout .superfrete-number-notice strong {
		display: block;
		margin-bottom: 4px;
	}

	.woocommerce-checkout #customer_details .col-1,
	.woocommerce-checkout #customer_details .col-2 {
		padding: 22px 18px;
	}

	.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
		line-height: 1.6;
	}

	.woocommerce-checkout #order_review::before,
	.woocommerce-checkout h3 {
		font-size: 23px;
	}

	.bio-home-contact__fields {
		grid-template-columns: 1fr;
	}

	.bio-home-contact__copy h2 {
		font-size: 38px;
	}

	.bio-signal {
		padding: 6px 11px;
		font-size: 10px;
	}

	.bio-hero h1 {
		font-size: 50px;
	}

	.bio-section h2,
	.bio-product-intro h1,
	.bio-woo-title {
		font-size: 38px;
	}

	.bio-benefits-grid {
		grid-template-columns: 1fr;
	}

	.bio-benefit {
		min-height: 220px;
	}

	.bio-timeline li {
		grid-template-columns: 60px 1fr;
		gap: 16px;
	}

	.bio-timeline__number {
		width: 46px;
		height: 46px;
	}

	.bio-timeline li::before {
		top: 32px;
		left: 23px;
	}

	.bio-product-card__body {
		padding: 24px;
	}

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

	.bio-footer-grid {
		grid-template-columns: 1fr;
	}

	.bio-footer-brand {
		grid-column: auto;
	}

	.bio-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.bio-whatsapp {
		right: 16px;
		bottom: 16px;
	}

	.woocommerce .products {
		grid-template-columns: 1fr;
	}

	.bio-product-intro__summary form.cart {
		flex-wrap: wrap;
	}

	.bio-product-intro__summary .product_title {
		font-size: 46px;
	}

	.bio-product-intro__summary .single_add_to_cart_button {
		width: calc(100% - 86px);
	}

	.bio-product-trust {
		grid-template-columns: 1fr;
		gap: 13px;
		text-align: left;
	}

	.bio-related .products {
		grid-template-columns: 1fr;
	}

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

	.bio-product-story section,
	.bio-product-final {
		padding-block: 72px;
	}

	.woocommerce table.shop_table_responsive tr {
		display: block;
		padding: 12px;
		border-bottom: 1px solid var(--bio-line);
	}

	.woocommerce table.shop_table_responsive tr td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 10px 6px;
		border: 0;
	}

	.woocommerce table.shop_table_responsive tr td::before {
		font-family: "Courier New", monospace;
		font-size: 10px;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	.woocommerce-cart-form .product-thumbnail {
		display: block !important;
	}

	.woocommerce-cart-form .product-thumbnail::before {
		display: none;
	}

	.woocommerce-cart-form .product-thumbnail img {
		width: 90px;
	}

	.woocommerce-cart-form .actions,
	.woocommerce-cart-form .coupon {
		display: grid !important;
		grid-template-columns: 1fr;
	}

	.woocommerce-cart-form .coupon .input-text {
		width: 100% !important;
	}

	.woocommerce-cart-form .actions > .button {
		width: 100%;
		margin-top: 10px;
	}

	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last {
		float: none;
		width: 100%;
	}

	.woocommerce-checkout form.checkout_coupon .form-row-last {
		margin-top: 10px;
	}

	.woocommerce-checkout form.checkout_coupon .form-row-first,
	.woocommerce-checkout form.checkout_coupon .form-row-last {
		float: none;
		width: 100%;
	}

	.woocommerce .cart-collaterals .cart_totals,
	.woocommerce-checkout #order_review,
	.wc-block-components-sidebar,
	.wc-block-checkout__sidebar {
		padding: 20px !important;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		margin-top: 30px;
	}
}

@media (max-width: 820px) {
	.bio-reference-page .bio-header-actions,
	.bio-reference-page .bio-site-nav {
		display: none;
	}

	.bio-reference-page .bio-site-header__inner {
		padding-inline: 6px;
	}

	.bio-about-hero {
		min-height: 780px;
	}

	.bio-about-hero__inner {
		padding: 96px 8px 120px;
	}

	.bio-about-intro__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.bio-about-intro__media {
		max-width: 560px;
	}

	.bio-about-feature-grid {
		grid-template-columns: 1fr;
	}

	.bio-about-pressure-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bio-about-cta ul {
		flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	.bio-reference-page .bio-site-header__inner {
		min-height: 65px;
	}

	.bio-reference-page .bio-logo {
		width: 132px;
	}

	.bio-about-hero {
		min-height: 770px;
		background-size: 64px 64px;
	}

	.bio-about-hero__inner {
		padding: 96px 8px 110px;
	}

	.bio-about-hero h1 {
		margin-block: 32px 30px;
		font-size: 36px;
		line-height: 1.05;
	}

	.bio-about-hero h1 br {
		display: none;
	}

	.bio-about-hero__copy {
		max-width: 330px;
		font-size: 17px;
		line-height: 1.68;
	}

	.bio-about-hero__copy p {
		margin-bottom: 22px;
	}

	.bio-about-wave {
		height: 96px;
	}

	.bio-about-intro {
		padding-block: 144px 96px;
	}

	.bio-about-intro__grid {
		display: block;
		padding-inline: 8px;
	}

	.bio-about-intro__media {
		display: none;
	}

	.bio-about-intro__copy h2 {
		margin: 18px 0 28px;
		font-size: 30px;
		line-height: 1.1;
	}

	.bio-about-intro__copy > p:not(.bio-about-label) {
		font-size: 16px;
		line-height: 1.65;
	}

	.bio-about-note {
		margin-top: 28px;
	}

	.bio-about-mechanism,
	.bio-about-now,
	.bio-about-cta {
		padding-block: 96px;
	}

	.bio-about-section-head {
		margin-bottom: 48px;
	}

	.bio-about-section-head h2 {
		margin: 18px 0 26px;
		font-size: 34px;
		line-height: 1.08;
	}

	.bio-about-section-head > p:not(.bio-about-label) {
		font-size: 16px;
		line-height: 1.65;
	}

	.bio-about-feature-grid,
	.bio-about-pressure-grid {
		grid-template-columns: 1fr;
		padding-inline: 8px;
	}

	.bio-about-feature-grid article {
		min-height: 188px;
	}

	.bio-about-quote {
		display: block;
		padding: 28px 32px;
		margin: 48px 8px 0;
	}

	.bio-about-quote blockquote {
		margin-top: 28px;
		font-size: 22px;
	}

	.bio-about-pressure-grid article {
		min-height: 150px;
	}

	.bio-about-cta h2 {
		font-size: 39px;
		line-height: 1.08;
	}

	.bio-about-cta ul {
		display: grid;
		justify-content: center;
		gap: 12px;
		text-align: left;
	}

	.bio-about-cta .bio-button {
		width: min(100%, 280px);
	}

	.bio-faq-reference {
		padding-block: 96px 24px;
	}

	.bio-faq-reference .bio-narrow {
		width: min(calc(100% - 48px), 720px);
	}

	.bio-faq-reference__head {
		margin-bottom: 114px;
	}

	.bio-faq-reference__head h1 {
		font-size: 40px;
		line-height: .98;
	}

	.bio-faq-reference__head p {
		max-width: 300px;
		margin-top: 24px;
		font-size: 18px;
		line-height: 1.55;
	}

	.bio-faq-group {
		margin-bottom: 68px;
	}

	.bio-faq-group > h2 {
		margin-bottom: 24px;
	}

	.bio-faq-list summary {
		min-height: 86px;
		align-items: center;
		gap: 12px;
		padding: 22px 24px;
		font-size: 16px;
		line-height: 1.45;
	}

	.bio-faq-answer {
		padding: 0 24px 24px;
	}

	.bio-faq-cta {
		padding: 44px 22px;
		margin-top: 72px;
	}

	.bio-faq-cta h2 {
		font-size: 30px;
	}

	.bio-faq-cta > div {
		align-items: stretch;
		flex-direction: column;
	}

	.bio-faq-cta .bio-button {
		width: 100%;
	}

	.bio-contact-reference {
		min-height: 1180px;
		padding-block: 96px 112px;
	}

	.bio-contact-reference > .bio-container {
		width: min(calc(100% - 48px), var(--bio-container));
	}

	.bio-contact-reference__head {
		margin-bottom: 54px;
	}

	.bio-contact-reference__head h1 {
		font-size: 36px;
		line-height: 1.02;
	}

	.bio-contact-reference__head p {
		margin-top: 26px;
		font-size: 18px;
		line-height: 1.55;
	}

	.bio-contact-reference__form {
		padding: 32px;
	}

	.bio-contact-reference__links {
		margin-top: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
