:root {
	--bp-primary: #00205a;
	--bp-primary-deep: #00163f;
	--bp-accent: #e86c00;
	--bp-accent-deep: #bd5700;
	--bp-cream: #f8f3ed;
	--bp-sand: #eadbcf;
	--bp-paper: #fffdf9;
	--bp-white: #fff;
	--bp-ink: #171d2d;
	--bp-muted: #646b78;
	--bp-line: #e3e7ee;
	--bp-success: #277558;
	--bp-error: #b73b33;
	--bp-shadow-sm: 0 8px 24px rgba(0, 32, 90, .08);
	--bp-shadow-lg: 0 30px 80px rgba(0, 32, 90, .14);
	--bp-radius-sm: 10px;
	--bp-radius: 18px;
	--bp-radius-lg: 28px;
	--bp-container: 1240px;
	--bp-gutter: clamp(18px, 4vw, 36px);
	--bp-section: clamp(64px, 8vw, 112px);
	--bp-card-ratio: 4/5;
	--bp-header-height: 134px;
	--bp-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--bp-font-display: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 160px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bp-paper);
	color: var(--bp-ink);
	font-family: var(--bp-font-sans);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: clip;
}

body.is-scroll-locked { overflow: hidden; }

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

svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

a { color: inherit; text-underline-offset: 3px; }
button,
input,
select,
textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--bp-accent) 64%, white);
	outline-offset: 3px;
}

::selection {
	background: var(--bp-primary);
	color: var(--bp-white);
}

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

.screen-reader-text:focus,
.skip-link:focus {
	background: var(--bp-white);
	clip: auto !important;
	clip-path: none;
	color: var(--bp-ink);
	display: block;
	height: auto;
	left: 12px;
	padding: 12px 18px;
	top: 12px;
	width: auto;
	z-index: 999999;
}

.bp-container {
	margin-inline: auto;
	max-width: calc(var(--bp-container) + 2 * var(--bp-gutter));
	padding-inline: var(--bp-gutter);
	width: 100%;
}

.bp-section { padding-block: var(--bp-section); }
.bp-section + .bp-section { padding-top: 0; }

.bp-eyebrow {
	color: var(--bp-accent);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .16em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.bp-section-heading {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: clamp(26px, 4vw, 44px);
}

.bp-section-heading h2,
.bp-page-hero h1 {
	font-family: var(--bp-font-display);
	font-size: clamp(2rem, 4vw, 3.3rem);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.05;
	margin: 0;
}

.bp-section-heading > a {
	align-items: center;
	display: inline-flex;
	font-size: .86rem;
	font-weight: 750;
	gap: 8px;
	text-decoration: none;
}

.bp-section-heading > a svg { height: 18px; width: 18px; }

.bp-button,
a.bp-button,
button.bp-button {
	align-items: center;
	background: var(--bp-primary);
	border: 1px solid var(--bp-primary);
	border-radius: 999px;
	color: var(--bp-white);
	cursor: pointer;
	display: inline-flex;
	font-size: .9rem;
	font-weight: 750;
	gap: 9px;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 13px 23px;
	text-align: center;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.bp-button:hover {
	background: var(--bp-primary-deep);
	border-color: var(--bp-primary-deep);
	transform: translateY(-1px);
}

.bp-button svg { height: 18px; width: 18px; }
.bp-button--accent,
a.bp-button--accent { background: var(--bp-accent); border-color: var(--bp-accent); }
.bp-button--accent:hover { background: var(--bp-accent-deep); border-color: var(--bp-accent-deep); }
.bp-button--ghost,
a.bp-button--ghost { background: transparent; border-color: currentColor; color: inherit; }
.bp-button--ghost:hover { background: rgba(255, 255, 255, .1); border-color: currentColor; }
.bp-button--outline,
a.bp-button--outline { background: transparent; border-color: var(--bp-line); color: var(--bp-ink); }
.bp-button--outline:hover { background: var(--bp-cream); border-color: var(--bp-primary); color: var(--bp-primary); }
.bp-button--small,
a.bp-button--small { font-size: .82rem; min-height: 42px; padding: 9px 17px; }

/* Announcement and header */
.bp-announcement {
	background: var(--bp-primary-deep);
	color: var(--bp-white);
	font-size: .78rem;
	position: relative;
	z-index: 110;
}

.bp-announcement[hidden] { display: none; }

.bp-announcement__inner {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 36px;
	position: relative;
}

.bp-announcement p {
	font-weight: 650;
	letter-spacing: .02em;
	margin: 0;
	padding: 5px 44px;
	text-align: center;
}

.bp-announcement button {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
	position: absolute;
	right: var(--bp-gutter);
}

.bp-announcement button svg { height: 16px; width: 16px; }

.bp-header {
	background: rgba(255, 253, 249, .97);
	border-bottom: 1px solid var(--bp-line);
	position: relative;
	z-index: 100;
}

.has-sticky-header .bp-header {
	position: sticky;
	top: 0;
}

.admin-bar.has-sticky-header .bp-header { top: 32px; }

.bp-header__main {
	align-items: center;
	display: grid;
	gap: clamp(20px, 3vw, 42px);
	grid-template-columns: auto minmax(300px, 1fr) auto;
	min-height: 86px;
}

.bp-brand {
	align-items: center;
	display: inline-flex;
	line-height: 1;
	text-decoration: none;
}

.bp-brand__image {
	max-height: 54px;
	max-width: 180px;
	object-fit: contain;
	width: auto;
}

.bp-brand__wordmark {
	color: var(--bp-primary);
	font-family: var(--bp-font-display);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -.06em;
	white-space: nowrap;
}

.bp-brand__wordmark span { color: var(--bp-accent); font-style: italic; }

.bp-header-search { position: relative; }
.bp-header-search > svg {
	color: var(--bp-muted);
	height: 19px;
	left: 17px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
}

.bp-header-search > input[type="search"] {
	background: var(--bp-white);
	border: 1px solid #dce1de;
	border-radius: 999px;
	height: 50px;
	padding: 0 90px 0 48px;
	width: 100%;
}

.bp-header-search > button {
	background: var(--bp-primary);
	border: 0;
	border-radius: 999px;
	color: var(--bp-white);
	cursor: pointer;
	font-size: .82rem;
	font-weight: 750;
	height: 40px;
	padding-inline: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
}

.bp-search-popover {
	background: var(--bp-white);
	border: 1px solid var(--bp-line);
	border-radius: var(--bp-radius);
	box-shadow: var(--bp-shadow-lg);
	left: 0;
	max-height: min(620px, 70vh);
	overflow: auto;
	padding: 10px;
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	z-index: 120;
}

.bp-search-popover__status {
	color: var(--bp-muted);
	font-size: .82rem;
	padding: 10px 12px;
}

.bp-search-result {
	align-items: center;
	border-radius: 11px;
	display: grid;
	gap: 12px;
	grid-template-columns: 62px 1fr;
	padding: 8px;
	text-decoration: none;
}

.bp-search-result:hover { background: var(--bp-cream); }
.bp-search-result img {
	aspect-ratio: 1;
	background: #f3f1ec;
	border-radius: 9px;
	object-fit: cover;
	width: 62px;
}

.bp-search-result__content {
	display: grid;
	font-size: .82rem;
	grid-template-columns: 1fr auto;
	line-height: 1.3;
	min-width: 0;
}

.bp-search-result__content strong {
	grid-column: 1 / -1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bp-search-result__content small {
	color: var(--bp-muted);
	font-size: .7rem;
	grid-column: 1 / -1;
	margin-top: 3px;
}

.bp-search-result__price { font-weight: 800; margin-top: 7px; }
.bp-search-result__stock { color: var(--bp-success); font-size: .7rem; margin-top: 7px; }

.bp-search-popover__all,
.bp-overlay-search__results > a {
	align-items: center;
	border-top: 1px solid var(--bp-line);
	display: flex;
	font-size: .8rem;
	font-weight: 750;
	gap: 8px;
	justify-content: center;
	margin-top: 6px;
	padding: 14px;
	text-decoration: none;
}

.bp-search-popover__all svg,
.bp-overlay-search__results > a svg { height: 16px; width: 16px; }

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

.bp-header-actions > a {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: .7rem;
	font-weight: 650;
	gap: 3px;
	text-decoration: none;
}

.bp-header-actions > a svg { height: 23px; width: 23px; }

.bp-cart-trigger {
	align-items: center;
	background: none;
	border: 0;
	cursor: pointer;
	display: flex;
	gap: 10px;
	padding: 0;
	text-align: left;
}

.bp-cart-trigger__icon { position: relative; }
.bp-cart-trigger__icon > svg { height: 26px; width: 26px; }
.bp-cart-count {
	align-items: center;
	background: var(--bp-accent);
	border: 2px solid var(--bp-paper);
	border-radius: 999px;
	color: var(--bp-white);
	display: flex;
	font-size: .62rem;
	font-weight: 800;
	height: 19px;
	justify-content: center;
	min-width: 19px;
	padding-inline: 4px;
	position: absolute;
	right: -9px;
	top: -9px;
}

.bp-cart-trigger > span:last-child { display: flex; flex-direction: column; }
.bp-cart-trigger small { color: var(--bp-muted); font-size: .66rem; }
.bp-cart-trigger strong { font-size: .76rem; white-space: nowrap; }

.bp-category-nav { border-top: 1px solid var(--bp-line); }
.bp-category-nav > .bp-container { align-items: center; display: flex; gap: 30px; min-height: 48px; }
.bp-category-nav__all {
	align-items: center;
	color: var(--bp-primary);
	display: inline-flex;
	font-size: .78rem;
	font-weight: 800;
	gap: 8px;
	text-decoration: none;
	white-space: nowrap;
}

.bp-category-nav__all svg { height: 18px; width: 18px; }
.bp-category-nav__menu {
	align-items: center;
	display: flex;
	gap: clamp(18px, 3vw, 34px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.bp-category-nav__menu li { position: relative; }
.bp-category-nav__menu a { font-size: .78rem; font-weight: 650; text-decoration: none; }
.bp-category-nav__menu a:hover { color: var(--bp-accent); }
.bp-category-nav__menu .sub-menu {
	background: var(--bp-white);
	border: 1px solid var(--bp-line);
	border-radius: 12px;
	box-shadow: var(--bp-shadow-sm);
	display: none;
	left: -14px;
	list-style: none;
	margin: 0;
	min-width: 200px;
	padding: 12px;
	position: absolute;
	top: calc(100% + 12px);
}

.bp-category-nav__menu li:hover > .sub-menu,
.bp-category-nav__menu li:focus-within > .sub-menu { display: grid; gap: 4px; }
.bp-category-nav__menu .sub-menu a { border-radius: 7px; display: block; padding: 7px 9px; }
.bp-category-nav__menu .sub-menu a:hover { background: var(--bp-cream); }

.bp-header__mobile { display: none; }

/* Drawers and overlays */
.bp-drawer,
.bp-search-overlay {
	inset: 0;
	pointer-events: none;
	position: fixed;
	visibility: hidden;
	z-index: 300;
}

.bp-drawer.is-open,
.bp-search-overlay.is-open {
	pointer-events: auto;
	visibility: visible;
}

.bp-drawer__overlay {
	background: rgba(11, 24, 20, .5);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .25s ease;
}

.bp-drawer.is-open .bp-drawer__overlay { opacity: 1; }
.bp-drawer__panel {
	background: var(--bp-paper);
	bottom: 0;
	box-shadow: var(--bp-shadow-lg);
	display: flex;
	flex-direction: column;
	max-width: min(430px, 94vw);
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(104%);
	transition: transform .3s ease;
	width: 100%;
}

.bp-mobile-drawer .bp-drawer__panel {
	left: 0;
	right: auto;
	transform: translateX(-104%);
}

.bp-drawer.is-open .bp-drawer__panel { transform: translateX(0); }
.bp-drawer__head {
	align-items: center;
	border-bottom: 1px solid var(--bp-line);
	display: flex;
	justify-content: space-between;
	min-height: 74px;
	padding: 14px 20px;
}

.bp-drawer__head > div { display: flex; flex-direction: column; line-height: 1.25; }
.bp-drawer__head small { color: var(--bp-muted); font-size: .72rem; }
.bp-drawer__head button,
.bp-search-overlay__head button {
	align-items: center;
	background: var(--bp-cream);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.bp-drawer__head button svg,
.bp-search-overlay__head button svg { height: 19px; width: 19px; }
.bp-brand--drawer .bp-brand__wordmark { font-size: 1.7rem; }

.bp-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 12px 20px;
}

.bp-mobile-menu li { border-bottom: 1px solid var(--bp-line); position: relative; }
.bp-mobile-menu a {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	padding: 14px 42px 14px 4px;
	text-decoration: none;
}

.bp-mobile-menu .sub-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0 0 8px 18px;
}

.bp-mobile-menu .is-submenu-open > .sub-menu { display: block; }
.bp-mobile-menu .sub-menu li { border: 0; }
.bp-mobile-menu .sub-menu a { color: var(--bp-muted); font-size: .88rem; padding-block: 9px; }
.bp-submenu-toggle {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 13px;
	position: absolute;
	right: 0;
	top: 1px;
}

.bp-submenu-toggle svg { height: 18px; transition: transform .2s ease; width: 18px; }
.is-submenu-open > .bp-submenu-toggle svg { transform: rotate(180deg); }

.bp-mobile-drawer__shortcuts {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
	margin-top: auto;
	padding: 20px;
}

.bp-mobile-drawer__shortcuts a {
	align-items: center;
	background: var(--bp-cream);
	border-radius: 12px;
	display: flex;
	font-size: .78rem;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	min-height: 48px;
	text-decoration: none;
}

.bp-mobile-drawer__shortcuts svg { height: 19px; width: 19px; }

.bp-search-overlay {
	background: rgba(11, 24, 20, .5);
	opacity: 0;
	transition: opacity .2s ease;
}

.bp-search-overlay.is-open { opacity: 1; }
.bp-search-overlay__panel {
	background: var(--bp-paper);
	border-radius: 0 0 22px 22px;
	margin-inline: auto;
	max-height: min(720px, 92dvh);
	max-width: 760px;
	overflow-y: auto;
	padding: 20px;
	transform: translateY(-30px);
	transition: transform .25s ease;
}

.bp-search-overlay.is-open .bp-search-overlay__panel { transform: translateY(0); }
.bp-search-overlay__head { align-items: center; display: flex; justify-content: space-between; margin-bottom: 18px; }
.bp-search-overlay__head strong { font-family: var(--bp-font-display); font-size: 1.65rem; font-weight: 500; }
.bp-overlay-search__input { display: flex; position: relative; }
.bp-overlay-search__input > svg {
	height: 20px;
	left: 17px;
	position: absolute;
	top: 16px;
	width: 20px;
}

.bp-overlay-search__input input {
	border: 1px solid var(--bp-line);
	border-radius: 999px;
	height: 52px;
	padding: 0 80px 0 49px;
	width: 100%;
}

.bp-overlay-search__input button {
	background: var(--bp-primary);
	border: 0;
	border-radius: 999px;
	color: white;
	font-weight: 750;
	margin: 5px;
	padding-inline: 20px;
	position: absolute;
	right: 0;
	top: 0;
	height: 42px;
}

.bp-overlay-search__results > [data-search-status] { color: var(--bp-muted); font-size: .85rem; padding: 16px 10px 8px; }
.bp-overlay-search__results .bp-search-result { grid-template-columns: 74px 1fr; }
.bp-overlay-search__results .bp-search-result img { width: 74px; }

/* Hero */
.bp-hero {
	background: var(--bp-primary);
	color: var(--bp-white);
	overflow: hidden;
}

.bp-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
	min-height: min(650px, 72vh);
	padding-right: 0;
}

.bp-hero__content {
	align-self: center;
	max-width: 560px;
	padding-block: clamp(60px, 8vw, 110px);
	padding-right: clamp(28px, 5vw, 72px);
	position: relative;
	z-index: 2;
}

.bp-hero__content .bp-eyebrow { color: #ffb477; }
.bp-hero h1 {
	font-family: var(--bp-font-display);
	font-size: clamp(3rem, 6vw, 5.8rem);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: .94;
	margin: 0;
	text-wrap: balance;
}

.bp-hero__lead {
	color: rgba(255,255,255,.79);
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	margin: 26px 0 32px;
	max-width: 520px;
}

.bp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.bp-hero__microtrust {
	align-items: center;
	color: rgba(255,255,255,.7);
	display: flex;
	flex-wrap: wrap;
	font-size: .74rem;
	gap: 20px;
	margin-top: 28px;
}

.bp-hero__microtrust span { align-items: center; display: flex; gap: 6px; }
.bp-hero__microtrust svg { height: 15px; width: 15px; }

.bp-hero__visual {
	align-self: stretch;
	min-height: 520px;
	overflow: hidden;
	position: relative;
}

.bp-hero__visual picture,
.bp-hero__image { height: 100%; width: 100%; }
.bp-hero__image { object-fit: cover; }
.bp-hero__visual::after {
	background: linear-gradient(90deg, var(--bp-primary) 0%, transparent 22%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bp-hero__visual--placeholder {
	background:
		radial-gradient(circle at 65% 25%, rgba(255,255,255,.25), transparent 18%),
		linear-gradient(135deg, #f1c79f, #c6d5e8 55%, #6f8fb5);
}

.bp-hero-art { height: 100%; min-height: 520px; position: relative; }
.bp-hero-art__orb {
	background: rgba(255, 248, 235, .62);
	border-radius: 50%;
	height: clamp(300px, 40vw, 560px);
	position: absolute;
	right: 9%;
	top: 50%;
	transform: translateY(-50%);
	width: clamp(300px, 40vw, 560px);
}

.bp-hero-art__card {
	align-items: center;
	background: var(--bp-paper);
	border-radius: 48% 48% 16px 16px;
	box-shadow: var(--bp-shadow-lg);
	color: var(--bp-primary);
	display: flex;
	flex-direction: column;
	height: 48%;
	justify-content: center;
	left: 47%;
	position: absolute;
	text-align: center;
	top: 28%;
	transform: rotate(5deg);
	width: 30%;
	z-index: 2;
}

.bp-hero-art__card span {
	border: 1px solid var(--bp-primary);
	border-radius: 50%;
	font-family: var(--bp-font-display);
	font-size: 1.2rem;
	margin-bottom: 18px;
	padding: 12px;
}

.bp-hero-art__card strong { font-family: var(--bp-font-display); font-size: clamp(1.1rem, 2vw, 1.8rem); font-weight: 500; }
.bp-hero-art__leaf {
	background: var(--bp-primary);
	border-radius: 100% 0 100% 0;
	height: 38%;
	position: absolute;
	width: 18%;
	z-index: 1;
}

.bp-hero-art__leaf--one { bottom: 6%; left: 24%; transform: rotate(-24deg); }
.bp-hero-art__leaf--two { right: 6%; top: 8%; transform: rotate(44deg); }

/* Trust */
.bp-trust { background: var(--bp-white); border-bottom: 1px solid var(--bp-line); }
.bp-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-block: 26px;
}

.bp-trust__item {
	align-items: center;
	border-right: 1px solid var(--bp-line);
	display: flex;
	gap: 13px;
	justify-content: center;
	padding: 4px 24px;
}

.bp-trust__item:last-child { border-right: 0; }
.bp-trust__icon {
	align-items: center;
	background: var(--bp-cream);
	border-radius: 50%;
	color: var(--bp-primary);
	display: flex;
	flex: 0 0 42px;
	height: 42px;
	justify-content: center;
}

.bp-trust__icon svg { height: 21px; width: 21px; }
.bp-trust__item > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.bp-trust__item strong { font-size: .82rem; }
.bp-trust__item small { color: var(--bp-muted); font-size: .69rem; margin-top: 3px; }

/* Categories */
.bp-categories { padding-top: var(--bp-section); }
.bp-category-grid {
	display: grid;
	gap: clamp(12px, 2vw, 24px);
	grid-template-columns: repeat(6, 1fr);
}

.bp-category-card { text-decoration: none; }
.bp-category-card__media {
	background: var(--bp-cream);
	border-radius: 50% 50% 20px 20px;
	display: block;
	overflow: hidden;
	position: relative;
}

.bp-category-card__media::before { content: ""; display: block; padding-top: 116%; }
.bp-category-card__media img,
.bp-category-card__placeholder {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform .35s ease;
	width: 100%;
}

.bp-category-card:hover .bp-category-card__media img { transform: scale(1.035); }
.bp-category-card__placeholder {
	align-items: center;
	background: linear-gradient(145deg, var(--bp-sand), #c7d5e8);
	display: flex;
	justify-content: center;
}

.bp-category-card__placeholder span {
	color: var(--bp-primary);
	font-family: var(--bp-font-display);
	font-size: 3rem;
}

.bp-category-card__title {
	display: flex;
	flex-direction: column;
	font-family: var(--bp-font-display);
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.25;
	padding: 14px 5px 0;
	text-align: center;
}

.bp-category-card__title small { color: var(--bp-muted); font-family: var(--bp-font-sans); font-size: .67rem; font-weight: 500; margin-top: 3px; }

/* Product cards */
.bp-product-grid,
ul.products.bp-product-grid {
	display: grid;
	gap: clamp(15px, 2.2vw, 28px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.bp-product-grid > li,
ul.products.bp-product-grid > li.product {
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	width: auto !important;
}

.bp-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
}

.bp-product-card__media {
	background: #f3f1ec;
	border-radius: var(--bp-radius);
	overflow: hidden;
	position: relative;
}

.bp-product-card__image-link {
	aspect-ratio: var(--bp-card-ratio);
	display: block;
	position: relative;
}

.bp-product-card__image {
	height: 100% !important;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: opacity .3s ease, transform .4s ease;
	width: 100% !important;
}

.bp-product-card__image--secondary { opacity: 0; }
@media (hover: hover) {
	.bp-product-card:hover .bp-product-card__image--secondary { opacity: 1; transform: scale(1.02); }
	.bp-product-card:hover .bp-product-card__image--primary:has(+ .bp-product-card__image--secondary) { opacity: 0; }
}

.bp-product-card__badge,
.bp-product-card__stock {
	background: var(--bp-accent);
	border-radius: 999px;
	color: var(--bp-white);
	font-size: .64rem;
	font-weight: 800;
	left: 12px;
	padding: 6px 10px;
	position: absolute;
	top: 12px;
}

.bp-product-card__stock { background: var(--bp-ink); top: 43px; }
.bp-wishlist-button {
	align-items: center;
	background: rgba(255,255,255,.92);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 5px 18px rgba(10,25,20,.1);
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 12px;
	top: 12px;
	transition: color .2s, transform .2s;
	width: 40px;
}

.bp-wishlist-button:hover { transform: scale(1.06); }
.bp-wishlist-button svg { height: 20px; width: 20px; }
.bp-wishlist-button.is-active { color: var(--bp-accent); }
.bp-wishlist-button.is-active svg { fill: currentColor; }

.bp-product-card__body { display: flex; flex: 1; flex-direction: column; padding: 15px 4px 0; }
.bp-product-card__meta {
	color: var(--bp-muted);
	font-size: .67rem;
	font-weight: 700;
	letter-spacing: .09em;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.bp-product-card__title,
.woocommerce ul.products li.product .bp-product-card__title {
	display: -webkit-box;
	font-family: var(--bp-font-sans);
	font-size: .94rem;
	font-weight: 650;
	line-height: 1.4;
	margin: 0;
	min-height: 2.8em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.bp-product-card__title a { text-decoration: none; }
.bp-product-card__rating {
	align-items: center;
	display: flex;
	gap: 6px;
	margin-top: 8px;
}

.bp-product-card__rating .star-rating { font-size: .72rem; margin: 0 !important; }
.bp-product-card__rating > span { color: var(--bp-muted); font-size: .66rem; }
.bp-product-card__price,
.woocommerce ul.products li.product .bp-product-card__price {
	align-items: baseline;
	display: flex;
	font-size: 1rem;
	font-weight: 800;
	gap: 7px;
	line-height: 1.25;
	margin-top: 10px;
	min-height: 1.5em;
}

.bp-product-card__price del { color: var(--bp-muted); font-size: .78rem; font-weight: 500; opacity: 1; }
.bp-product-card__price ins { color: var(--bp-accent); text-decoration: none; }
.bp-product-card__offer { color: var(--bp-success); font-size: .7rem; font-weight: 700; margin: 5px 0 0; min-height: 1.1em; }
.bp-product-card__actions { margin-top: auto; padding-top: 13px; }
.bp-product-card__actions .button {
	margin: 0 !important;
	width: 100%;
}

.bp-products-section--tint {
	background: var(--bp-cream);
	margin-top: var(--bp-section);
	padding-top: var(--bp-section) !important;
}

/* Campaign and focus banner */
.bp-campaign__inner {
	background: var(--bp-primary-deep);
	border-radius: var(--bp-radius-lg);
	color: var(--bp-white);
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	overflow: hidden;
	text-decoration: none;
}

.bp-campaign__content { align-self: center; padding: clamp(36px, 6vw, 74px); }
.bp-campaign__content .bp-eyebrow { color: #ffb477; }
.bp-campaign__content h2 {
	font-family: var(--bp-font-display);
	font-size: clamp(2.2rem, 4.5vw, 4.5rem);
	font-weight: 500;
	letter-spacing: -.04em;
	line-height: .98;
	margin: 0;
}

.bp-campaign__content > p:not(.bp-eyebrow) { color: rgba(255,255,255,.72); max-width: 480px; }
.bp-campaign__cta { align-items: center; display: inline-flex; font-size: .84rem; font-weight: 800; gap: 9px; margin-top: 10px; }
.bp-campaign__cta svg { height: 18px; width: 18px; }
.bp-campaign__media { min-height: 420px; }
.bp-campaign__media img { height: 100%; object-fit: cover; width: 100%; }
.bp-campaign__art {
	align-items: center;
	background: linear-gradient(135deg, #c7d6e9, #f4c99f);
	color: var(--bp-primary);
	display: flex;
	height: 100%;
	justify-content: center;
	min-height: 420px;
	position: relative;
}

.bp-campaign__art span {
	background: rgba(255,255,255,.5);
	border-radius: 50%;
	height: 68%;
	position: absolute;
	width: 68%;
}

.bp-campaign__art strong {
	font-family: var(--bp-font-display);
	font-size: clamp(2.6rem, 5vw, 5rem);
	font-weight: 500;
	line-height: .85;
	position: relative;
	text-align: center;
	transform: rotate(-7deg);
}

.bp-countdown { display: flex; gap: 8px; margin-top: 28px; }
.bp-countdown > span {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	min-width: 68px;
	padding: 9px 12px;
	text-align: center;
}

.bp-countdown strong { font-size: 1.2rem; }
.bp-countdown small { color: rgba(255,255,255,.65); font-size: .6rem; text-transform: uppercase; }

.bp-focus-banner__inner {
	align-items: center;
	background: #e9dfd0;
	border-radius: var(--bp-radius-lg);
	display: grid;
	gap: clamp(34px, 7vw, 90px);
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	padding: clamp(20px, 4vw, 48px);
}

.bp-focus-banner__media {
	background: rgba(255,255,255,.45);
	border-radius: 50% 50% var(--bp-radius) var(--bp-radius);
	min-height: 390px;
	overflow: hidden;
}

.bp-focus-banner__media img,
.bp-focus-banner__placeholder { height: 100%; min-height: 390px; object-fit: cover; width: 100%; }
.bp-focus-banner__placeholder { background: radial-gradient(circle at 40% 30%, #fff 0 12%, transparent 13%), linear-gradient(140deg, #c8d5e6, #f1c28f); }
.bp-focus-banner__content h2 {
	font-family: var(--bp-font-display);
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: .95;
	margin: 0 0 22px;
}

.bp-focus-banner__content > p:not(.bp-eyebrow) { color: #4d5361; max-width: 480px; }
.bp-focus-banner__content .bp-button { margin-top: 15px; }

/* Reviews and newsletter */
.bp-reviews__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.bp-review-card {
	background: var(--bp-white);
	border: 1px solid var(--bp-line);
	border-radius: var(--bp-radius);
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: clamp(22px, 3vw, 32px);
}

.bp-review-card__stars .star-rating { color: var(--bp-accent); font-size: .9rem; }
.bp-review-card blockquote {
	font-family: var(--bp-font-display);
	font-size: 1.2rem;
	line-height: 1.5;
	margin: 22px 0;
}

.bp-review-card footer { display: flex; flex-direction: column; margin-top: auto; }
.bp-review-card footer strong { font-size: .82rem; }
.bp-review-card footer span { align-items: center; color: var(--bp-success); display: flex; font-size: .64rem; gap: 4px; margin-top: 3px; }
.bp-review-card footer span svg { height: 13px; width: 13px; }
.bp-review-card footer a { color: var(--bp-muted); font-size: .68rem; margin-top: 9px; }

.bp-newsletter {
	background: var(--bp-primary);
	color: var(--bp-white);
	padding-block: clamp(60px, 7vw, 90px) !important;
}

.bp-newsletter__inner {
	align-items: center;
	display: grid;
	gap: clamp(36px, 8vw, 120px);
	grid-template-columns: 1fr 1fr;
}

.bp-newsletter .bp-eyebrow { color: #ffb477; }
.bp-newsletter h2 {
	font-family: var(--bp-font-display);
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 500;
	letter-spacing: -.04em;
	line-height: 1;
	margin: 0;
}

.bp-newsletter__content > p:last-child { color: rgba(255,255,255,.72); max-width: 520px; }
.bp-newsletter__form label { display: block; font-size: .75rem; font-weight: 700; margin-bottom: 8px; }
.bp-newsletter__form form > div:first-of-type { display: flex; gap: 8px; }
.bp-newsletter__form input[type="email"] {
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 999px;
	flex: 1;
	min-height: 50px;
	min-width: 0;
	padding: 0 18px;
}

.bp-newsletter__form form > p { color: rgba(255,255,255,.6); font-size: .67rem; }
.bp-newsletter__empty { border: 1px dashed rgba(255,255,255,.3); border-radius: var(--bp-radius); padding: 24px; }

/* Content pages */
.bp-content-page,
.bp-error-page { min-height: 60vh; padding-block: clamp(54px, 8vw, 100px); }
.bp-page-hero { margin-bottom: clamp(36px, 6vw, 70px); }
.bp-page-hero > p:not(.bp-eyebrow) { color: var(--bp-muted); max-width: 620px; }
.bp-prose-wrap { max-width: 950px; }
.bp-prose .entry-content {
	color: #363b48;
	font-family: var(--bp-font-display);
	font-size: clamp(1.05rem, 1.3vw, 1.16rem);
}

.bp-prose .entry-content > * { max-width: 760px; }
.bp-prose .entry-content > .alignwide { margin-inline: calc((760px - min(100%, 1140px)) / 2); max-width: 1140px; }
.bp-prose .entry-content h2,
.bp-prose .entry-content h3 { color: var(--bp-ink); font-family: var(--bp-font-display); line-height: 1.15; margin-top: 2em; }
.bp-prose .entry-content table { border-collapse: collapse; display: block; max-width: 100%; overflow-x: auto; }
.bp-prose .entry-content th,
.bp-prose .entry-content td { border: 1px solid var(--bp-line); padding: 10px 13px; }
.bp-prose__featured { border-radius: var(--bp-radius-lg); margin-bottom: 42px; overflow: hidden; }

.bp-post-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.bp-post-card { background: var(--bp-white); border: 1px solid var(--bp-line); border-radius: var(--bp-radius); overflow: hidden; }
.bp-post-card__image { aspect-ratio: 4/3; display: block; }
.bp-post-card__image img { height: 100%; object-fit: cover; width: 100%; }
.bp-post-card__body { padding: 22px; }
.bp-post-card h2 { font-family: var(--bp-font-display); line-height: 1.2; margin: 0; }
.bp-post-card h2 a { text-decoration: none; }

.bp-comments { border-top: 1px solid var(--bp-line); margin-top: 60px; padding-top: 40px; }
.bp-comments .comment-list { list-style: none; padding: 0; }
.bp-comments .comment-body { border-bottom: 1px solid var(--bp-line); padding-block: 22px; }

.bp-empty-state {
	align-items: center;
	background: var(--bp-cream);
	border-radius: var(--bp-radius-lg);
	display: flex;
	flex-direction: column;
	margin-block: 44px;
	padding: clamp(40px, 7vw, 80px) 24px;
	text-align: center;
}

.bp-empty-state__icon {
	align-items: center;
	background: var(--bp-white);
	border-radius: 50%;
	display: flex;
	height: 70px;
	justify-content: center;
	width: 70px;
}

.bp-empty-state__icon svg { height: 30px; width: 30px; }
.bp-empty-state h2 { font-family: var(--bp-font-display); font-size: 2rem; margin: 20px 0 4px; }
.bp-empty-state p { color: var(--bp-muted); max-width: 500px; }
.bp-empty-state > div:last-child { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.bp-error-page__inner { max-width: 760px; text-align: center; }
.bp-error-page__code {
	color: var(--bp-sand);
	font-family: var(--bp-font-display);
	font-size: clamp(7rem, 24vw, 15rem);
	font-weight: 700;
	letter-spacing: -.08em;
	line-height: .7;
}

.bp-error-page h1 { font-family: var(--bp-font-display); font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1; margin: 12px 0; }
.bp-error-page > .bp-container > p:not(.bp-eyebrow) { color: var(--bp-muted); }
.bp-error-search { margin: 34px auto; max-width: 540px; text-align: left; }
.bp-error-search label { font-size: .75rem; font-weight: 700; }
.bp-error-search > div { display: flex; gap: 8px; margin-top: 7px; }
.bp-error-search input { border: 1px solid var(--bp-line); border-radius: 999px; min-width: 0; padding: 0 18px; width: 100%; }
.bp-error-page__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Wishlist */
.bp-wishlist-actions { align-items: center; display: flex; justify-content: space-between; margin-bottom: 26px; }
.bp-wishlist-grid > .bp-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bp-status { color: var(--bp-muted); font-size: .8rem; }
.bp-skeleton-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.bp-skeleton-grid span {
	animation: bp-pulse 1.4s ease-in-out infinite;
	aspect-ratio: 4/5;
	background: linear-gradient(90deg, #eeeae3, #f8f5f0, #eeeae3);
	background-size: 200% 100%;
	border-radius: var(--bp-radius);
}

@keyframes bp-pulse { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Footer */
.bp-footer { background: var(--bp-primary-deep); color: var(--bp-white); padding-top: clamp(60px, 8vw, 100px); }
.bp-footer__grid { display: grid; gap: 48px; grid-template-columns: 1.35fr .8fr .8fr 1fr; }
.bp-brand--footer {
	background: var(--bp-white);
	border-radius: 12px;
	padding: 8px 11px;
	width: max-content;
}
.bp-brand--footer .bp-brand__image { max-height: 46px; max-width: 180px; }
.bp-footer__brand > p { color: rgba(255,255,255,.65); font-size: .82rem; max-width: 310px; }
.bp-footer__social { display: flex; gap: 14px; margin-top: 24px; }
.bp-footer__social a { font-size: .75rem; font-weight: 750; }
.bp-footer h2 { font-size: .75rem; letter-spacing: .1em; margin: 5px 0 18px; text-transform: uppercase; }
.bp-footer ul { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }
.bp-footer li a,
.bp-footer__contact a,
.bp-footer__contact p,
.bp-footer address { color: rgba(255,255,255,.68); font-size: .8rem; font-style: normal; text-decoration: none; }
.bp-footer li a:hover,
.bp-footer__contact a:hover { color: white; text-decoration: underline; }
.bp-footer__contact { align-content: start; display: grid; gap: 8px; }
.bp-footer__contact p,
.bp-footer address { margin: 0; }
.bp-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255,255,255,.12);
	display: flex;
	font-size: .68rem;
	gap: 24px;
	justify-content: space-between;
	margin-top: 60px;
	min-height: 78px;
}

.bp-footer__bottom > ul { display: flex; flex-direction: row; gap: 16px; }
.bp-footer__bottom p { color: rgba(255,255,255,.54); margin: 0; }
.bp-bottom-nav { display: none; }
.bp-whatsapp {
	align-items: center;
	background: #217c55;
	border-radius: 999px;
	bottom: 24px;
	box-shadow: var(--bp-shadow-sm);
	color: white;
	display: flex;
	font-size: .72rem;
	gap: 8px;
	padding: 8px 14px 8px 8px;
	position: fixed;
	right: 20px;
	text-decoration: none;
	z-index: 90;
}

.bp-whatsapp span { align-items: center; background: white; border-radius: 50%; color: #217c55; display: flex; font-size: .57rem; font-weight: 900; height: 30px; justify-content: center; width: 30px; }

.bp-checkout-header {
	background: var(--bp-white);
	border-bottom: 1px solid var(--bp-line);
}

.bp-checkout-header__inner { align-items: center; display: flex; justify-content: space-between; min-height: 82px; }
.bp-checkout-header__trust { align-items: center; color: var(--bp-success); display: flex; font-size: .8rem; font-weight: 700; gap: 7px; }
.bp-checkout-header__trust svg { height: 20px; width: 20px; }
.bp-checkout-header__back { font-size: .78rem; font-weight: 700; }
.bp-checkout-footer { border-top: 1px solid var(--bp-line); color: var(--bp-muted); font-size: .72rem; padding-block: 24px; }
.bp-checkout-footer > div { align-items: center; display: flex; gap: 20px; justify-content: space-between; }

/* Responsive */
@media (max-width: 1100px) {
	.bp-header-actions > a span { display: none; }
	.bp-category-grid { grid-template-columns: repeat(4, 1fr); }
	.bp-category-card:nth-child(n+5) { display: none; }
	.bp-reviews__grid { grid-template-columns: repeat(2, 1fr); }
	.bp-footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 900px) {
	:root { --bp-header-height: 64px; }
	.admin-bar.has-sticky-header .bp-header { top: 46px; }
	.bp-header__desktop { display: none; }
	.bp-header__mobile { display: block; }
	.bp-mobile-header__row {
		align-items: center;
		display: grid;
		grid-template-columns: 48px 1fr auto;
		height: 64px;
		padding-inline: var(--bp-gutter);
	}

	.bp-mobile-header__row button {
		align-items: center;
		background: none;
		border: 0;
		cursor: pointer;
		display: flex;
		height: 44px;
		justify-content: center;
		padding: 0;
		position: relative;
		width: 44px;
	}

	.bp-mobile-header__row button svg { height: 23px; width: 23px; }
	.bp-brand--mobile { justify-content: center; }
	.bp-brand--mobile .bp-brand__wordmark { font-size: 1.65rem; }
	.bp-brand--mobile .bp-brand__image { max-height: 42px; max-width: 150px; }
	.bp-mobile-header__actions { display: flex; }
	.bp-mobile-cart .bp-cart-count { right: 1px; top: 1px; }
	.bp-hero__inner { grid-template-columns: .95fr 1.05fr; }
	.bp-trust__grid { grid-template-columns: repeat(2, 1fr); }
	.bp-trust__item:nth-child(2) { border-right: 0; }
	.bp-trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--bp-line); padding-bottom: 17px; }
	.bp-trust__item:nth-child(n+3) { padding-top: 17px; }
	.bp-product-grid,
	ul.products.bp-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.bp-product-grid > li:nth-child(n+7) { display: none; }
	.bp-campaign__inner { grid-template-columns: 1fr 1fr; }
	.bp-campaign__content { padding: 40px; }
	.bp-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
	:root {
		--bp-gutter: 18px;
		--bp-radius: 14px;
		--bp-radius-lg: 21px;
		--bp-section: 68px;
	}

	html { scroll-padding-top: 80px; }
	.admin-bar.has-sticky-header .bp-header { top: 46px; }
	.bp-announcement__inner { justify-content: flex-start; overflow: hidden; }
	.bp-announcement p {
		overflow: hidden;
		padding-left: 10px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.bp-announcement button { right: 5px; }
	.bp-section-heading { align-items: center; }
	.bp-section-heading h2 { font-size: 2.1rem; }
	.bp-section-heading > a { font-size: .74rem; }
	.bp-hero__inner { display: flex; flex-direction: column; min-height: 0; padding-right: var(--bp-gutter); }
	.bp-hero__content { max-width: none; order: 2; padding: 28px 0 34px; }
	.bp-hero h1 { font-size: clamp(2.55rem, 12.5vw, 3.8rem); }
	.bp-hero__lead { font-size: .92rem; margin-block: 14px 18px; }
	.bp-hero__actions { align-items: stretch; display: grid; grid-template-columns: 1fr; }
	.bp-hero__actions .bp-button { width: 100%; }
	.bp-hero__microtrust { gap: 12px; justify-content: center; margin-top: 18px; }
	.bp-hero__visual { border-radius: 0 0 var(--bp-radius-lg) var(--bp-radius-lg); min-height: 240px; order: 1; }
	.bp-hero__visual picture,
	.bp-hero__image { min-height: 240px; }
	.bp-hero__visual::after { background: linear-gradient(0deg, var(--bp-primary) 0%, transparent 22%); }
	.bp-hero-art { min-height: 240px; }
	.bp-hero-art__card { height: 48%; left: 40%; top: 25%; width: 34%; }
	.bp-hero-art__orb { height: 220px; right: 7%; width: 220px; }
	.bp-trust__grid { padding-block: 20px; }
	.bp-trust__item { gap: 9px; justify-content: flex-start; padding-inline: 8px; }
	.bp-trust__icon { flex-basis: 36px; height: 36px; width: 36px; }
	.bp-trust__icon svg { height: 18px; width: 18px; }
	.bp-trust__item strong { font-size: .74rem; }
	.bp-trust__item small { display: none; }
	.bp-category-grid {
		gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-category-card:nth-child(n+5) { display: block; }
	.bp-category-card__title { font-size: 1rem; }
	.bp-product-grid,
	ul.products.bp-product-grid,
	.bp-wishlist-grid > .bp-product-grid {
		gap: 24px 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-product-grid > li:nth-child(n+7) { display: list-item; }
	.bp-product-card__body { padding-top: 11px; }
	.bp-product-card__meta { font-size: .59rem; margin-bottom: 4px; }
	.bp-product-card__title,
	.woocommerce ul.products li.product .bp-product-card__title { font-size: .82rem; }
	.bp-product-card__rating { display: none; }
	.bp-product-card__price,
	.woocommerce ul.products li.product .bp-product-card__price { align-items: flex-start; flex-direction: column; font-size: .9rem; gap: 1px; }
	.bp-product-card__price del { font-size: .7rem; }
	.bp-product-card__offer { font-size: .62rem; }
	.bp-product-card__badge,
	.bp-product-card__stock { font-size: .56rem; left: 8px; padding: 5px 7px; top: 8px; }
	.bp-product-card__stock { top: 35px; }
	.bp-wishlist-button { height: 36px; right: 8px; top: 8px; width: 36px; }
	.bp-product-card__actions .bp-button { font-size: .72rem; min-height: 40px; padding-inline: 8px; }
	.bp-campaign__inner { display: flex; flex-direction: column; }
	.bp-campaign__content { order: 2; padding: 34px 24px 38px; }
	.bp-campaign__content h2 { font-size: 2.7rem; }
	.bp-campaign__media,
	.bp-campaign__art { min-height: 280px; order: 1; }
	.bp-countdown > span { min-width: 60px; }
	.bp-focus-banner__inner { gap: 30px; grid-template-columns: 1fr; }
	.bp-focus-banner__media,
	.bp-focus-banner__media img,
	.bp-focus-banner__placeholder { min-height: 270px; }
	.bp-focus-banner__content { padding: 0 6px 14px; }
	.bp-focus-banner__content h2 { font-size: 3rem; }
	.bp-reviews__grid {
		display: flex;
		margin-inline: calc(-1 * var(--bp-gutter));
		overflow-x: auto;
		padding: 0 var(--bp-gutter) 10px;
		scroll-snap-type: x mandatory;
	}

	.bp-review-card { flex: 0 0 84%; min-height: 270px; scroll-snap-align: start; }
	.bp-newsletter__inner { gap: 28px; grid-template-columns: 1fr; }
	.bp-newsletter__form form > div:first-of-type { align-items: stretch; flex-direction: column; }
	.bp-newsletter__form .bp-button { width: 100%; }
	.bp-post-grid { grid-template-columns: 1fr; }
	.bp-footer { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
	.bp-footer__grid { grid-template-columns: 1fr 1fr; }
	.bp-footer__brand,
	.bp-footer__contact { grid-column: 1 / -1; }
	.bp-footer__bottom { align-items: flex-start; flex-direction: column; gap: 10px; padding-block: 24px; }
	.bp-footer__bottom > ul { flex-wrap: wrap; }
	.bp-bottom-nav {
		background: rgba(255,253,249,.97);
		border-top: 1px solid var(--bp-line);
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		left: 0;
		padding: 7px 5px calc(7px + env(safe-area-inset-bottom));
		position: fixed;
		right: 0;
		z-index: 95;
	}

	.bp-bottom-nav a,
	.bp-bottom-nav button {
		align-items: center;
		background: none;
		border: 0;
		color: var(--bp-muted);
		display: flex;
		flex-direction: column;
		font-size: .59rem;
		font-weight: 700;
		gap: 2px;
		justify-content: center;
		min-height: 46px;
		padding: 2px;
		text-decoration: none;
	}

	.bp-bottom-nav [aria-current="page"] { color: var(--bp-primary); }
	.bp-bottom-nav svg { height: 21px; width: 21px; }
	.bp-whatsapp { bottom: calc(78px + env(safe-area-inset-bottom)); right: 12px; }
	.bp-checkout-header__trust span { display: none; }
	.bp-checkout-header__back { font-size: .7rem; }
	.bp-checkout-footer > div { align-items: flex-start; flex-direction: column; gap: 5px; }
	.bp-wishlist-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
	.bp-skeleton-grid { gap: 12px; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
	:root { --bp-gutter: 14px; }
	.bp-brand--mobile .bp-brand__wordmark { font-size: 1.45rem; }
	.bp-hero h1 { font-size: 2.7rem; }
	.bp-section-heading > a { max-width: 105px; text-align: right; }
	.bp-product-card__actions .bp-button { font-size: .67rem; }
}

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

@media print {
	.bp-announcement,
	.bp-header,
	.bp-footer,
	.bp-bottom-nav,
	.bp-whatsapp,
	.bp-mobile-buybar { display: none !important; }
	body { background: white; color: black; }
	a { color: black; text-decoration: none; }
	.bp-prose-wrap { max-width: none; }
}
