:root {
	--color-ink: #15110f;
	--color-muted: #6d625d;
	--color-line: #eadfd6;
	--color-paper: #fffaf5;
	--color-white: #ffffff;
	--color-orange: #d95f02;
	--color-orange-dark: #a94700;
	--color-gold: #f4ad22;
	--color-green: #1f8f52;
	--color-red: #c83222;
	--shadow-soft: 0 16px 42px rgba(21, 17, 15, 0.1);
	--shadow-tight: 0 8px 22px rgba(21, 17, 15, 0.075);
	--radius: 8px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: Inter, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
}

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

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

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

.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 24px;
	width: 100%;
}

.narrow {
	max-width: 860px;
}

.screen-reader-text,
.skip-link {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.skip-link:focus {
	background: var(--color-white);
	clip: auto;
	clip-path: none;
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 1000;
}

.site-header {
	background: rgba(255, 250, 245, 0.94);
	border-bottom: 1px solid rgba(234, 223, 214, 0.9);
	position: sticky;
	top: 0;
	transition: box-shadow 180ms ease, background 180ms ease;
	z-index: 90;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 34px rgba(21, 17, 15, 0.09);
}

.topline {
	background: var(--color-ink);
	color: #fff2e7;
	font-size: 12px;
}

.topline__inner {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	min-height: 30px;
}

.header-main {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: auto 1fr auto;
	min-height: 72px;
}

.brand img {
	width: 218px;
}

.primary-nav .menu,
.primary-nav ul {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	border-radius: 999px;
	color: var(--color-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	padding: 8px 11px;
	text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	background: rgba(217, 95, 2, 0.1);
	color: var(--color-orange-dark);
}

.header-actions {
	align-items: center;
	display: flex;
	gap: 12px;
}

.product-search input[type="search"] {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(21, 17, 15, 0.02);
	font-size: 14px;
	min-height: 38px;
	padding: 0 14px;
	width: 210px;
}

.cart-link {
	align-items: center;
	background: var(--color-ink);
	border-radius: 999px;
	color: var(--color-white);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
}

.cart-link__count {
	align-items: center;
	background: var(--color-orange);
	border-radius: 999px;
	display: inline-flex;
	height: 22px;
	justify-content: center;
	min-width: 22px;
	padding: 0 7px;
}

.mobile-featured-strip {
	display: none;
}

.menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 42px;
	padding: 8px;
	width: 42px;
}

.menu-toggle span {
	background: var(--color-ink);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 24px;
}

.hero {
	background: var(--color-paper);
	overflow: hidden;
	min-height: 438px;
	padding: 76px 0 66px;
	position: relative;
}

.hero::after {
	background:
		linear-gradient(90deg, rgba(255, 250, 245, var(--hero-overlay-left, 0.70)) 0%, rgba(255, 250, 245, var(--hero-overlay-left, 0.70)) 32%, rgba(255, 250, 245, var(--hero-overlay-middle, 0.30)) 62%, rgba(255, 250, 245, var(--hero-overlay-right, 0.08)) 100%),
		linear-gradient(180deg, rgba(255, 250, 245, var(--hero-overlay-vertical, 0.32)), rgba(255, 244, 232, var(--hero-overlay-vertical-2, 0.28)));
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.hero-slider {
	inset: 0;
	position: absolute;
	z-index: 0;
}

.hero-slider__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0;
	position: absolute;
	transform: scale(1.04);
	transition: opacity 1100ms ease, transform 7000ms ease;
	width: 100%;
}

.hero-slider__image.is-active {
	opacity: var(--hero-image-opacity, 0.7);
	transform: scale(1);
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: 46px;
	grid-template-columns: minmax(0, 670px) minmax(420px, 470px);
	position: relative;
	z-index: 1;
}

.eyebrow {
	color: var(--color-orange-dark);
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.hero h1,
.section h2,
.service-band h2,
.page-content h1 {
	line-height: 1.05;
	margin: 0;
}

.hero h1 {
	font-size: clamp(40px, 6vw, 70px);
	max-width: 680px;
}

.hero p {
	color: var(--color-muted);
	font-size: 17px;
	margin: 22px 0 0;
	max-width: 650px;
}

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

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	align-items: center;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	font-size: 14px;
	min-height: 42px;
	padding: 0 18px;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	transform: translateY(-1px);
}

.button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
	background: var(--color-orange);
	box-shadow: 0 12px 26px rgba(217, 95, 2, 0.24);
	color: var(--color-white);
}

.button--ghost {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	color: var(--color-ink);
}

.hero-board {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	min-height: 460px;
}

.hero-board__tile {
	background: var(--color-white);
	border: 1px solid rgba(234, 223, 214, 0.86);
	border-radius: var(--radius);
	box-shadow: var(--shadow-tight);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 210px;
	overflow: hidden;
	padding: 22px;
	position: relative;
}

.hero-board__tile::before {
	background:
		linear-gradient(135deg, rgba(217, 95, 2, 0.9), rgba(244, 173, 34, 0.65)),
		repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.28) 12px 13px);
	border-radius: 50%;
	content: "";
	height: 170px;
	position: absolute;
	right: -42px;
	top: -42px;
	width: 170px;
}

.hero-board__tile--large {
	background: linear-gradient(145deg, var(--color-orange), var(--color-gold));
	color: var(--color-white);
	grid-row: span 2;
}

.hero-board__tile--large::before {
	background: rgba(255, 255, 255, 0.24);
	height: 240px;
	width: 240px;
}

.hero-board__tile--dark {
	background: var(--color-ink);
	color: var(--color-white);
}

.hero-board span {
	font-size: 13px;
	font-weight: 900;
	position: relative;
	text-transform: uppercase;
}

.hero-board strong {
	font-size: 24px;
	line-height: 1.1;
	margin-top: 8px;
	max-width: 260px;
	position: relative;
}

.hero-showcase {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(190px, 1.05fr) minmax(170px, 0.95fr);
	max-width: 460px;
	width: 100%;
}

.hero-benefits {
	background: rgba(255, 250, 245, 0.84);
	border: 1px solid rgba(234, 223, 214, 0.92);
	border-radius: 12px;
	box-shadow: 0 18px 46px rgba(21, 17, 15, 0.12);
	margin-left: auto;
	padding: 22px;
	width: min(100%, 340px);
}

.hero-benefits > span {
	color: var(--color-orange-dark);
	display: block;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.hero-benefits ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-benefits li {
	align-items: center;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(234, 223, 214, 0.9);
	border-radius: 999px;
	color: var(--color-ink);
	display: flex;
	font-size: 13px;
	font-weight: 850;
	gap: 9px;
	min-height: 40px;
	padding: 9px 12px;
}

.hero-benefits li::before {
	background: var(--color-orange);
	border-radius: 999px;
	content: "";
	height: 8px;
	width: 8px;
}

.showcase-card {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(234, 223, 214, 0.92);
	border-radius: var(--radius);
	box-shadow: var(--shadow-tight);
	min-height: 124px;
	overflow: hidden;
	padding: 16px;
	position: relative;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-card:hover {
	box-shadow: var(--shadow-soft);
	transform: translateY(-3px);
}

.showcase-card::before {
	background:
		linear-gradient(135deg, rgba(217, 95, 2, 0.24), rgba(244, 173, 34, 0.2)),
		repeating-linear-gradient(45deg, transparent 0 10px, rgba(255, 255, 255, 0.38) 10px 11px);
	border-radius: 999px;
	content: "";
	height: 134px;
	position: absolute;
	right: -34px;
	top: -48px;
	width: 134px;
}

.showcase-card--main {
	background: linear-gradient(145deg, #d95f02, #f4ad22);
	color: var(--color-white);
	grid-row: span 2;
	min-height: 260px;
}

.showcase-card--main::before {
	background: rgba(255, 255, 255, 0.24);
	height: 178px;
	right: -50px;
	top: -44px;
	width: 178px;
}

.showcase-card--dark {
	background: var(--color-ink);
	color: var(--color-white);
}

.showcase-card span,
.showcase-card strong,
.showcase-card small {
	display: block;
	position: relative;
}

.showcase-card span {
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.showcase-card strong {
	font-size: 18px;
	line-height: 1.14;
	margin-top: 40px;
	max-width: 260px;
}

.showcase-card--main strong {
	font-size: 22px;
	margin-top: 102px;
}

.showcase-card small {
	font-size: 12px;
	line-height: 1.45;
	margin-top: 8px;
	max-width: 250px;
	opacity: 0.88;
}

.trust-strip {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-line);
	border-top: 1px solid var(--color-line);
}

.trust-strip__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
	padding: 18px 16px;
}

.trust-strip strong,
.trust-strip span {
	display: block;
}

.trust-strip strong {
	font-size: 15px;
}

.trust-strip span {
	color: var(--color-muted);
	font-size: 13px;
	margin-top: 4px;
}

.section {
	padding: 62px 0;
}

.section--compact {
	padding-bottom: 56px;
}

.section--warm {
	background: #fff3e6;
}

.section__header {
	align-items: end;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.section__header h2 {
	font-size: clamp(28px, 3vw, 42px);
}

.section__header a {
	color: var(--color-orange-dark);
	font-weight: 900;
}

.section-link {
	background: rgba(217, 95, 2, 0.08);
	border-radius: 999px;
	color: var(--color-orange-dark);
	display: inline-flex;
	font-size: 13px;
	min-height: 36px;
	padding: 8px 14px;
}

.category-grid,
.editorial-grid,
.process-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.editorial-card,
.process-card {
	border: 1px solid rgba(234, 223, 214, 0.92);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(21, 17, 15, 0.055);
	overflow: hidden;
	position: relative;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.editorial-card:hover,
.process-card:hover {
	box-shadow: var(--shadow-soft);
	transform: translateY(-3px);
}

.category-card {
	background:
		linear-gradient(180deg, rgba(21, 17, 15, 0.08) 0%, rgba(21, 17, 15, 0.68) 100%),
		var(--category-image, linear-gradient(145deg, #fff, #fff4e8));
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 230px;
	padding: 24px;
}

.category-card::before {
	background: linear-gradient(135deg, rgba(217, 95, 2, 0.68), rgba(244, 173, 34, 0.36));
	border-radius: 999px;
	content: "";
	height: 150px;
	mix-blend-mode: screen;
	opacity: 0.55;
	position: absolute;
	right: -42px;
	top: -54px;
	width: 150px;
}

.category-card::after {
	background: linear-gradient(180deg, rgba(21, 17, 15, 0.04), rgba(21, 17, 15, 0.8));
	bottom: 0;
	content: "";
	height: 62%;
	left: 0;
	position: absolute;
	right: 0;
}

.category-card span {
	display: block;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.1;
	max-width: 180px;
	position: relative;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
	z-index: 1;
}

.category-card p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
	margin: 0;
	max-width: 92%;
	z-index: 1;
}

.category-card--orange {
	background-position: center 56%;
}

.category-card--gold::before {
	background: linear-gradient(135deg, rgba(244, 173, 34, 0.7), rgba(255, 255, 255, 0.3));
}

.category-card--gold {
	background-position: center 62%;
}

.category-card--dark {
	background-position: center 50%;
}

.category-card--dark p {
	color: rgba(255, 255, 255, 0.9);
}

.category-card--green::before {
	background: linear-gradient(135deg, rgba(31, 143, 82, 0.62), rgba(244, 173, 34, 0.24));
}

.category-card--green {
	background-position: center 48%;
}

.feature-strip {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-line);
	border-top: 1px solid var(--color-line);
	padding: 34px 0;
}

.feature-strip__grid {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: 0.95fr 1.05fr;
}

.feature-strip h2 {
	font-size: clamp(24px, 2.6vw, 36px);
	line-height: 1.12;
	margin: 0;
}

.feature-list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
}

.feature-list span {
	background: #fff8f0;
	border: 1px solid #f3dfc7;
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	padding: 14px;
}

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

.editorial-card {
	background: var(--color-white);
	min-height: 182px;
	padding: 22px;
}

.editorial-card span {
	color: var(--color-orange-dark);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.editorial-card h3 {
	font-size: 19px;
	line-height: 1.25;
	margin: 52px 0 0;
}

.process-section {
	background: linear-gradient(180deg, var(--color-paper), #fff);
}

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

.process-card {
	background: var(--color-white);
	padding: 22px;
}

.process-card span {
	color: var(--color-orange);
	font-size: 12px;
	font-weight: 900;
}

.process-card h3 {
	font-size: 20px;
	line-height: 1.18;
	margin: 18px 0 8px;
}

.process-card p {
	color: var(--color-muted);
	font-size: 14px;
	margin: 0;
}

.woo-shortcode .woocommerce {
	width: 100%;
}

.woocommerce ul.products {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
}

.shop-products-panel .woocommerce ul.products,
.shop-products-panel ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
	border: 1px solid rgba(234, 223, 214, 0.98);
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(21, 17, 15, 0.065);
	display: flex;
	float: none;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	padding: 0 0 14px;
	position: relative;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
	width: auto;
}

.woocommerce ul.products li.product:hover {
	box-shadow: var(--shadow-soft);
	border-color: rgba(217, 95, 2, 0.26);
	transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 0.82;
	background: #f8f2ed;
	margin: 0;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: block;
}

.bisno-product-category {
	background: rgba(255, 250, 245, 0.95);
	border: 1px solid rgba(234, 223, 214, 0.9);
	border-radius: 999px;
	color: var(--color-orange-dark);
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	left: 14px;
	line-height: 1;
	max-width: calc(100% - 28px);
	overflow: hidden;
	padding: 7px 10px;
	position: absolute;
	text-overflow: ellipsis;
	text-transform: uppercase;
	top: 14px;
	white-space: nowrap;
	z-index: 2;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--color-ink);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.22;
	margin: 14px 14px 7px;
	min-height: 38px;
	padding: 0;
}

.woocommerce ul.products li.product .price {
	color: var(--color-orange-dark);
	font-size: 18px;
	font-weight: 900;
	margin: 0 14px 8px;
}

.bisno-stock-badge {
	align-items: center;
	color: var(--color-green);
	display: inline-flex;
	font-size: 12px;
	font-weight: 850;
	gap: 6px;
	margin: 0 14px 12px;
}

.bisno-stock-badge::before {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 7px;
	width: 7px;
}

.bisno-stock-badge--out {
	color: var(--color-red);
}

.woocommerce ul.products li.product .button {
	align-self: stretch;
	align-items: center;
	display: inline-flex;
	font-size: 13px;
	justify-content: center;
	line-height: 1;
	margin: auto 14px 0;
	min-height: 36px;
	padding: 0 14px;
	text-align: center;
}

.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button,
.woocommerce ul.products li.product .added_to_cart {
	border-radius: 999px;
	box-sizing: border-box;
	height: 36px;
	line-height: 36px;
	padding-bottom: 0;
	padding-top: 0;
	white-space: nowrap;
}

.woocommerce span.onsale {
	background: var(--color-red);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	left: 12px;
	line-height: 1;
	min-height: auto;
	padding: 8px 10px;
	top: 12px;
}

.service-band {
	background: var(--color-ink);
	color: var(--color-white);
	padding: 58px 0;
}

.service-band__grid {
	align-items: start;
	display: grid;
	gap: 42px;
	grid-template-columns: 0.9fr 1.1fr;
}

.service-band .eyebrow {
	color: var(--color-gold);
}

.service-band h2 {
	font-size: clamp(28px, 3vw, 42px);
}

.service-band ul {
	display: grid;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-band li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 18px;
}

.content-shell,
.shop-shell {
	padding: 46px 0 76px;
}

.shop-archive-shell {
	background: linear-gradient(180deg, #fffaf5 0%, #fff4eb 100%);
}

.shop-archive-header {
	margin-bottom: 26px;
	max-width: 760px;
}

.shop-archive-header span {
	color: var(--color-orange-dark);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.shop-archive-header h1 {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1;
	margin: 0 0 12px;
}

.shop-archive-header p {
	color: var(--color-muted);
	font-size: 17px;
	margin: 0;
}

.shop-page-grid {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: 270px minmax(0, 1fr);
}

.shop-sidebar {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 118px;
}

.shop-sidebar-card {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	padding: 18px;
}

.shop-sidebar-card h2 {
	font-size: 16px;
	line-height: 1.2;
	margin: 0 0 14px;
}

.shop-sidebar-search input[type="search"] {
	background: #fffdfb;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	min-height: 42px;
	padding: 0 14px;
	width: 100%;
}

.shop-category-list {
	display: grid;
	gap: 8px;
}

.shop-category-list a {
	align-items: center;
	background: #fff8f0;
	border: 1px solid #f2dec8;
	border-radius: 999px;
	display: flex;
	font-size: 13px;
	font-weight: 850;
	gap: 8px;
	justify-content: space-between;
	min-height: 38px;
	padding: 7px 10px 7px 13px;
}

.shop-category-list a:hover,
.shop-category-list a.is-active {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-white);
}

.shop-category-list small {
	align-items: center;
	background: rgba(21, 17, 15, 0.08);
	border-radius: 999px;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	justify-content: center;
	min-width: 24px;
	padding: 3px 6px;
}

.shop-category-list a.is-active small,
.shop-category-list a:hover small {
	background: rgba(255, 255, 255, 0.22);
}

.shop-sidebar-note {
	background: var(--color-ink);
	color: var(--color-white);
}

.shop-sidebar-note ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-sidebar-note li {
	color: #f1e7df;
	font-size: 13px;
	line-height: 1.4;
}

.shop-products-panel {
	min-width: 0;
}

.shop-toolbar {
	align-items: center;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 18px;
	padding: 14px 16px;
}

.content-card,
.page-content,
.setup-notice {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-tight);
	padding: 32px;
}

.post-list {
	display: grid;
	gap: 18px;
}

.page-content h1 {
	font-size: clamp(34px, 5vw, 56px);
	margin-bottom: 22px;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--color-muted);
	font-size: 13px;
	margin-bottom: 24px;
}

.bisno-shop-intro {
	align-items: center;
	background: linear-gradient(135deg, #15110f, #2b211c);
	border-radius: 12px;
	color: var(--color-white);
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr auto;
	margin: 0 0 28px;
	overflow: hidden;
	padding: 24px;
	position: relative;
}

.bisno-shop-intro::after {
	background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
	border-radius: 999px;
	content: "";
	height: 160px;
	opacity: 0.22;
	position: absolute;
	right: -54px;
	top: -70px;
	width: 160px;
}

.bisno-shop-intro span {
	color: var(--color-gold);
	display: block;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.bisno-shop-intro p {
	font-size: 20px;
	font-weight: 850;
	line-height: 1.25;
	margin: 0;
	max-width: 640px;
	position: relative;
	z-index: 1;
}

.bisno-shop-intro ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.bisno-shop-intro li {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 12px;
	white-space: nowrap;
}

.woocommerce .woocommerce-result-count {
	color: var(--color-muted);
	font-size: 13px;
	margin: 0 0 18px;
}

.woocommerce .woocommerce-ordering {
	margin: 0 0 18px;
}

.woocommerce .woocommerce-ordering select {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 999px;
	color: var(--color-ink);
	min-height: 40px;
	padding: 0 14px;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart h1,
.woocommerce-checkout h1 {
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1.05;
	margin: 0 0 18px;
}

.woocommerce div.product {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	margin: 0 auto;
	max-width: 1180px;
	padding: 24px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 0;
}

.woocommerce div.product div.images {
	max-width: 520px;
}

.woocommerce div.product div.images img {
	background: #f8f2ed;
	border-radius: 10px;
	max-height: 560px;
	object-fit: contain;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--color-orange-dark);
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 16px;
}

.woocommerce div.product .summary {
	background: #fffdfb;
	border: 1px solid var(--color-line);
	border-radius: 12px;
	padding: 22px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.55;
	margin-bottom: 14px;
}

.woocommerce div.product form.cart {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.woocommerce .quantity .qty {
	border: 1px solid var(--color-line);
	border-radius: 999px;
	min-height: 42px;
	padding: 0 8px;
	width: 76px;
}

.bisno-product-service {
	background: #fff3e6;
	border: 1px solid #f5d3af;
	border-radius: 10px;
	margin: 18px 0;
	padding: 15px;
}

.bisno-product-service strong {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

.bisno-product-service p {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.woocommerce div.product .product_meta {
	border-top: 1px solid var(--color-line);
	color: var(--color-muted);
	font-size: 13px;
	margin-top: 18px;
	padding-top: 16px;
}

.woocommerce div.product .woocommerce-tabs {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	margin: 24px auto 0;
	max-width: 1180px;
	padding: 18px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin: 0 0 18px;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: #fff8f0;
	border: 1px solid #f2dec8;
	border-radius: 999px;
	margin: 0 8px 8px 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--color-ink);
	font-size: 13px;
	font-weight: 900;
	padding: 9px 14px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--color-orange);
	border-color: var(--color-orange);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--color-white);
}

.woocommerce .related.products,
.woocommerce .upsells.products {
	margin: 32px auto 0;
	max-width: 1180px;
}

.woocommerce .related.products h2,
.woocommerce .upsells.products h2 {
	font-size: 24px;
	line-height: 1.15;
	margin: 0 0 16px;
}

.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce .related.products ul.products li.product,
.woocommerce .upsells.products ul.products li.product {
	max-width: none;
}

.woocommerce table.shop_table,
.woocommerce-checkout #payment,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-tight);
	overflow: hidden;
}

.woocommerce table.shop_table {
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce table.shop_table th {
	background: #fff8f0;
	color: var(--color-ink);
	font-size: 13px;
	text-transform: uppercase;
}

.woocommerce-cart table.cart img {
	border-radius: 8px;
	width: 74px;
}

.woocommerce-cart table.cart td.product-name a,
.woocommerce-checkout-review-order-table .product-name {
	font-weight: 900;
}

.cart_totals,
.woocommerce-checkout-review-order {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	padding: 22px;
}

.cart_totals h2,
.woocommerce-billing-fields h3,
#order_review_heading,
.woocommerce-additional-fields h3 {
	font-size: 24px;
	line-height: 1.1;
	margin: 0 0 18px;
}

.bisno-order-steps {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 0 22px;
}

.bisno-order-steps span {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(21, 17, 15, 0.04);
	font-size: 13px;
	font-weight: 900;
	padding: 10px 14px;
	text-align: center;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	padding: 22px;
}

.woocommerce-checkout #customer_details {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 24px;
}

.woocommerce-checkout #customer_details::before,
.woocommerce-checkout #customer_details::after {
	display: none;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: auto;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	background: #fffdfb;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	min-height: 48px;
	padding: 10px 13px;
}

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

.woocommerce form .form-row textarea {
	min-height: 112px;
}

.woocommerce-checkout #payment {
	background: #fffdfb;
	padding: 18px;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--color-line);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 10px;
	box-shadow: var(--shadow-tight);
	color: var(--color-ink);
	line-height: 1.45;
	padding: 16px 18px;
}

.woocommerce-message {
	border-top-color: var(--color-green);
}

.woocommerce-info {
	border-top-color: var(--color-orange);
}

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

.bisno-checkout-note {
	background: #fff3e6;
	border: 1px solid #f5d3af;
	border-radius: var(--radius);
	margin: 18px 0;
	padding: 16px;
}

.bisno-checkout-note p {
	margin: 6px 0 0;
}

.woocommerce-account .woocommerce {
	display: grid;
	gap: 22px;
	grid-template-columns: 280px 1fr;
}

.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	padding: 20px;
}

.woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-MyAccount-navigation a {
	background: #fff8f0;
	border: 1px solid #f2dec8;
	border-radius: 999px;
	display: block;
	font-size: 13px;
	font-weight: 900;
	padding: 10px 13px;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-white);
}

.site-footer {
	background: #100d0c;
	color: #f6ede6;
	padding: 56px 0 18px;
}

.footer-grid {
	display: grid;
	gap: 36px;
	grid-template-columns: 1.15fr 1fr 1fr;
}

.footer-logo {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 10px;
	width: 220px;
}

.site-footer h3 {
	color: var(--color-white);
	font-size: 16px;
	margin: 0 0 12px;
}

.site-footer p,
.site-footer li {
	color: #d8cdc5;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer li + li {
	margin-top: 8px;
}

.footer-whatsapp {
	color: var(--color-gold);
	font-weight: 900;
}

.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-top: 42px;
	padding-top: 18px;
}

.footer-bottom p {
	font-size: 13px;
	margin: 0;
}

.footer-bottom .menu {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-credit {
	font-size: 13px;
	margin: 0;
}

.footer-credit a {
	color: #f4ad22;
	font-weight: 900;
}

.footer-credit a:hover {
	color: #ffd15a;
}

.floating-whatsapp {
	background: var(--color-green);
	border-radius: 999px;
	bottom: 22px;
	box-shadow: 0 14px 34px rgba(31, 143, 82, 0.34);
	color: var(--color-white);
	font-weight: 900;
	padding: 13px 18px;
	position: fixed;
	right: 22px;
	z-index: 95;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1080px) {
	.header-main {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: block;
		justify-self: end;
	}

	.primary-nav {
		background: var(--color-white);
		border: 1px solid var(--color-line);
		border-radius: var(--radius);
		box-shadow: var(--shadow-tight);
		display: none;
		grid-column: 1 / -1;
		padding: 10px;
	}

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

	.primary-nav .menu,
	.primary-nav ul {
		align-items: stretch;
		flex-direction: column;
	}

	.primary-nav a {
		display: flex;
	}

	.header-actions {
		grid-column: 1 / -1;
		justify-content: space-between;
	}

	.product-search {
		flex: 1;
	}

	.product-search input[type="search"] {
		width: 100%;
	}

	.hero__grid,
	.service-band__grid,
	.feature-strip__grid,
	.bisno-shop-intro,
	.shop-page-grid,
	.woocommerce-checkout #customer_details,
	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}

	.shop-sidebar {
		position: static;
	}

	.shop-category-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.category-grid,
	.feature-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.topline__inner,
	.section__header,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero {
		padding-top: 54px;
	}

	.hero-slider {
		left: 0;
	}

	.hero-board {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-showcase,
	.editorial-grid,
	.process-grid {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.hero-benefits {
		margin-left: 0;
		width: 100%;
	}

	.hero-board__tile {
		min-height: 180px;
	}

	.trust-strip__grid,
	.woocommerce ul.products,
	.shop-products-panel ul.products,
	.footer-grid,
	.category-grid,
	.feature-list,
	.bisno-order-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.container {
		padding: 0 16px;
	}

	.brand img {
		width: 190px;
	}

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

	.cart-link {
		justify-content: center;
	}

	.hero h1 {
		font-size: 46px;
	}

	.hero p {
		font-size: 17px;
	}

	.trust-strip__grid,
	.woocommerce ul.products,
	.shop-products-panel ul.products,
	.footer-grid,
	.category-grid,
	.feature-list,
	.bisno-order-steps {
		grid-template-columns: 1fr;
	}

	.shop-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.shop-category-list {
		grid-template-columns: 1fr;
	}

	.showcase-card,
	.showcase-card--main {
		min-height: 180px;
	}

	.showcase-card strong,
	.showcase-card--main strong {
		margin-top: 72px;
	}

	.woocommerce div.product {
		padding: 18px;
	}

	.woocommerce div.product div.images {
		max-width: none;
	}

	.woocommerce div.product .summary,
	.woocommerce div.product .woocommerce-tabs,
	.cart_totals,
	.woocommerce-checkout-review-order,
	.woocommerce .col2-set .col-1,
	.woocommerce-page .col2-set .col-1,
	.woocommerce .col2-set .col-2,
	.woocommerce-page .col2-set .col-2 {
		padding: 18px;
	}

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

	.bisno-shop-intro {
		padding: 20px;
	}

	.bisno-shop-intro p {
		font-size: 18px;
	}

	.woocommerce .related.products ul.products,
	.woocommerce .upsells.products ul.products {
		grid-template-columns: 1fr;
	}

	.floating-whatsapp {
		bottom: 14px;
		right: 14px;
	}
}

@media (max-width: 860px) {
	.hero {
		min-height: auto;
		padding: 48px 0 42px;
	}

	.hero__grid {
		gap: 28px;
	}

	.hero-showcase {
		gap: 10px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
	}

	.showcase-card,
	.showcase-card--main {
		grid-row: auto;
		min-height: 132px;
	}

	.showcase-card strong,
	.showcase-card--main strong {
		font-size: 18px;
		margin-top: 38px;
	}

	.showcase-card small {
		display: none;
	}
}

@media (max-width: 560px) {
	.topline {
		display: none;
	}

	.header-main {
		gap: 12px;
		min-height: 66px;
	}

	.brand img {
		width: 176px;
	}

	.header-actions {
		background: rgba(255, 250, 245, 0.96);
		border-top: 1px solid var(--color-line);
		display: grid;
		gap: 8px;
		grid-template-columns: 1fr auto;
		margin-left: -16px;
		margin-right: -16px;
		padding: 10px 16px 12px;
	}

	.product-search input[type="search"] {
		border-radius: 12px;
		min-height: 42px;
		padding: 0 14px;
	}

	.cart-link {
		border-radius: 12px;
		gap: 6px;
		justify-content: center;
		min-height: 42px;
		padding: 0 12px;
	}

	.cart-link__icon {
		font-size: 0;
	}

	.cart-link__icon::before {
		content: "Carrinho";
		font-size: 12px;
	}

	.cart-link__total {
		display: none;
	}

	.primary-nav {
		padding: 8px;
	}

	.primary-nav a {
		border-radius: 8px;
		justify-content: center;
	}

	.hero {
		background: var(--color-paper);
		display: flex;
		flex-direction: column;
		min-height: auto;
		padding: 0 0 28px;
	}

	.hero__copy {
		background: var(--color-white);
		border: 1px solid var(--color-line);
		border-radius: 12px;
		box-shadow: var(--shadow-tight);
		margin-top: 230px;
		max-width: none;
		padding: 18px;
		text-align: left;
	}

	.hero h1 {
		font-size: 34px;
		line-height: 1;
	}

	.hero p {
		display: block;
		font-size: 15px;
		line-height: 1.5;
		margin-top: 12px;
	}

	.hero__actions {
		gap: 6px;
		margin-top: 12px;
	}

	.hero__actions .button {
		flex: 1 1 0;
		font-size: 13px;
		min-height: 40px;
		padding: 0 12px;
	}

	.hero-showcase {
		display: none;
	}

	.trust-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-strip__grid > div {
		padding: 14px 8px;
	}

	.trust-strip strong {
		font-size: 13px;
	}

	.trust-strip span {
		font-size: 12px;
	}

	.section {
		padding: 44px 0;
	}

	.section--warm {
		background: #fff2e6;
	}

	.section__header h2 {
		font-size: 30px;
	}

	.section__header {
		gap: 10px;
		margin-bottom: 18px;
	}

	.section-link {
		min-height: 34px;
	}

	.category-card {
		min-height: 190px;
	}

	.woo-shortcode {
		padding-left: 16px;
		padding-right: 16px;
	}

	.shop-shell {
		padding: 32px 0 56px;
	}

	.shop-archive-header h1 {
		font-size: 36px;
	}

	.shop-archive-header p {
		font-size: 15px;
	}

	.shop-sidebar-card {
		padding: 15px;
	}

	.shop-toolbar {
		padding: 12px;
	}

	.woocommerce ul.products li.product a img {
		aspect-ratio: 4 / 3;
	}

	.woocommerce ul.products,
	.shop-products-panel ul.products,
	.woo-shortcode .woocommerce ul.products {
		align-items: stretch;
		display: grid !important;
		gap: 18px;
		grid-template-columns: minmax(0, 1fr) !important;
		justify-items: center;
		width: 100%;
	}

	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product,
	.woo-shortcode .woocommerce ul.products li.product {
		clear: none !important;
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		max-width: 360px;
		min-height: auto;
		width: 100% !important;
	}

	.woocommerce ul.products li.product .woocommerce-loop-category__title,
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 16px;
		min-height: auto;
	}

	.woocommerce ul.products li.product .price {
		font-size: 18px;
	}

	.woocommerce ul.products li.product .button {
		width: auto;
	}

	.woocommerce ul.products li.product a.button,
	.woocommerce ul.products li.product button.button,
	.woocommerce ul.products li.product .added_to_cart {
		min-width: 150px;
		width: auto;
	}

	.woocommerce .related.products ul.products,
	.woocommerce .upsells.products ul.products {
		grid-template-columns: 1fr;
	}

	.floating-whatsapp {
		font-size: 13px;
		padding: 11px 14px;
	}

	.footer-grid {
		gap: 24px;
		text-align: center;
	}

	.footer-logo {
		margin: 0 auto;
	}

	.footer-bottom {
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.site-header .header-actions {
		align-items: center !important;
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 104px !important;
		gap: 8px !important;
		width: calc(100% + 32px);
	}

	.site-header .product-search {
		display: block !important;
		min-width: 0;
		width: 100% !important;
	}

	.site-header .product-search input[type="search"] {
		font-size: 14px;
		height: 42px;
		width: 100% !important;
	}

	.site-header .cart-link {
		align-self: stretch;
		display: inline-flex !important;
		font-size: 12px;
		height: 42px;
		min-height: 42px;
		min-width: 0;
		padding: 0 10px;
		width: 104px;
	}

	.site-header .cart-link__icon::before {
		content: "Carrinho";
	}

	.site-header .cart-link__count {
		height: 20px;
		min-width: 20px;
		padding: 0 6px;
	}

	.site-header .cart-link__total {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.site-header .header-main {
		grid-template-columns: 1fr auto !important;
	}

	.site-header .header-actions {
		align-items: center !important;
		display: grid !important;
		flex-direction: initial !important;
		grid-column: 1 / -1 !important;
		grid-template-columns: minmax(0, 1fr) 112px !important;
		gap: 8px !important;
		justify-content: stretch !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 8px 0 12px !important;
		width: 100% !important;
	}

	.site-header .product-search {
		grid-column: 1 !important;
		min-width: 0 !important;
		width: 100% !important;
	}

	.site-header .product-search input[type="search"] {
		border-radius: 999px !important;
		height: 42px !important;
		min-height: 42px !important;
		width: 100% !important;
	}

	.site-header .cart-link {
		grid-column: 2 !important;
		height: 42px !important;
		min-height: 42px !important;
		padding: 0 10px !important;
		width: 112px !important;
	}

	.site-header .cart-link__total {
		display: none !important;
	}
}

@media (max-width: 560px) {
	.hero {
		background: var(--color-paper);
		min-height: auto;
		overflow: visible;
		padding: 0 0 30px;
	}

	.hero-slider,
	.hero::after {
		bottom: auto;
		height: 260px;
		inset: 0 0 auto 0;
	}

	.hero::after {
		background:
			linear-gradient(90deg, rgba(255, 250, 245, var(--hero-overlay-left, 0)) 0%, rgba(255, 250, 245, var(--hero-overlay-middle, 0)) 58%, rgba(255, 250, 245, var(--hero-overlay-right, 0)) 100%),
			linear-gradient(180deg, rgba(255, 250, 245, var(--hero-overlay-vertical, 0)), rgba(255, 244, 232, var(--hero-overlay-vertical-2, 0)));
		pointer-events: none;
	}

	.hero-slider__image {
		height: 260px;
		object-position: center;
	}

	.hero__grid {
		display: block;
		padding-top: 218px;
		position: relative;
		z-index: 1;
	}

	.hero__copy {
		background: var(--color-white);
		border: 1px solid var(--color-line);
		border-radius: 16px;
		box-shadow: 0 16px 38px rgba(21, 17, 15, 0.14);
		margin: 0;
		max-width: none;
		padding: 18px;
		text-align: left;
	}

	.hero .eyebrow {
		margin-bottom: 8px;
	}

	.hero h1 {
		font-size: 34px;
		line-height: 1;
	}

	.hero p {
		color: var(--color-muted);
		display: none;
		font-size: 15px;
		line-height: 1.45;
		margin-top: 12px;
		max-width: none;
		overflow: visible;
	}

	.hero__actions {
		display: grid;
		gap: 8px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 16px;
	}

	.hero__actions .button {
		font-size: 13px;
		min-height: 40px;
		padding: 0 10px;
		width: 100%;
	}

	.hero-showcase {
		display: none !important;
	}
}

.wc-block-cart__submit-container,
.wc-block-components-totals-wrapper .wc-block-cart__submit-container {
	margin-top: 18px;
}

body .wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button,
body .wc-block-cart .wc-block-components-button:not(.is-link).wc-block-cart__submit-button,
body .wc-block-cart .wc-block-components-button.contained:not(.is-link),
body .wc-block-components-totals-wrapper .wc-block-cart__submit-button,
body .wc-block-components-totals-wrapper a.wc-block-components-button.wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-components-button:not(.is-link),
body.page-id-7 .wc-block-components-button:not(.is-link) {
	align-items: center;
	background: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(217, 95, 2, 0.24);
	color: var(--color-white) !important;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	min-height: 48px;
	padding: 0 24px !important;
	text-decoration: none !important;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
	width: 100%;
}

body .wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button:hover,
body .wc-block-cart .wc-block-components-button:not(.is-link).wc-block-cart__submit-button:hover,
body .wc-block-cart .wc-block-components-button.contained:not(.is-link):hover,
body .wc-block-components-totals-wrapper .wc-block-cart__submit-button:hover,
body .wc-block-components-totals-wrapper a.wc-block-components-button.wc-block-cart__submit-button:hover,
body.woocommerce-cart .wc-block-components-button:not(.is-link):hover,
body.page-id-7 .wc-block-components-button:not(.is-link):hover {
	background: var(--color-orange-dark) !important;
	background-color: var(--color-orange-dark) !important;
	box-shadow: 0 18px 34px rgba(178, 77, 0, 0.28);
	color: var(--color-white) !important;
	transform: translateY(-1px);
}

body .wc-block-cart__submit-button .wc-block-components-button__text,
body.woocommerce-cart .wc-block-components-button:not(.is-link) .wc-block-components-button__text,
body.page-id-7 .wc-block-components-button:not(.is-link) .wc-block-components-button__text {
	color: inherit;
	font-weight: inherit;
}

body .cart_totals .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.page-id-7 .wc-proceed-to-checkout a.checkout-button {
	background: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(217, 95, 2, 0.24);
	color: var(--color-white) !important;
	display: flex !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	justify-content: center;
	line-height: 1 !important;
	min-height: 48px;
	padding: 0 24px !important;
	text-decoration: none !important;
	width: 100%;
}

body .cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.page-id-7 .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--color-orange-dark) !important;
	background-color: var(--color-orange-dark) !important;
	color: var(--color-white) !important;
	transform: translateY(-1px);
}

body.page-id-7 a[href*="finalizar-compra"],
body.woocommerce-cart a[href*="finalizar-compra"],
body.page-id-7 a[href*="checkout"],
body.woocommerce-cart a[href*="checkout"] {
	align-items: center !important;
	background: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(217, 95, 2, 0.24) !important;
	box-sizing: border-box !important;
	color: var(--color-white) !important;
	display: inline-flex !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	justify-content: center !important;
	line-height: 1 !important;
	min-height: 48px !important;
	padding: 0 24px !important;
	text-align: center !important;
	text-decoration: none !important;
	width: 100% !important;
}

body.page-id-7 a[href*="finalizar-compra"]:hover,
body.woocommerce-cart a[href*="finalizar-compra"]:hover,
body.page-id-7 a[href*="checkout"]:hover,
body.woocommerce-cart a[href*="checkout"]:hover {
	background: var(--color-orange-dark) !important;
	background-color: var(--color-orange-dark) !important;
	color: var(--color-white) !important;
	transform: translateY(-1px);
}

body .bisno-checkout-button,
body a.bisno-checkout-button,
body button.bisno-checkout-button,
body .wc-block-components-button.bisno-checkout-button {
	align-items: center !important;
	background: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(217, 95, 2, 0.24) !important;
	box-sizing: border-box !important;
	color: var(--color-white) !important;
	display: inline-flex !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	justify-content: center !important;
	line-height: 1 !important;
	min-height: 48px !important;
	padding: 0 24px !important;
	text-align: center !important;
	text-decoration: none !important;
	width: 100% !important;
}

body .bisno-checkout-button:hover,
body a.bisno-checkout-button:hover,
body button.bisno-checkout-button:hover,
body .wc-block-components-button.bisno-checkout-button:hover {
	background: var(--color-orange-dark) !important;
	background-color: var(--color-orange-dark) !important;
	color: var(--color-white) !important;
	transform: translateY(-1px);
}

body .bisno-checkout-button *,
body .bisno-checkout-button .wc-block-components-button__text {
	color: inherit !important;
	font-weight: inherit !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce,
.page-id-7 .entry-content,
.page-id-8 .entry-content,
.page-id-9 .entry-content {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	margin: 0 auto;
	max-width: 1180px;
	padding: 32px;
}

.woocommerce-cart .cart-empty,
.woocommerce .woocommerce-info.cart-empty {
	align-items: center;
	background: #fff8f0;
	border: 1px solid #f2dec8;
	border-radius: 12px;
	box-shadow: none;
	display: flex;
	font-size: 18px;
	font-weight: 900;
	justify-content: center;
	margin: 8px auto 18px;
	min-height: 110px;
	text-align: center;
}

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

.woocommerce-cart .return-to-shop a.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order,
.woocommerce-account .woocommerce-form-login__submit,
.woocommerce-account .woocommerce-form-register__submit,
.woocommerce .woocommerce-Button,
.woocommerce .woocommerce-button {
	background: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(217, 95, 2, 0.24);
	color: var(--color-white) !important;
	font-weight: 900 !important;
	min-height: 46px;
	padding: 0 22px !important;
	text-decoration: none !important;
}

.woocommerce-cart .return-to-shop a.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce-account .woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce-form-register__submit:hover,
.woocommerce .woocommerce-Button:hover,
.woocommerce .woocommerce-button:hover {
	background: var(--color-orange-dark) !important;
	background-color: var(--color-orange-dark) !important;
	color: var(--color-white) !important;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon {
	padding: 22px;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row,
.woocommerce form.checkout_coupon .form-row {
	margin-bottom: 14px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-white);
}

.woocommerce-account .woocommerce-MyAccount-content p:first-child {
	background: #fff8f0;
	border: 1px solid #f2dec8;
	border-radius: 10px;
	margin-top: 0;
	padding: 14px;
}

@media (max-width: 768px) {
	.woocommerce-cart .woocommerce,
	.woocommerce-checkout .woocommerce,
	.woocommerce-account .woocommerce,
	.page-id-7 .entry-content,
	.page-id-8 .entry-content,
	.page-id-9 .entry-content {
		padding: 18px;
	}
}

.wp-block-woocommerce-checkout,
.wc-block-checkout,
.wp-block-woocommerce-cart,
.wc-block-cart {
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 1120px !important;
	width: 100%;
}

.wc-block-checkout {
	align-items: start;
	display: grid !important;
	gap: 28px !important;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) !important;
	padding-top: 8px;
}

.wc-block-checkout__main,
.wc-block-components-main {
	box-sizing: border-box;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
	padding: 0 !important;
	width: auto !important;
}

.wc-block-checkout__sidebar,
.wc-block-components-sidebar {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	box-sizing: border-box;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
	padding: 18px !important;
	position: sticky;
	top: 110px;
	width: auto !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-sidebar h2,
.wc-block-components-order-summary__title {
	color: var(--color-ink);
	font-size: 20px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	margin: 0 0 14px !important;
}

.wc-block-components-checkout-step {
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: var(--shadow-tight);
	margin: 0 0 16px !important;
	padding: 20px !important;
}

.wc-block-components-checkout-step__container,
.wc-block-components-checkout-step__content {
	margin: 0 !important;
	padding: 0 !important;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-form .wc-block-components-textarea,
.wc-block-components-address-form__address_2-toggle {
	background: #fffdfb !important;
	border: 1px solid var(--color-line) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	min-height: 48px !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-address-form__address_2-toggle,
.wc-block-components-checkbox label,
.wc-block-components-validation-error {
	color: var(--color-muted) !important;
	font-size: 13px !important;
}

.wc-block-components-notice-banner,
.wc-block-components-notice-banner.is-error,
.woocommerce-error {
	background: #fff3f0 !important;
	border: 1px solid #f0b8ad !important;
	border-radius: 10px !important;
	color: var(--color-ink) !important;
	font-size: 14px !important;
	line-height: 1.45 !important;
	padding: 14px 16px !important;
}

.wc-block-components-notice-banner svg,
.wc-block-components-notice-banner__content button {
	color: var(--color-red) !important;
}

.wc-block-components-order-summary-item {
	align-items: start !important;
	display: grid !important;
	gap: 10px !important;
	grid-template-columns: 58px minmax(0, 1fr) auto !important;
	padding: 12px 0 !important;
}

.wc-block-components-order-summary-item__image {
	width: 58px !important;
}

.wc-block-components-order-summary-item__image img {
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	object-fit: cover;
	width: 58px !important;
}

.wc-block-components-order-summary-item__description {
	min-width: 0;
}

.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__total-price {
	font-size: 13px !important;
	line-height: 1.35 !important;
}

.wc-block-components-order-summary-item__individual-prices,
.wc-block-components-product-metadata,
.wc-block-components-product-metadata__description {
	color: var(--color-muted) !important;
	font-size: 12px !important;
	line-height: 1.35 !important;
}

.wc-block-components-product-name {
	color: var(--color-ink) !important;
	font-weight: 900 !important;
}

.wc-block-components-totals-wrapper {
	border-color: var(--color-line) !important;
	padding: 13px 0 !important;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
	color: var(--color-ink) !important;
	font-weight: 800 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 20px !important;
	font-weight: 900 !important;
}

.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link).wc-block-components-checkout-place-order-button {
	background: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 28px rgba(217, 95, 2, 0.24) !important;
	color: var(--color-white) !important;
	font-weight: 900 !important;
	min-height: 50px !important;
	width: 100% !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:not(.is-link).wc-block-components-checkout-place-order-button:hover {
	background: var(--color-orange-dark) !important;
	background-color: var(--color-orange-dark) !important;
}

@media (max-width: 900px) {
	.wc-block-checkout {
		grid-template-columns: 1fr !important;
	}

	.wc-block-checkout__sidebar,
	.wc-block-components-sidebar {
		position: static;
	}
}

body.woocommerce-checkout .shop-shell > .container,
body.woocommerce-checkout .page-content,
body.page-id-8 .shop-shell > .container,
body.page-id-8 .page-content {
	max-width: 1040px;
}

body.woocommerce-checkout .page-content,
body.page-id-8 .page-content {
	padding: 42px;
}

body.woocommerce-checkout form.checkout,
body.page-id-8 form.checkout {
	margin: 0 auto;
	max-width: 940px;
}

body.woocommerce-checkout #customer_details,
body.page-id-8 #customer_details {
	align-items: start;
	gap: 24px;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
}

body.woocommerce-checkout .woocommerce .col2-set .col-1,
body.woocommerce-checkout .woocommerce-page .col2-set .col-1,
body.page-id-8 .woocommerce .col2-set .col-1,
body.page-id-8 .woocommerce-page .col2-set .col-1,
body.woocommerce-checkout .woocommerce .col2-set .col-2,
body.woocommerce-checkout .woocommerce-page .col2-set .col-2,
body.page-id-8 .woocommerce .col2-set .col-2,
body.page-id-8 .woocommerce-page .col2-set .col-2 {
	padding: 28px;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.page-id-8 .woocommerce-billing-fields__field-wrapper {
	display: grid;
	gap: 14px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.woocommerce-checkout .woocommerce form .form-row,
body.page-id-8 .woocommerce form .form-row {
	margin: 0;
	width: 100%;
}

body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_state_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field,
body.woocommerce-checkout #billing_tax_id_field,
body.woocommerce-checkout #billing_delivery_reference_field,
body.page-id-8 #billing_country_field,
body.page-id-8 #billing_address_1_field,
body.page-id-8 #billing_address_2_field,
body.page-id-8 #billing_city_field,
body.page-id-8 #billing_state_field,
body.page-id-8 #billing_phone_field,
body.page-id-8 #billing_email_field,
body.page-id-8 #billing_tax_id_field,
body.page-id-8 #billing_delivery_reference_field {
	grid-column: 1 / -1;
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row textarea,
body.woocommerce-checkout .woocommerce form .form-row select,
body.page-id-8 .woocommerce form .form-row input.input-text,
body.page-id-8 .woocommerce form .form-row textarea,
body.page-id-8 .woocommerce form .form-row select {
	font-size: 15px;
	min-height: 52px;
	width: 100%;
}

body.woocommerce-checkout .woocommerce form .form-row textarea,
body.page-id-8 .woocommerce form .form-row textarea {
	min-height: 126px;
}

body.woocommerce-checkout #order_review_heading,
body.page-id-8 #order_review_heading {
	margin-top: 30px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order,
body.page-id-8 .woocommerce-checkout-review-order {
	margin: 0 auto;
	max-width: 850px;
	padding: 28px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.page-id-8 .woocommerce-privacy-policy-text {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 860px) {
	body.woocommerce-checkout .page-content,
	body.page-id-8 .page-content {
		padding: 22px;
	}

	body.woocommerce-checkout #customer_details,
	body.page-id-8 #customer_details,
	body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	body.page-id-8 .woocommerce-billing-fields__field-wrapper {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.mobile-featured-strip {
		background: transparent;
		border-top: 0;
		display: block;
		padding: 0;
	}

	.hero .mobile-featured-strip {
		border-top: 1px solid var(--color-line);
		margin-top: 14px;
		padding-top: 12px;
	}

	.mobile-featured-strip__head {
		align-items: center;
		display: flex;
		justify-content: space-between;
		margin: 0 0 7px;
		max-width: none;
		padding: 0;
	}

	.mobile-featured-strip__head span {
		color: var(--color-orange-dark);
		font-size: 11px;
		font-weight: 900;
		text-transform: uppercase;
	}

	.mobile-featured-strip__head a {
		color: var(--color-muted);
		font-size: 11px;
		font-weight: 800;
	}

	.mobile-featured-strip__track {
		display: flex;
		gap: 10px;
		margin: 0;
		max-width: none;
		overflow-x: auto;
		padding: 0 0 2px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.mobile-featured-strip__track::-webkit-scrollbar {
		display: none;
	}

	.mobile-featured-card {
		align-items: center;
		background: var(--color-white);
		border: 1px solid var(--color-line);
		border-radius: 12px;
		box-shadow: 0 8px 18px rgba(21, 17, 15, 0.06);
		display: grid;
		flex: 0 0 210px;
		gap: 9px;
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: 72px;
		padding: 8px;
		scroll-snap-align: start;
	}

	.mobile-featured-card__image {
		background: #f8f2ed;
		border-radius: 9px;
		display: block;
		overflow: hidden;
	}

	.mobile-featured-card__image img {
		aspect-ratio: 1 / 1;
		height: 54px;
		object-fit: cover;
		width: 54px;
	}

	.mobile-featured-card__body {
		display: grid;
		gap: 2px;
		min-width: 0;
	}

	.mobile-featured-card strong {
		display: block;
		font-size: 12px;
		font-weight: 900;
		line-height: 1.2;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-featured-card small {
		color: var(--color-orange-dark);
		font-size: 12px;
		font-weight: 900;
		line-height: 1.2;
	}
}

@media (max-width: 560px) {
	.hero {
		background: linear-gradient(180deg, #fff7ef 0%, #fffaf5 100%);
		min-height: auto;
		overflow: hidden;
		padding: 12px 0 16px;
	}

	.hero-slider,
	.hero::after,
	.hero-showcase,
	.hero__copy > .eyebrow,
	.hero__copy > h1,
	.hero__copy > p,
	.hero__actions {
		display: none !important;
	}

	.hero__grid {
		display: block;
		padding-top: 0;
	}

	.hero__copy {
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		margin: 0;
		padding: 0;
	}

	.hero .mobile-featured-strip {
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
	}

	.hero .mobile-featured-strip__head {
		margin-bottom: 9px;
		padding: 0 16px;
	}

	.hero .mobile-featured-strip__head span {
		color: var(--color-orange-dark);
		font-size: 11px;
		letter-spacing: 0;
	}

	.hero .mobile-featured-strip__head a {
		background: #fff2e6;
		border-radius: 999px;
		color: var(--color-orange-dark);
		padding: 5px 10px;
	}

	.hero .mobile-featured-strip__track {
		gap: 12px;
		-webkit-overflow-scrolling: touch;
		cursor: grab;
		overflow-x: scroll;
		overscroll-behavior-x: contain;
		padding: 0 16px 6px;
		scroll-padding-left: 16px;
		touch-action: pan-x;
	}

	.hero .mobile-featured-card {
		align-items: stretch;
		background: var(--color-white);
		border-color: #f0dcc8;
		border-radius: 16px;
		box-shadow: 0 16px 34px rgba(21, 17, 15, 0.1);
		flex: 0 0 calc(100vw - 24px);
		gap: 14px;
		grid-template-columns: 158px minmax(0, 1fr);
		min-height: 206px;
		padding: 12px;
	}

	.hero .mobile-featured-card__image {
		border-radius: 12px;
	}

	.hero .mobile-featured-card__image img {
		height: 182px;
		width: 158px;
	}

	.hero .mobile-featured-card__body {
		align-content: center;
		gap: 8px;
	}

	.hero .mobile-featured-card strong {
		font-size: 17px;
		line-height: 1.18;
		white-space: normal;
	}

	.hero .mobile-featured-card small {
		font-size: 17px;
	}

	.hero .mobile-featured-card em {
		align-items: center;
		background: var(--color-orange);
		border-radius: 999px;
		color: var(--color-white);
		display: inline-flex;
		font-size: 12px;
		font-style: normal;
		font-weight: 900;
		justify-content: center;
		min-height: 34px;
		padding: 0 12px;
		width: max-content;
	}

	.trust-strip {
		display: none;
	}

	#categorias {
		padding: 30px 0 26px;
	}

	#categorias .section__header {
		align-items: center;
		display: flex;
		flex-direction: row;
		gap: 12px;
		justify-content: space-between;
		margin-bottom: 14px;
	}

	#categorias .section__header .eyebrow {
		display: none;
	}

	#categorias .section__header h2 {
		font-size: 24px;
		line-height: 1.05;
	}

	#categorias .section-link {
		flex: 0 0 auto;
		font-size: 12px;
		min-height: 34px;
		padding: 0 12px;
	}

	#categorias .category-grid {
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#categorias .category-card {
		border-radius: 12px;
		min-height: 92px;
		padding: 14px;
	}

	#categorias .category-card::after {
		background: linear-gradient(180deg, rgba(21, 17, 15, 0.12), rgba(21, 17, 15, 0.5));
	}

	#categorias .category-card span {
		font-size: 16px;
		line-height: 1.1;
		margin: 0;
	}

	#categorias .category-card p {
		display: none;
	}
}
