/**
 * BiBaY Child base visual system.
 *
 * Phase 01 and 02A scope:
 * - design tokens
 * - typography scale
 * - spacing and containers
 * - buttons and links
 * - focus states
 * - badges
 * - basic product card shell
 * - header and navigation primitives
 * - home hero and editorial category grid
 *
 * Intentionally excludes:
 * - home sections beyond phase 02A
 * - footer
 * - checkout styling
 * - WooCommerce behavior changes
 * - external fonts or scripts
 */

:root {
	/* Brand palette */
	--bibay-white: #ffffff;
	--bibay-ink: #292929;
	--bibay-gold: #c6a15b;
	--bibay-offwhite: #f6f5f2;
	--bibay-muted: #77736e;
	--bibay-line: #dfddd8;

	/* Support neutrals */
	--bibay-surface: #fbfaf8;
	--bibay-border-strong: #cfcac1;
	--bibay-focus: #8d6c2f;

	/* Typography */
	--font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--font-size-xs: clamp(0.75rem, 0.72rem + 0.08vw, 0.8125rem);
	--font-size-sm: clamp(0.875rem, 0.84rem + 0.12vw, 0.9375rem);
	--font-size-base: clamp(1rem, 0.97rem + 0.14vw, 1.0625rem);
	--font-size-lg: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
	--font-size-xl: clamp(1.375rem, 1.18rem + 0.9vw, 1.875rem);
	--font-size-2xl: clamp(1.875rem, 1.45rem + 1.5vw, 2.75rem);
	--font-size-display: clamp(2.5rem, 1.8rem + 3vw, 4.5rem);

	/* Layout */
	--bibay-container-editorial: 1440px;
	--bibay-container-reading: 1280px;
	--bibay-gutter-mobile: 20px;
	--bibay-gutter-tablet: 32px;
	--bibay-gutter-desktop: 40px;

	/* Spacing scale */
	--bibay-space-2xs: 0.25rem;
	--bibay-space-xs: 0.5rem;
	--bibay-space-sm: 0.75rem;
	--bibay-space-md: 1rem;
	--bibay-space-lg: 1.5rem;
	--bibay-space-xl: 2rem;
	--bibay-space-2xl: 3rem;
	--bibay-space-3xl: 4.5rem;
	--bibay-space-4xl: 6rem;

	/* Header sizing */
	--bibay-header-height-mobile: 60px;
	--bibay-header-height-desktop: 72px;
	--bibay-tap-target: 44px;

	/* Motion */
	--bibay-transition-fast: 150ms ease;
	--bibay-transition-base: 200ms ease;
	--bibay-transition-slow: 250ms ease;
}

/* Phase 06A: native Bricks catalogue filters */
body.woocommerce-shop #brx-content .bibay-filter-results,
body.tax-product_cat #brx-content .bibay-filter-results {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	column-gap: clamp(16px, 1.75vw, 28px) !important;
	row-gap: clamp(34px, 4vw, 56px) !important;
}

body.woocommerce-shop #brx-content .bibay-filter-results > :not(.bibay-catalog-card),
body.tax-product_cat #brx-content .bibay-filter-results > :not(.bibay-catalog-card) {
	grid-column: 1 / -1 !important;
}

.bibay-catalog-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 0;
}

.bibay-catalog-card__media {
	display: block;
	width: 100%;
	margin: 0 0 14px;
	overflow: hidden;
	background: var(--bibay-offwhite);
}

.bibay-catalog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform 240ms ease;
}

@media (hover: hover) {
	.bibay-catalog-card:hover .bibay-catalog-card__media img {
		transform: scale(1.018);
	}
}

.bibay-catalog-card__title {
	margin: 0 0 7px !important;
	color: var(--bibay-ink);
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
}

.bibay-catalog-card__title a {
	color: inherit;
	text-decoration: none;
}

.bibay-catalog-card__title a:hover {
	color: var(--bibay-gold);
}

.bibay-catalog-card__price {
	margin-top: auto;
	color: var(--bibay-ink);
	font-size: 12px;
	line-height: 1.45;
}

.bibay-catalog-card__price del {
	margin-right: 6px;
	color: var(--bibay-muted);
	opacity: 0.8;
}

.bibay-catalog-card__price ins {
	color: var(--bibay-ink);
	text-decoration: none;
}

.bibay-catalog-toolbar {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	min-height: 62px;
	padding-block: 8px 17px;
	border-bottom: 1px solid var(--bibay-line);
}

.bibay-catalog-results-summary {
	order: -10;
	width: 100%;
	margin: -34px 0 0;
	color: var(--bibay-muted);
	font-size: 12px;
	line-height: 1.5;
}

.bibay-catalog-filters__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 112px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--bibay-line);
	background: var(--bibay-white);
	color: var(--bibay-ink);
	cursor: pointer;
}

.bibay-catalog-filters__trigger::after {
	content: "FILTRAR";
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
}

html[lang^="de"] .bibay-catalog-filters__trigger::after {
	content: "FILTERN";
}

.bibay-catalog-filters__trigger:hover {
	border-color: var(--bibay-ink);
}

.bibay-catalog-filters__trigger:focus-visible,
.bibay-catalog-filters__drawer button:focus-visible,
.bibay-catalog-filters__drawer input:focus-visible,
.bibay-catalog-filters__drawer select:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 3px;
}

.bibay-catalog-filters__drawer {
	z-index: 100001 !important;
}

.bibay-catalog-filters__drawer .brx-offcanvas-inner {
	width: min(420px, 100vw) !important;
	max-width: 420px !important;
	height: 100vh !important;
	height: 100dvh !important;
	background: var(--bibay-white);
	box-shadow: none !important;
}

.bibay-catalog-filters__body {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 44px;
	align-content: start;
	width: 100%;
	max-width: 100%;
	height: 100%;
	padding: 0 28px 104px;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	overscroll-behavior: contain;
}

.bibay-catalog-filters__header {
	position: sticky;
	top: 0;
	z-index: 3;
	grid-column: 1;
	grid-row: 1;
	display: flex;
	align-items: center;
	min-height: 72px;
	margin: 0;
	border-bottom: 1px solid var(--bibay-line);
	background: var(--bibay-white);
	color: var(--bibay-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}

.bibay-catalog-filters__close {
	position: sticky;
	top: 0;
	z-index: 4;
	grid-column: 2;
	grid-row: 1;
	width: 44px;
	height: 72px;
	background: var(--bibay-white);
	color: var(--bibay-ink);
}

.bibay-catalog-filters__section-title,
.bibay-catalog-filters__section,
.bibay-catalog-filters__active {
	grid-column: 1 / -1;
	min-width: 0;
}

.bibay-catalog-filters__section-title {
	margin: 0;
	padding: 30px 0 14px;
	border-top: 1px solid var(--bibay-line);
	color: var(--bibay-ink);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.bibay-catalog-filters__header + .bibay-catalog-filters__close + .bibay-catalog-filters__section-title {
	border-top: 0;
}

.bibay-catalog-filters__section {
	padding-bottom: 30px;
}

.bibay-catalog-filters__section label,
.bibay-catalog-filters__section select {
	font-size: 14px;
}

.bibay-catalog-filters__section input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--bibay-ink);
}

.bibay-catalog-filters__section select {
	width: 100%;
	min-height: 44px;
	padding: 0 40px 0 12px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background-color: var(--bibay-white);
	color: var(--bibay-ink);
}

.bibay-catalog-filters__active:empty,
.bibay-catalog-filters__active.brx-no-active-filter {
	display: none;
}

.bibay-catalog-filters__active {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 0 24px;
}

.bibay-catalog-filters__active button,
.bibay-catalog-filter-chip {
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background: var(--bibay-offwhite);
	color: var(--bibay-ink);
	font-size: 12px;
}

.bibay-catalog-filter-clear,
.bibay-catalog-filter-submit {
	position: sticky;
	bottom: 0;
	z-index: 3;
	grid-row: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 52px;
	margin-top: 20px;
	background: var(--bibay-white);
}

.bibay-catalog-filter-clear {
	grid-column: 1 / -1;
	width: 42%;
	justify-self: start;
	border: 1px solid var(--bibay-ink);
	color: var(--bibay-ink);
}

.bibay-catalog-filter-submit {
	grid-column: 1 / -1;
	width: 58%;
	justify-self: end;
	border: 1px solid var(--bibay-ink);
	background: var(--bibay-ink);
	color: var(--bibay-white);
}

.bibay-catalog-filter-clear button,
.bibay-catalog-filter-submit button {
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.bibay-catalog-pagination {
	grid-column: 1 / -1 !important;
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.bibay-catalog-pagination a,
.bibay-catalog-pagination span {
	min-width: 44px;
	min-height: 44px;
}

html:has(.bibay-catalog-filters__drawer.brx-open),
body.no-scroll:has(.bibay-catalog-filters__drawer.brx-open) {
	width: 100%;
	overflow: hidden !important;
	overscroll-behavior: none;
}

@media (max-width: 1199px) {
	body.woocommerce-shop #brx-content .bibay-filter-results,
	body.tax-product_cat #brx-content .bibay-filter-results {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	body.woocommerce-shop #brx-content .bibay-filter-results,
	body.tax-product_cat #brx-content .bibay-filter-results {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		column-gap: 12px !important;
		row-gap: 30px !important;
	}

	.bibay-catalog-toolbar {
		min-height: 56px;
		padding-bottom: 14px;
	}

	.bibay-catalog-results-summary {
		margin-top: -24px;
		font-size: 11px;
	}

	.bibay-catalog-filters__trigger {
		width: 100%;
		min-width: 0;
	}

	.bibay-catalog-filters__drawer .brx-offcanvas-inner {
		width: 100vw !important;
		max-width: none !important;
		height: 100dvh !important;
	}

	.bibay-catalog-filters__body {
		padding-inline: 20px;
		padding-bottom: 96px;
	}

	.bibay-catalog-filters__header,
	.bibay-catalog-filters__close {
		height: 64px;
		min-height: 64px;
	}

	.bibay-catalog-card__media {
		margin-bottom: 11px;
	}

	.bibay-catalog-card__title {
		font-size: 12px !important;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bibay-white);
	color: var(--bibay-ink);
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.bibay-container {
	width: min(100% - (var(--bibay-gutter-mobile) * 2), var(--bibay-container-editorial));
	margin-inline: auto;
}

.bibay-container--reading {
	width: min(100% - (var(--bibay-gutter-mobile) * 2), var(--bibay-container-reading));
	margin-inline: auto;
}

.bibay-section {
	padding-block: var(--bibay-space-2xl);
}

.bibay-heading {
	margin: 0;
	color: var(--bibay-ink);
	font-size: var(--font-size-2xl);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: 0;
}

.bibay-heading--display {
	font-size: var(--font-size-display);
}

.bibay-copy {
	margin: 0;
	color: var(--bibay-muted);
	font-size: var(--font-size-base);
	line-height: 1.7;
}

.bibay-eyebrow {
	margin: 0 0 var(--bibay-space-xs);
	color: var(--bibay-muted);
	font-size: var(--font-size-xs);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bibay-link {
	color: inherit;
	text-decoration: none;
	transition: color var(--bibay-transition-fast), opacity var(--bibay-transition-fast);
}

.bibay-link:hover,
.bibay-link:focus-visible {
	color: var(--bibay-gold);
}

.bibay-button,
.bibay-button-primary,
.bibay-button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 0;
	font-size: var(--font-size-sm);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--bibay-transition-base), border-color var(--bibay-transition-base), color var(--bibay-transition-base), opacity var(--bibay-transition-base);
}

.bibay-button-primary {
	background-color: var(--bibay-ink);
	border-color: var(--bibay-ink);
	color: var(--bibay-white);
}

.bibay-button-primary:hover,
.bibay-button-primary:focus-visible {
	background-color: #1f1f1f;
	border-color: #1f1f1f;
	color: var(--bibay-white);
}

.bibay-button-secondary {
	background-color: transparent;
	border-color: var(--bibay-ink);
	color: var(--bibay-ink);
}

.bibay-button-secondary:hover,
.bibay-button-secondary:focus-visible {
	border-color: var(--bibay-gold);
	color: var(--bibay-gold);
}

.bibay-button-ghost {
	background-color: transparent;
	border-color: transparent;
	color: var(--bibay-ink);
	padding-inline: 0;
}

.bibay-button-ghost:hover,
.bibay-button-ghost:focus-visible {
	color: var(--bibay-gold);
}

.bibay-badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 10px;
	border: 1px solid var(--bibay-line);
	border-radius: 999px;
	background-color: var(--bibay-white);
	color: var(--bibay-ink);
	font-size: var(--font-size-xs);
	line-height: 1;
}

.bibay-badge--bestseller {
	background-color: #f5efe3;
	border-color: #e1cfaa;
}

.bibay-badge--new {
	background-color: var(--bibay-offwhite);
}

.bibay-badge--low-stock {
	background-color: #f8f4ed;
	border-color: #dbc8a4;
}

.bibay-badge--sold-out {
	background-color: #efeeea;
	color: var(--bibay-muted);
}

.bibay-product-card {
	display: grid;
	gap: var(--bibay-space-sm);
}

.bibay-product-card__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background-color: var(--bibay-offwhite);
}

.bibay-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bibay-product-card__title {
	margin: 0;
	color: var(--bibay-ink);
	font-size: var(--font-size-sm);
	font-weight: 500;
	line-height: 1.35;
}

.bibay-product-card__meta {
	color: var(--bibay-muted);
	font-size: var(--font-size-xs);
	line-height: 1.4;
}

/* Header primitives for Bricks classes */
.bibay-header-shell {
	position: relative;
	z-index: 30;
	width: 100%;
	border-bottom: 1px solid transparent;
	transition: background-color var(--bibay-transition-slow), border-color var(--bibay-transition-slow), color var(--bibay-transition-slow);
}

.bibay-header-shell.is-scrolled {
	background-color: rgba(255, 255, 255, 0.96);
	border-color: var(--bibay-line);
	backdrop-filter: blur(8px);
}

.bibay-header-bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: var(--bibay-header-height-mobile);
	column-gap: var(--bibay-space-sm);
}

.bibay-header-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--bibay-ink);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
}

.bibay-header-actions,
.bibay-header-actions--left {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.bibay-header-nav {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.bibay-header-link {
	color: var(--bibay-ink);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	transition: color var(--bibay-transition-fast), opacity var(--bibay-transition-fast);
}

.bibay-header-link:hover,
.bibay-header-link:focus-visible {
	color: var(--bibay-gold);
}

.bibay-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: var(--bibay-tap-target);
	block-size: var(--bibay-tap-target);
	background: transparent;
	border: 0;
	color: var(--bibay-ink);
	cursor: pointer;
	text-decoration: none;
	transition: color var(--bibay-transition-fast), opacity var(--bibay-transition-fast);
}

.bibay-icon-button:hover,
.bibay-icon-button:focus-visible {
	color: var(--bibay-gold);
}

.bibay-icon-button svg {
	inline-size: 20px;
	block-size: 20px;
	stroke: currentColor;
}

.bibay-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding-inline: 4px;
	border-radius: 999px;
	background-color: var(--bibay-ink);
	color: var(--bibay-white);
	font-size: 11px;
	line-height: 1;
}

.bibay-drawer {
	position: fixed;
	inset: 0;
	display: none;
	background-color: rgba(41, 41, 41, 0.24);
}

.bibay-drawer__panel {
	inline-size: min(92vw, 420px);
	block-size: 100%;
	padding: var(--bibay-space-lg) var(--bibay-gutter-mobile);
	background-color: var(--bibay-white);
}

/* Global Bricks header V3.1 */
.bibay-header-global.brxe-section {
	position: fixed;
	inset: 0 0 auto;
	z-index: 900;
	max-width: none;
	padding: 0;
	background: var(--bibay-white);
	border-color: var(--bibay-line);
	color: var(--bibay-ink);
}

body.bibay-has-global-header {
	padding-top: var(--bibay-header-height-mobile);
}

body.bibay-has-global-header.bibay-header-overlay-active {
	padding-top: 0;
}

.bibay-header-global.is-overlay-enabled:not(.is-scrolled) {
	background: transparent;
	border-color: transparent;
	color: var(--bibay-white);
}

.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-header-link,
.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-header-brand,
.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-icon-button,
.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-header-search,
.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-header-toggle {
	color: var(--bibay-white);
}

.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-header-global__bar {
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.16);
}

.bibay-header-global.is-overlay-enabled:not(.is-scrolled) svg {
	filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.14));
}

.bibay-header-global.is-overlay-enabled:not(.is-scrolled) .bibay-cart-count {
	background: var(--bibay-white);
	color: var(--bibay-ink);
}

.bibay-header-global__bar.brxe-container {
	position: relative;
	width: 100%;
	max-width: var(--bibay-container-editorial);
	padding-inline: 18px;
}

.bibay-header-global__left.brxe-block,
.bibay-header-global__right.brxe-block {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: auto;
	min-width: 0;
}

.bibay-header-global__left {
	grid-column: 1;
	justify-content: flex-start;
}

.bibay-header-global__right {
	grid-column: 3;
	justify-content: flex-end;
}

.bibay-header-global__mobile-left {
	display: inline-flex;
	align-items: center;
}

.bibay-header-global__brand-wrap {
	position: absolute;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	transform: translateX(-50%);
	pointer-events: none;
}

.bibay-header-global__brand.brxe-logo,
.bibay-header-drawer__brand.brxe-logo {
	width: auto;
	color: inherit;
	pointer-events: auto;
}

.bibay-header-global__brand .bricks-site-logo,
.bibay-header-drawer__brand .bricks-site-logo {
	color: inherit;
	font: inherit;
	text-decoration: none;
}

.bibay-header-global__nav {
	display: none;
}

.bibay-header-toggle.brxe-toggle,
.bibay-header-search.brxe-search,
.bibay-icon-button.brxe-icon {
	flex: 0 0 var(--bibay-tap-target);
	width: var(--bibay-tap-target);
	height: var(--bibay-tap-target);
	min-width: var(--bibay-tap-target);
	min-height: var(--bibay-tap-target);
}

.bibay-header-toggle.brxe-toggle,
.bibay-header-search.brxe-search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.bibay-header-toggle .brxa-wrap,
.bibay-header-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--bibay-tap-target);
	height: var(--bibay-tap-target);
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
}

.bibay-header-toggle .brxa-inner {
	--brxe-toggle-scale: 0.5;
	--brxe-toggle-bar-height: 1px;
	color: currentColor;
}

.bibay-header-toggle .brxa-inner,
.bibay-header-toggle .brxa-inner::before,
.bibay-header-toggle .brxa-inner::after {
	width: 27px !important;
	height: 1px !important;
}

.bibay-header-toggle .brxa-inner::before {
	top: -7px;
}

.bibay-header-toggle .brxa-inner::after {
	top: 7px;
}

.bibay-icon-button.brxe-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	color: inherit;
}

.bibay-header-global a.bricks-link-wrapper,
.bibay-header-drawer a.bricks-link-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.bibay-icon-button.brxe-icon i,
.bibay-icon-button.brxe-icon svg {
	display: block;
	width: 21px;
	height: 21px;
	font-size: 21px;
	line-height: 1;
}

.bibay-header-search button i {
	font-size: 21px;
	line-height: 1;
}

.bibay-header-account {
	display: none !important;
}

.bibay-header-search--desktop {
	display: none !important;
}

.bibay-header-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.bibay-header-cart .bibay-cart-count {
	position: absolute;
	top: 3px;
	right: 0;
	z-index: 1;
	min-width: 14px;
	height: 14px;
	padding-inline: 3px;
	font-size: 9px;
	text-decoration: none;
}

.bibay-header-drawer.brxe-offcanvas {
	z-index: 1200;
}

.bibay-header-drawer.brxe-offcanvas.brx-open {
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	max-width: none !important;
	height: 100vh !important;
	height: 100dvh !important;
	overflow: hidden !important;
}

.bibay-header-drawer .brx-offcanvas-inner.bibay-header-drawer__inner {
	position: fixed !important;
	inset: 0 auto 0 0 !important;
	z-index: 1;
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	flex-wrap: nowrap !important;
	box-sizing: border-box;
	width: min(100vw, 440px);
	max-width: 100%;
	height: 100vh !important;
	height: 100dvh !important;
	padding: 0 24px 24px;
	background: var(--bibay-white);
	color: var(--bibay-ink);
	overflow-x: hidden !important;
	overflow-y: auto !important;
	overscroll-behavior: contain;
}

.bibay-header-drawer__inner > * {
	max-width: 100%;
	min-width: 0;
}

.bibay-header-drawer__header.brxe-block {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	flex-flow: row nowrap;
	flex: 0 0 64px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 64px;
	margin: 0;
	background: var(--bibay-white);
}

.bibay-header-drawer.brx-open .bibay-header-drawer__close {
	position: relative;
	z-index: 3;
	color: var(--bibay-ink) !important;
}

.bibay-header-drawer.brx-open .bibay-header-drawer__close .brxa-wrap,
.bibay-header-drawer.brx-open .bibay-header-drawer__close .brxa-inner {
	color: var(--bibay-ink) !important;
}

.bibay-header-drawer__close .brxa-inner {
	--brxe-toggle-scale: 0.5;
	--brxe-toggle-bar-height: 1px;
	position: relative !important;
	top: auto !important;
	left: auto !important;
	display: block !important;
	width: 24px !important;
	height: 24px !important;
	background-color: transparent !important;
	transform: none !important;
}

.bibay-header-drawer__close .brxa-inner::before,
.bibay-header-drawer__close .brxa-inner::after {
	content: "" !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	display: block !important;
	width: 24px !important;
	height: 2px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 1px;
	background: #292929 !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform-origin: center !important;
}

.bibay-header-drawer__close .brxa-inner::before {
	transform: translate(-50%, -50%) rotate(45deg) !important;
}

.bibay-header-drawer__close .brxa-inner::after {
	transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.bibay-header-drawer__nav.brxe-block {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	overflow: visible;
}

.bibay-header-drawer__link {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	min-height: 52px;
	color: var(--bibay-ink);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.3;
	white-space: normal;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.bibay-header-drawer__link--secondary {
	color: var(--bibay-muted);
	font-size: 15px;
}

.bibay-header-drawer__link:hover,
.bibay-header-drawer__link:focus-visible,
.bibay-header-drawer__footer-link:hover,
.bibay-header-drawer__footer-link:focus-visible {
	color: var(--bibay-gold);
}

.bibay-header-divider {
	width: 100%;
	height: 1px;
	margin: 20px 0;
	background: var(--bibay-line);
}

.bibay-header-drawer__footer.brxe-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--bibay-space-sm);
	width: 100%;
	margin-top: auto;
	padding-top: var(--bibay-space-xl);
}

.bibay-header-drawer__footer-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--bibay-tap-target);
	border: 1px solid var(--bibay-line);
	color: var(--bibay-ink);
	font-size: var(--font-size-xs);
	font-weight: 600;
	text-decoration: none;
}

.bibay-header-language-placeholder {
	cursor: default;
	opacity: .55;
}

.bibay-language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 44px;
	color: currentColor;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}

.bibay-language-switcher a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: inherit;
	text-decoration: none;
}

.bibay-language-switcher a:not([aria-current="page"]) {
	opacity: 0.58;
}

.bibay-language-switcher a:hover,
.bibay-language-switcher a:focus-visible {
	opacity: 1;
	color: var(--bibay-color-gold);
}

.bibay-language-switcher--mobile {
	width: max-content;
}

@media (max-width: 1023px) {
	.bibay-language-switcher--desktop {
		display: none;
	}
}

.bibay-header-drawer .brx-offcanvas-backdrop {
	position: fixed !important;
	inset: 0 !important;
	z-index: 0;
	width: 100vw !important;
	height: 100vh !important;
	height: 100dvh !important;
	background: rgba(41, 41, 41, 0.32);
}

html:has(.bibay-header-drawer.brx-open),
body.no-scroll:has(.bibay-header-drawer.brx-open) {
	width: 100%;
	overflow: hidden !important;
	overscroll-behavior: none;
}

@media (max-width: 800px) {
	.bibay-header-drawer .brx-offcanvas-inner.bibay-header-drawer__inner {
		width: 100vw !important;
		max-width: none !important;
	}
}

/* Product information and evergreen content pages. */
.bibay-product-accordions {
	width: 100%;
	margin-top: clamp(28px, 3vw, 42px);
	border-top: 1px solid var(--bibay-border, #dfddd8);
}

.bibay-product-accordion {
	margin: 0;
	border-bottom: 1px solid var(--bibay-border, #dfddd8);
}

.bibay-product-accordion > summary {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
	color: var(--bibay-ink, #292929);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .02em;
	list-style: none;
	cursor: pointer;
}

.bibay-product-accordion > summary::-webkit-details-marker {
	display: none;
}

.bibay-product-accordion > summary::after {
	content: "+";
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	font-size: 18px;
	font-weight: 300;
	line-height: 1;
	transition: transform 180ms ease;
}

.bibay-product-accordion[open] > summary::after {
	transform: rotate(45deg);
}

.bibay-product-accordion > summary:focus-visible {
	outline: 2px solid var(--bibay-gold, #b68a3a);
	outline-offset: 4px;
}

.bibay-product-accordion__content {
	padding: 0 0 22px;
	color: #575757;
	font-size: 14px;
	line-height: 1.7;
}

.bibay-product-accordion__content p {
	margin: 0;
}

.bibay-product-accordion__content p + p {
	margin-top: 12px;
}

.bibay-product-accordion__content a {
	color: var(--bibay-ink, #292929);
	text-decoration: underline;
	text-decoration-color: var(--bibay-border, #dfddd8);
	text-underline-offset: 4px;
}

.bibay-product-facts {
	display: grid;
	grid-template-columns: minmax(110px, .7fr) minmax(0, 1.3fr);
	gap: 8px 20px;
	margin: 0;
}

.bibay-product-facts dt,
.bibay-product-facts dd {
	margin: 0;
}

.bibay-product-facts dt {
	color: var(--bibay-ink, #292929);
	font-weight: 500;
}

.bibay-content-page {
	width: min(100% - 40px, 820px);
	margin-inline: auto;
	padding-block: clamp(44px, 6vw, 88px) clamp(72px, 8vw, 120px);
	color: var(--bibay-ink, #292929);
}

.bibay-content-page__lead {
	max-width: 680px;
	margin: 0 0 clamp(40px, 5vw, 64px);
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.55;
}

.bibay-content-page section + section {
	margin-top: clamp(36px, 4vw, 56px);
}

.bibay-content-page h2 {
	margin: 0 0 14px;
	font-size: clamp(21px, 2vw, 28px);
	font-weight: 500;
	line-height: 1.25;
}

.bibay-content-page h3 {
	margin: 28px 0 10px;
	font-size: 16px;
	font-weight: 500;
}

.bibay-content-page p,
.bibay-content-page li {
	color: #575757;
	font-size: 16px;
	line-height: 1.75;
}

.bibay-content-page p {
	margin: 0;
}

.bibay-content-page p + p {
	margin-top: 14px;
}

.bibay-content-page ul {
	margin: 14px 0 0;
	padding-left: 20px;
}

.bibay-content-page a {
	color: var(--bibay-ink, #292929);
	text-decoration: underline;
	text-decoration-color: var(--bibay-border, #dfddd8);
	text-underline-offset: 4px;
}

.bibay-content-note {
	margin-top: 24px !important;
	padding: 18px 20px;
	border-left: 2px solid var(--bibay-gold, #b68a3a);
	background: #faf9f7;
}

.bibay-faq-list {
	border-top: 1px solid var(--bibay-border, #dfddd8);
}

.bibay-faq-list details {
	border-bottom: 1px solid var(--bibay-border, #dfddd8);
}

.bibay-faq-list summary {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 500;
	list-style: none;
	cursor: pointer;
}

.bibay-faq-list summary::-webkit-details-marker {
	display: none;
}

.bibay-faq-list summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 300;
	transition: transform 180ms ease;
}

.bibay-faq-list details[open] summary::after {
	transform: rotate(45deg);
}

.bibay-faq-list summary:focus-visible {
	outline: 2px solid var(--bibay-gold, #b68a3a);
	outline-offset: 4px;
}

.bibay-faq-list details > div {
	padding: 0 0 22px;
}

.bibay-contact-form {
	margin-top: 36px;
}

.bibay-contact-form input:not([type="submit"]),
.bibay-contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--bibay-border, #dfddd8);
	border-radius: 0;
	background: #fff;
	color: var(--bibay-ink, #292929);
}

.bibay-contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.bibay-contact-form input[type="submit"] {
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid var(--bibay-ink, #292929);
	border-radius: 0;
	background: var(--bibay-ink, #292929);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .02em;
}

@media (max-width: 767px) {
	.bibay-product-facts {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.bibay-product-facts dd + dt {
		margin-top: 10px;
	}

	.bibay-content-page {
		width: min(100% - 40px, 820px);
		padding-block: 36px 80px;
	}

	.bibay-content-page__lead {
		margin-bottom: 40px;
		font-size: 18px;
	}

	.bibay-content-page p,
	.bibay-content-page li {
		font-size: 15px;
	}
}

/* Product category archive global: native Bricks/WooCommerce structure */
body.tax-product_cat .bibay-category-archive.brxe-section,
body.woocommerce-shop .bibay-category-archive.brxe-section {
	padding: 0;
}

body.tax-product_cat .bibay-category-archive__inner.brxe-container,
body.woocommerce-shop .bibay-category-archive__inner.brxe-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: min(100% - (var(--bibay-gutter-desktop) * 2), var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

.bibay-category-archive__breadcrumbs {
	order: -50;
	margin: 0 0 clamp(20px, 2.25vw, 32px);
	color: var(--bibay-muted);
	font-size: 12px;
	line-height: 1.5;
}

.bibay-category-archive__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.bibay-category-archive__breadcrumbs a:hover {
	color: var(--bibay-gold);
}

.bibay-category-archive__breadcrumbs a:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 3px;
}

.bibay-category-archive__title {
	order: -40;
	max-width: 800px;
	margin: 0 0 16px !important;
	font-size: clamp(34px, 3.5vw, 52px) !important;
	font-weight: 500 !important;
	line-height: 1.04 !important;
	text-transform: uppercase;
}

.bibay-category-archive__description {
	order: -30;
	max-width: 760px !important;
	margin: 0 0 clamp(32px, 3.5vw, 48px) !important;
}

.bibay-category-archive__description:empty {
	display: none;
}

.bibay-catalog-toolbar {
	order: -20;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--bibay-line);
}

.bibay-catalog-toolbar__count {
	order: 0;
	justify-self: start;
	margin: 0;
}

.bibay-catalog-toolbar__sort {
	order: 1;
	justify-self: end;
}

.bibay-catalog-toolbar__filter {
	order: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background: var(--bibay-white);
	color: var(--bibay-ink);
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
	cursor: default;
}

.bibay-product-grid {
	order: 0;
	width: 100%;
	margin-top: 28px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}

.bibay-pagination {
	order: 10;
}

.bibay-catalog-empty {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 300px;
	width: 100%;
	padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
	background: var(--bibay-offwhite);
}

.bibay-catalog-empty__title {
	margin: 0 0 12px;
	color: var(--bibay-ink);
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 500;
	line-height: 1.15;
}

.bibay-catalog-empty__message {
	max-width: 520px;
	margin: 0;
	color: var(--bibay-muted);
	font-size: 14px;
	line-height: 1.6;
}

.bibay-catalog-empty__cta {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: 24px;
	border-bottom: 1px solid currentColor;
	color: var(--bibay-ink);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.bibay-catalog-empty__cta:hover {
	color: var(--bibay-gold);
}

.bibay-catalog-empty__cta:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 4px;
}

@media (max-width: 1199px) {
	body.tax-product_cat .bibay-category-archive__inner.brxe-container,
	body.woocommerce-shop .bibay-category-archive__inner.brxe-container {
		width: min(100% - (var(--bibay-gutter-tablet) * 2), var(--bibay-container-editorial));
	}
}

@media (max-width: 767px) {
	body.tax-product_cat .bibay-category-archive__inner.brxe-container,
	body.woocommerce-shop .bibay-category-archive__inner.brxe-container {
		width: min(100% - 40px, var(--bibay-container-editorial));
	}

	.bibay-category-archive__breadcrumbs {
		margin-bottom: 28px;
		font-size: 11px;
	}

	.bibay-category-archive__title {
		margin-bottom: 12px !important;
		font-size: 30px !important;
	}

	.bibay-category-archive__description {
		margin-bottom: 32px !important;
		font-size: 13px !important;
	}

	.bibay-catalog-toolbar {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 10px;
		padding-bottom: 16px;
	}

	.bibay-catalog-toolbar__count {
		grid-column: 1 / -1;
		width: 100%;
	}

	.bibay-catalog-toolbar__filter {
		grid-column: 1;
		grid-row: 2;
		width: 100%;
		min-width: 0;
	}

	.bibay-catalog-toolbar__sort {
		grid-column: 2;
		grid-row: 2;
		width: 100%;
		min-width: 0;
	}

	.bibay-catalog-toolbar__sort .woocommerce-ordering,
	.bibay-catalog-toolbar__sort .orderby {
		width: 100%;
		min-width: 0 !important;
		max-width: none !important;
	}

	.bibay-product-grid {
		margin-top: 20px !important;
	}

	.bibay-catalog-empty {
		min-height: 260px;
		padding: 44px 24px;
	}
}

/* WooCommerce single product */
body.single-product #main {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
	column-gap: clamp(48px, 6vw, 96px);
	row-gap: clamp(64px, 8vw, 112px);
	width: min(100% - (var(--bibay-gutter-desktop) * 2), var(--bibay-container-editorial));
	margin-inline: auto;
	padding-block: clamp(32px, 4vw, 56px) clamp(80px, 9vw, 132px);
}

body.single-product .woocommerce-breadcrumb {
	grid-column: 1 / -1;
	margin: 0 0 clamp(-36px, -2vw, -20px);
	color: var(--bibay-muted);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
}

body.single-product .woocommerce-breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: color var(--bibay-transition-fast);
}

body.single-product .woocommerce-breadcrumb a:hover,
body.single-product .woocommerce-breadcrumb a:focus-visible {
	color: var(--bibay-gold);
}

body.single-product div.product {
	display: block;
	grid-column: 1 / -1;
	min-width: 0;
}

body.single-product .bibay-product-main {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
	column-gap: clamp(48px, 6vw, 96px);
	align-items: start;
	min-width: 0;
}

body.single-product div.product::before,
body.single-product div.product::after {
	display: none;
}

body.single-product div.product .woocommerce-product-gallery {
	position: relative;
	width: 100% !important;
	min-width: 0;
	margin: 0 !important;
	float: none !important;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
	width: 100%;
}

body.single-product .woocommerce-product-gallery__image:first-child {
	position: relative;
}

body.single-product .bibay-variation-gallery-preview {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	background: var(--bibay-offwhite);
	pointer-events: none;
}

body.single-product .bibay-variation-gallery-preview > a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: var(--bibay-offwhite);
}

body.single-product .bibay-variation-gallery-preview img {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: contain;
	background: var(--bibay-offwhite);
}

body.single-product .woocommerce-product-gallery__image a {
	display: block;
	background: var(--bibay-offwhite);
}

body.single-product .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: contain;
	background: var(--bibay-offwhite);
}

body.single-product .woocommerce-product-gallery__trigger {
	z-index: 3;
	top: 16px !important;
	right: 16px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(41, 41, 41, 0.1);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.92);
	color: var(--bibay-ink);
	text-decoration: none;
}

body.single-product .woocommerce-product-gallery__trigger img {
	width: 18px;
	height: 18px;
}

body.single-product .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 88px));
	gap: 10px;
	margin: 12px 0 0 !important;
	padding: 0;
	list-style: none;
}

body.single-product .flex-control-thumbs li {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

body.single-product .flex-control-thumbs img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border: 1px solid transparent;
	background: var(--bibay-offwhite);
	opacity: 0.64;
	cursor: pointer;
	transition: border-color var(--bibay-transition-fast), opacity var(--bibay-transition-fast);
}

body.single-product .flex-control-thumbs img.flex-active,
body.single-product .flex-control-thumbs img:hover {
	border-color: var(--bibay-ink);
	opacity: 1;
}

body.single-product div.product .summary {
	position: sticky;
	top: calc(var(--bibay-header-height-desktop) + 32px);
	display: flex;
	flex-direction: column;
	align-self: start;
	width: 100% !important;
	min-width: 0;
	margin: 0 !important;
	padding-top: clamp(8px, 1.5vw, 24px);
	float: none !important;
}

body.single-product div.product .summary .product_meta {
	order: -1;
	margin: 0 0 16px;
	padding: 0;
	border: 0;
	color: var(--bibay-muted);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	text-transform: uppercase;
}

body.single-product div.product .summary .product_meta > span:not(.posted_in) {
	display: none;
}

body.single-product div.product .summary .product_meta a {
	color: inherit;
	text-decoration: none;
}

body.single-product div.product .summary .product_meta a:hover,
body.single-product div.product .summary .product_meta a:focus-visible {
	color: var(--bibay-gold);
}

body.single-product div.product .product_title {
	margin: 0 0 18px;
	color: var(--bibay-ink);
	font-size: clamp(34px, 3.2vw, 50px);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: 0;
}

body.single-product div.product .summary > .price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px 12px;
	margin: 0 0 32px;
	color: var(--bibay-ink);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

body.single-product div.product .summary > .price del,
body.single-product div.product .single_variation .price del {
	color: var(--bibay-muted);
	font-size: 13px;
	opacity: 1;
}

body.single-product div.product .summary > .price ins,
body.single-product div.product .single_variation .price ins {
	color: var(--bibay-ink);
	font-weight: 600;
	text-decoration: none;
}

body.single-product div.product form.cart {
	display: flex;
	align-items: stretch;
	gap: 12px;
	width: 100%;
	margin: 0;
	padding: 0;
}

body.single-product div.product form.cart.variations_form {
	display: block;
}

body.single-product div.product form.cart .quantity {
	display: grid;
	grid-template-columns: 44px 48px 44px;
	width: 136px;
	min-width: 136px;
	height: 52px;
	margin: 0;
	border: 1px solid var(--bibay-line);
}

body.single-product div.product form.cart .quantity .qty {
	grid-column: 2;
	grid-row: 1;
	width: 48px;
	height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--bibay-ink);
	font: 500 13px/1 var(--font-primary);
	text-align: center;
	appearance: textfield;
}

body.single-product div.product form.cart .quantity .action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 50px;
	color: var(--bibay-ink);
	cursor: pointer;
}

body.single-product div.product form.cart .quantity .minus {
	grid-column: 1;
	grid-row: 1;
}

body.single-product div.product form.cart .quantity .plus {
	grid-column: 3;
	grid-row: 1;
}

body.single-product div.product form.cart .quantity .action svg {
	width: 16px;
	height: 16px;
	stroke-width: 1.5;
}

body.single-product div.product .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 0;
	min-height: 52px;
	margin: 0;
	padding: 0 24px;
	border: 1px solid var(--bibay-ink);
	border-radius: 0;
	background: var(--bibay-ink);
	color: var(--bibay-white);
	font: 600 12px/1 var(--font-primary);
	text-transform: uppercase;
	transition: background-color var(--bibay-transition-base), border-color var(--bibay-transition-base);
}

body.single-product div.product .single_add_to_cart_button:hover,
body.single-product div.product .single_add_to_cart_button:focus-visible {
	border-color: #1f1f1f;
	background: #1f1f1f;
	color: var(--bibay-white);
}

body.single-product div.product .variations {
	width: 100%;
	margin: 0 0 20px;
	border: 0;
}

body.single-product div.product .variations tr,
body.single-product div.product .variations th,
body.single-product div.product .variations td {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
}

body.single-product div.product .variations th {
	margin-bottom: 8px;
	color: var(--bibay-ink);
	font-size: 12px;
	font-weight: 600;
}

body.single-product div.product .variations tr + tr th {
	margin-top: 18px;
}

body.single-product div.product .variations select {
	width: 100%;
	min-height: 48px;
	padding: 0 42px 0 14px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background-color: var(--bibay-white);
	color: var(--bibay-ink);
	font: 400 14px/1 var(--font-primary);
}

body.single-product div.product .variations select.bibay-variation-select--enhanced {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}

body.single-product .bibay-variation-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

body.single-product .bibay-variation-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background: var(--bibay-white);
	color: var(--bibay-ink);
	font: 500 13px/1.2 var(--font-primary);
	text-align: center;
	cursor: pointer;
	overflow-wrap: anywhere;
	transition: border-color var(--bibay-transition-fast), background-color var(--bibay-transition-fast), color var(--bibay-transition-fast), opacity var(--bibay-transition-fast);
}

body.single-product .bibay-variation-swatch:hover:not(:disabled) {
	border-color: var(--bibay-ink);
}

body.single-product .bibay-variation-swatch:focus-visible {
	outline: 2px solid var(--bibay-gold);
	outline-offset: 3px;
}

body.single-product .bibay-variation-swatch.is-selected {
	border-color: var(--bibay-ink);
	background: var(--bibay-ink);
	color: var(--bibay-white);
}

body.single-product .bibay-variation-swatch.is-disabled,
body.single-product .bibay-variation-swatch:disabled {
	border-color: var(--bibay-line);
	background: #f7f7f5;
	color: var(--bibay-muted);
	opacity: 0.48;
	cursor: not-allowed;
	text-decoration: line-through;
}

body.single-product .bibay-variation-swatch--color.has-image {
	width: 52px;
	height: 52px;
	padding: 3px;
	overflow: hidden;
}

body.single-product .bibay-variation-swatch--color.has-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.single-product .bibay-variation-swatch--color.has-image.is-selected {
	border-color: var(--bibay-ink);
	background: var(--bibay-white);
	box-shadow: inset 0 0 0 1px var(--bibay-white), inset 0 0 0 2px var(--bibay-ink);
}

body.single-product .bibay-variation-swatch--color.has-image.is-disabled,
body.single-product .bibay-variation-swatch--color.has-image:disabled {
	text-decoration: none;
}

body.single-product div.product .reset_variations {
	display: inline-block;
	margin-top: 8px;
	color: var(--bibay-muted);
	font-size: 11px;
}

body.single-product div.product .single_variation_wrap {
	width: 100%;
}

body.single-product div.product .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: stretch;
	gap: 12px;
}

body.single-product .stock {
	margin: 0 0 16px;
	color: var(--bibay-muted);
	font-size: 12px;
}

body.single-product .bibay-product-support {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-top: 24px;
	border-block: 1px solid var(--bibay-line);
}

body.single-product .bibay-product-support a {
	display: inline-flex;
	align-items: center;
	min-height: 52px;
	color: var(--bibay-ink);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	transition: color var(--bibay-transition-fast);
}

body.single-product .bibay-product-support a + a {
	justify-content: flex-end;
	border-left: 1px solid var(--bibay-line);
}

body.single-product .bibay-product-support a:hover,
body.single-product .bibay-product-support a:focus-visible {
	color: var(--bibay-gold);
}

body.single-product .woocommerce-tabs,
body.single-product .related.products {
	clear: both;
	width: 100%;
}

body.single-product .woocommerce-tabs,
body.single-product .related.products {
	margin-top: clamp(72px, 8vw, 120px);
}

body.single-product .woocommerce-tabs {
	display: grid;
	grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 96px);
	padding-block: clamp(48px, 6vw, 80px);
	border-block: 1px solid var(--bibay-line);
}

body.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

body.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--bibay-line);
	border-radius: 0;
	background: transparent;
}

body.single-product .woocommerce-tabs ul.tabs li a {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0;
	color: var(--bibay-muted);
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
}

body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover,
body.single-product .woocommerce-tabs ul.tabs li a:focus-visible {
	color: var(--bibay-ink);
}

body.single-product .woocommerce-Tabs-panel {
	margin: 0;
	padding: 0 !important;
	color: var(--bibay-muted);
	font-size: 14px;
	line-height: 1.75;
}

body.single-product .woocommerce-Tabs-panel > h2:first-child {
	margin: 0 0 20px;
	color: var(--bibay-ink);
	font-size: 24px;
	font-weight: 500;
}

body.single-product .woocommerce-Tabs-panel p:first-child {
	margin-top: 0;
}

body.single-product .related.products > h2 {
	margin: 0 0 32px;
	color: var(--bibay-ink);
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 500;
	line-height: 1.1;
}

body.single-product .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px 24px;
	margin: 0 !important;
	padding: 0;
}

body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after {
	display: none;
}

body.single-product .related.products li.product {
	display: flex;
	flex-direction: column;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0;
	float: none !important;
	text-align: left;
}

body.single-product .related.products li.product img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 14px !important;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	background: var(--bibay-offwhite);
}

body.single-product .related.products .woocommerce-loop-product__title {
	margin: 0 0 5px;
	padding: 0;
	color: var(--bibay-ink);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

body.single-product .related.products .price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 8px;
	margin: 0;
	color: var(--bibay-ink);
	font-size: 13px;
	line-height: 1.4;
}

body.single-product .related.products li.product > .button {
	display: none;
}

body.single-product .woocommerce-message,
body.single-product .woocommerce-error,
body.single-product .woocommerce-info {
	grid-column: 1 / -1;
	margin: 0 0 24px;
	padding: 16px 20px;
	border: 1px solid var(--bibay-line);
	border-top: 2px solid var(--bibay-gold);
	border-radius: 0;
	background: var(--bibay-surface);
	color: var(--bibay-ink);
	font-size: 13px;
}

body.single-product :is(a, button, input, select, textarea):focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 3px;
}

@media (max-width: 1023px) {
	body.single-product #main {
		width: min(100% - (var(--bibay-gutter-tablet) * 2), var(--bibay-container-editorial));
	}

	body.single-product #main,
	body.single-product .bibay-product-main {
		grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
		column-gap: 36px;
	}

	body.single-product div.product .summary {
		position: static;
	}

	body.single-product .related.products ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 40px 18px;
	}
}

@media (max-width: 767px) {
	body.single-product #main {
		display: block;
		width: min(100% - (var(--bibay-gutter-mobile) * 2), var(--bibay-container-editorial));
		padding-block: 24px 80px;
	}

	body.single-product .woocommerce-breadcrumb {
		margin: 0 0 20px;
		font-size: 10px;
	}

	body.single-product .bibay-product-main {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	body.single-product div.product .woocommerce-product-gallery {
		margin-inline: calc(var(--bibay-gutter-mobile) * -1) !important;
		width: calc(100% + (var(--bibay-gutter-mobile) * 2)) !important;
	}

	body.single-product .flex-control-thumbs {
		padding-inline: var(--bibay-gutter-mobile);
	}

	body.single-product div.product .summary {
		padding-top: 28px;
	}

	body.single-product div.product .summary .product_meta {
		margin-bottom: 12px;
	}

	body.single-product div.product .product_title {
		margin-bottom: 12px;
		font-size: clamp(30px, 9vw, 38px);
	}

	body.single-product div.product .summary > .price {
		margin-bottom: 24px;
		font-size: 15px;
	}

	body.single-product div.product form.cart,
	body.single-product div.product .woocommerce-variation-add-to-cart {
		flex-wrap: wrap;
	}

	body.single-product div.product form.cart .quantity {
		width: 132px;
		min-width: 132px;
		grid-template-columns: 42px 48px 42px;
	}

	body.single-product div.product .single_add_to_cart_button {
		min-width: calc(100% - 144px);
		padding-inline: 14px;
	}

	body.single-product .bibay-product-support {
		margin-top: 24px;
	}

	body.single-product .bibay-product-support a {
		font-size: 11px;
	}

	body.single-product .woocommerce-tabs {
		display: block;
		margin-top: 56px;
		padding-block: 0 48px;
		border-top: 1px solid var(--bibay-line);
	}

	body.single-product .woocommerce-tabs ul.tabs {
		flex-direction: row;
		overflow-x: auto;
		margin-bottom: 28px;
		border-bottom: 1px solid var(--bibay-line);
		scrollbar-width: none;
	}

	body.single-product .woocommerce-tabs ul.tabs li {
		flex: 0 0 auto;
		border-bottom: 0;
	}

	body.single-product .woocommerce-tabs ul.tabs li + li {
		margin-left: 24px;
	}

	body.single-product .woocommerce-tabs ul.tabs li a {
		min-height: 52px;
		white-space: nowrap;
	}

	body.single-product .woocommerce-Tabs-panel {
		font-size: 13px;
	}

	body.single-product .related.products {
		margin-top: 56px;
	}

	body.single-product .related.products > h2 {
		margin-bottom: 24px;
		font-size: 24px;
	}

	body.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 12px;
	}

	body.single-product .related.products li.product img {
		margin-bottom: 12px !important;
	}

	body.single-product .related.products .woocommerce-loop-product__title {
		font-size: 13px;
	}

	body.single-product .related.products .price {
		font-size: 12px;
	}
}

@media (max-width: 374px) {
	body.single-product div.product form.cart .quantity,
	body.single-product div.product .single_add_to_cart_button {
		width: 100%;
		min-width: 100%;
	}
}

/* Keep the mobile purchase decision close to the product gallery. */
@media (max-width: 767px) {
	body.single-product div.product .summary {
		padding-top: 20px;
	}

	body.single-product div.product .summary > .product_meta {
		display: none !important;
	}

	body.single-product div.product .summary > .product_title {
		order: 0;
	}

	body.single-product div.product .summary > .price {
		order: 1;
		margin-bottom: 16px;
	}

	body.single-product div.product .summary > .stock {
		order: 2;
	}

	body.single-product div.product .summary > form.cart {
		order: 3;
	}

	body.single-product div.product .summary > .woocommerce-product-details__short-description {
		order: 4;
		margin: 24px 0 0;
		padding-top: 24px;
		border-top: 1px solid var(--bibay-line);
	}

	body.single-product div.product .summary > .bibay-product-support {
		order: 5;
	}

	body.single-product div.product .summary > .bibay-product-accordions {
		order: 6;
	}
}

.bibay-header-search .bricks-search-overlay {
	color: var(--bibay-ink);
}

.bibay-header-search .bricks-search-overlay input[type="search"] {
	border: 0;
	border-bottom: 1px solid var(--bibay-line);
	border-radius: 0;
	font-family: var(--font-primary);
}

@media (max-width: 1023px) {
	.bibay-header-search .bricks-search-inner {
		box-sizing: border-box;
		width: 100% !important;
		max-width: 100% !important;
	}

	.bibay-header-search .bricks-search-overlay {
		inset: 0 !important;
		width: auto !important;
		max-width: none !important;
		transform: none !important;
	}
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 2px;
}

@media (min-width: 768px) {
	.bibay-container,
	.bibay-container--reading {
		width: min(100% - (var(--bibay-gutter-tablet) * 2), var(--bibay-container-reading));
	}

	.bibay-section {
		padding-block: var(--bibay-space-3xl);
	}

	.bibay-header-global__bar.brxe-container {
		padding-inline: 32px;
	}

	.bibay-header-drawer .brx-offcanvas-inner.bibay-header-drawer__inner {
		width: 440px;
		max-width: min(440px, 100vw);
		padding: 0 24px 32px;
	}
}

@media (min-width: 1024px) {
	.bibay-container {
		width: min(100% - (var(--bibay-gutter-desktop) * 2), var(--bibay-container-editorial));
	}

	.bibay-container--reading {
		width: min(100% - (var(--bibay-gutter-desktop) * 2), var(--bibay-container-reading));
	}
}

/* Global footer. */
.bibay-footer.brxe-section {
	padding: 0 0 28px;
	background: #292929;
	color: #f8f7f4;
}

.bibay-footer__inner.brxe-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: min(100% - 40px, var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

.bibay-footer-trust.brxe-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
	border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.bibay-footer-trust__item.brxe-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	min-height: 112px;
	padding-block: 24px;
	border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.bibay-footer-trust__item:last-child {
	border-bottom: 0;
}

.bibay-footer-trust__title,
.bibay-footer-trust__text,
.bibay-footer__brand-name,
.bibay-footer__brand-text,
.bibay-footer__heading,
.bibay-footer__newsletter-title,
.bibay-footer__newsletter-text,
.bibay-footer__copyright,
.bibay-footer-newsletter__status,
.bibay-footer__pending {
	margin: 0;
	letter-spacing: 0;
}

.bibay-footer-trust__title {
	color: #f8f7f4;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.bibay-footer-trust__text {
	max-width: 320px;
	margin-top: 7px;
	color: #c9c6c0;
	font-size: 12px;
	line-height: 1.5;
}

.bibay-footer-newsletter-block.brxe-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 26px;
	width: 100%;
	padding-block: 56px 52px;
}

.bibay-footer-newsletter-block__copy.brxe-block,
.bibay-footer__newsletter.brxe-block,
.bibay-footer__column.brxe-block,
.bibay-footer__links.brxe-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.bibay-footer__newsletter-title {
	max-width: 540px;
	color: #f8f7f4;
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 500;
	line-height: 1.12;
}

.bibay-footer__newsletter-text {
	max-width: 480px;
	margin-top: 13px;
	color: #c9c6c0;
	font-size: 14px;
	line-height: 1.6;
}

.bibay-footer-newsletter.brxe-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
	width: 100%;
	max-width: 520px;
}

.bibay-footer-newsletter .form-group,
.bibay-footer-newsletter .submit-button-wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

.bibay-footer-newsletter input[type="email"] {
	width: 100%;
	height: 50px;
	padding: 0 15px;
	border: 1px solid rgb(255 255 255 / 42%);
	border-radius: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 14px;
}

.bibay-footer-newsletter input[type="email"]::placeholder {
	color: #c9c6c0;
	opacity: 1;
}

.bibay-footer-newsletter input[type="email"]:focus-visible {
	border-color: #d2b36f;
	outline: 2px solid #d2b36f;
	outline-offset: 2px;
}

.bibay-footer-newsletter button[type="submit"].bricks-button {
	width: 100%;
	min-height: 50px;
	padding: 0 18px;
	border: 1px solid #f8f7f4;
	border-radius: 0;
	background: #f8f7f4;
	color: #292929;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: color var(--bibay-transition-base), background-color var(--bibay-transition-base), border-color var(--bibay-transition-base);
}

.bibay-footer-newsletter button[type="submit"].bricks-button:hover,
.bibay-footer-newsletter button[type="submit"].bricks-button:focus-visible {
	border-color: #d2b36f;
	background: #d2b36f;
	color: #292929;
}

.bibay-footer-newsletter button[type="submit"].bricks-button:focus-visible,
.bibay-footer__link:focus-visible,
.bibay-footer__social-link:focus-visible {
	outline: 2px solid #d2b36f;
	outline-offset: 3px;
}

.bibay-footer-newsletter__status {
	margin-top: 10px;
	color: #aaa7a2;
	font-size: 11px;
	line-height: 1.45;
}

/* Phase 12A: keep the editorial newsletter copy without a non-functional form. */
.bibay-footer-newsletter-block.brxe-block {
	grid-template-columns: minmax(0, 1fr) !important;
}

.bibay-footer__newsletter.brxe-block,
.bibay-footer-newsletter.brxe-form {
	display: none !important;
}

.bibay-footer__divider.brxe-div {
	width: 100%;
	border-top: 1px solid rgb(255 255 255 / 14%);
}

.bibay-footer__grid.brxe-block {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 44px 28px;
	width: 100%;
	padding-block: 52px;
}

.bibay-footer__brand-name {
	color: #f8f7f4;
	font-size: 30px;
	font-weight: 650;
	line-height: 1;
}

.bibay-footer__brand-text {
	max-width: 260px;
	margin-top: 15px;
	color: #c9c6c0;
	font-size: 13px;
	line-height: 1.65;
}

.bibay-footer__heading {
	color: #f8f7f4;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.bibay-footer__links {
	margin-top: 13px;
}

.bibay-footer__link,
.bibay-footer__social-link,
.bibay-footer__pending {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	text-decoration: none;
}

.bibay-footer__link,
.bibay-footer__social-link {
	color: #d8d5cf;
	transition: color var(--bibay-transition-base);
}

.bibay-footer__social-link {
	margin-top: 14px;
	text-decoration: underline;
	text-decoration-color: rgb(255 255 255 / 34%);
	text-underline-offset: 5px;
}

.bibay-footer__link:hover,
.bibay-footer__link:focus-visible,
.bibay-footer__social-link:hover,
.bibay-footer__social-link:focus-visible {
	color: #d2b36f;
}

.bibay-footer__pending {
	min-height: 32px;
	color: #8f8c87;
	cursor: default;
}

.bibay-footer__bottom.brxe-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
	padding-top: 22px;
}

.bibay-footer__copyright {
	color: #aaa7a2;
	font-size: 11px;
	line-height: 1.4;
}

.bibay-footer__legal.brxe-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 18px;
	width: 100%;
}

.bibay-footer__legal-pending {
	font-size: 10px;
}

@media (min-width: 480px) {
	.bibay-footer-newsletter.brxe-form {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.bibay-footer-newsletter .submit-button-wrapper,
	.bibay-footer-newsletter button[type="submit"].bricks-button {
		width: auto;
	}

	.bibay-footer-newsletter button[type="submit"].bricks-button {
		min-width: 158px;
	}
}

@media (min-width: 768px) {
	.bibay-footer__inner.brxe-container {
		width: min(100% - 64px, var(--bibay-container-editorial));
	}

	.bibay-footer-trust.brxe-block {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bibay-footer-trust__item.brxe-block {
		min-height: 128px;
		padding: 30px 28px;
		border-right: 1px solid rgb(255 255 255 / 14%);
		border-bottom: 0;
	}

	.bibay-footer-trust__item:first-child {
		padding-left: 0;
	}

	.bibay-footer-trust__item:last-child {
		border-right: 0;
	}

	.bibay-footer-newsletter-block.brxe-block {
		grid-template-columns: minmax(0, 1fr);
		align-items: center;
		gap: 56px;
		padding-block: 72px 66px;
	}

	.bibay-footer__newsletter.brxe-block {
		align-items: flex-end;
	}

	.bibay-footer__grid.brxe-block {
		gap: 52px 48px;
		padding-block: 64px;
	}

	.bibay-footer__bottom.brxe-block {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.bibay-footer__legal.brxe-block {
		justify-content: flex-end;
		width: auto;
	}
}

@media (min-width: 1024px) {
	.bibay-footer__inner.brxe-container {
		width: min(100% - 80px, var(--bibay-container-editorial));
	}

	.bibay-footer__grid.brxe-block {
		grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.8fr));
		gap: clamp(36px, 4vw, 72px);
	}
}

@media (min-width: 1200px) {
	body.bibay-has-global-header {
		padding-top: var(--bibay-header-height-desktop);
	}

	body.bibay-has-global-header.bibay-header-overlay-active {
		padding-top: 0;
	}

	.bibay-header-bar {
		grid-template-columns: 1fr auto 1fr;
		min-height: var(--bibay-header-height-desktop);
		column-gap: 24px;
	}

	.bibay-header-nav {
		display: inline-flex;
	}

	.bibay-header-global__bar.brxe-container {
		width: 100%;
		max-width: var(--bibay-container-editorial);
		padding-inline: 40px;
	}

	.bibay-header-global__mobile-left {
		display: none;
	}

	.bibay-header-global__nav {
		display: inline-flex;
		justify-content: flex-start;
		gap: 24px;
		white-space: nowrap;
	}

	.bibay-header-global__brand {
		font-size: 25px;
	}

	.bibay-header-global__right {
		gap: 4px;
	}

	.bibay-header-search--desktop,
	.bibay-header-account {
		display: inline-flex !important;
	}

	.bibay-header-drawer {
		display: none !important;
	}
}

/* Home phase 02A: editorial hero and category entry points. */
.bibay-home-hero.brxe-section {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: 84vh;
	min-height: 84svh;
	padding: 0;
	background: #d8d4ce;
	color: var(--bibay-white);
	overflow: hidden;
}

.bibay-home-hero__image.brxe-image,
.bibay-home-hero__image.brxe-image picture,
.bibay-home-hero__image.brxe-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
}

.bibay-home-hero__image.brxe-image {
	z-index: -3;
}

.bibay-home-hero__image.brxe-image img {
	object-fit: cover;
	object-position: 52% center;
}

.bibay-home-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	background: linear-gradient(64deg, rgba(22, 22, 22, 0.38) 0%, rgba(22, 22, 22, 0.2) 42%, rgba(22, 22, 22, 0.05) 76%, rgba(22, 22, 22, 0) 100%);
	pointer-events: none;
}

.bibay-home-hero__content.brxe-container {
	position: absolute;
	inset-inline: 0;
	bottom: 48px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(100% - 40px, var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
	padding: 0;
}

.bibay-home-hero__eyebrow,
.bibay-home-hero__title {
	margin: 0;
	color: inherit;
	letter-spacing: 0;
}

.bibay-home-hero__eyebrow {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 14px;
}

.bibay-home-hero__title {
	max-width: 350px;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.04;
}

.bibay-home-hero__cta {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: 28px;
	padding: 0 0 3px;
	border-bottom: 1px solid currentColor;
	color: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-decoration: none;
	transition: color var(--bibay-transition-base), border-color var(--bibay-transition-base), opacity var(--bibay-transition-base);
}

.bibay-home-hero__cta:hover,
.bibay-home-hero__cta:focus-visible {
	border-color: var(--bibay-gold);
	color: var(--bibay-gold);
}

.bibay-home-categories.brxe-section {
	padding: 72px 0 80px;
	background: var(--bibay-white);
}

.bibay-home-categories__inner.brxe-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: min(100% - 40px, var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

.bibay-home-categories__title {
	margin: 0 0 28px;
	color: var(--bibay-ink);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.bibay-category-grid.brxe-block {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 12px;
	width: 100%;
}

.bibay-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bibay-category-card:nth-child(5) {
	grid-column: 1 / -1;
}

.bibay-category-card__image.brxe-image,
.bibay-category-card__image.brxe-image picture {
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--bibay-offwhite);
}

.bibay-category-card__image.brxe-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--bibay-transition-slow);
}

.bibay-category-card:nth-child(5) .bibay-category-card__image.brxe-image,
.bibay-category-card:nth-child(5) .bibay-category-card__image.brxe-image picture {
	aspect-ratio: 16 / 10;
}

.bibay-category-card__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 44px;
	margin-top: 8px;
	color: var(--bibay-ink);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-decoration: none;
}

.bibay-category-card__link::after {
	position: absolute;
	inset: 0;
	content: "";
}

.bibay-category-card:hover .bibay-category-card__image img,
.bibay-category-card:focus-within .bibay-category-card__image img {
	transform: scale(1.025);
}

.bibay-category-card__link:hover,
.bibay-category-card__link:focus-visible {
	color: var(--bibay-gold);
}

@media (min-width: 768px) {
	.bibay-home-hero.brxe-section {
		min-height: 90vh;
		min-height: 90svh;
	}

	.bibay-home-hero__content.brxe-container,
	.bibay-home-categories__inner.brxe-container {
		width: min(100% - 64px, var(--bibay-container-editorial));
	}

	.bibay-home-hero__content.brxe-container {
		bottom: clamp(56px, 8vh, 110px);
	}

	.bibay-home-hero__title {
		max-width: 620px;
		font-size: 52px;
	}

	.bibay-home-categories.brxe-section {
		padding-block: 96px;
	}

	.bibay-home-categories__title {
		margin-bottom: 36px;
		font-size: 20px;
	}

	.bibay-category-grid.brxe-block {
		gap: 36px 20px;
	}

	.bibay-category-card:nth-child(5) .bibay-category-card__image.brxe-image,
	.bibay-category-card:nth-child(5) .bibay-category-card__image.brxe-image picture {
		aspect-ratio: 16 / 10;
	}

	.bibay-category-card__link {
		font-size: 14px;
	}
}

@media (min-width: 1024px) {
	.bibay-home-hero.brxe-section {
		min-height: 92vh;
		min-height: 92svh;
	}

	.bibay-home-hero__content.brxe-container,
	.bibay-home-categories__inner.brxe-container {
		width: min(100% - 80px, var(--bibay-container-editorial));
	}

	.bibay-home-hero__content.brxe-container {
		bottom: clamp(56px, 8vh, 110px);
	}

	.bibay-home-hero__title {
		max-width: 680px;
		font-size: 56px;
	}

	.bibay-home-categories.brxe-section {
		padding-block: 112px;
	}

	.bibay-category-grid.brxe-block {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 44px 24px;
	}

	.bibay-category-card:nth-child(1) {
		grid-column: 1 / span 4;
	}

	.bibay-category-card:nth-child(2) {
		grid-column: 5 / span 4;
	}

	.bibay-category-card:nth-child(3) {
		grid-column: 9 / span 4;
	}

	.bibay-category-card:nth-child(4) {
		grid-column: 2 / span 5;
	}

	.bibay-category-card:nth-child(5) {
		grid-column: 7 / span 5;
	}

	.bibay-category-card:nth-child(5) .bibay-category-card__image.brxe-image,
	.bibay-category-card:nth-child(5) .bibay-category-card__image.brxe-image picture {
		aspect-ratio: 4 / 5;
	}
}

@media (min-width: 1440px) {
	.bibay-home-hero__title {
		font-size: 60px;
	}
}

/* Home phase 02B: product discovery and natural stones editorial block. */
.bibay-products-section.brxe-section {
	padding: 72px 0 80px;
	background: var(--bibay-white);
}

.bibay-products-section--bestsellers.brxe-section {
	background: var(--bibay-offwhite);
}

.bibay-products-section__inner.brxe-container,
.bibay-stones__inner.brxe-container {
	width: min(100% - 40px, var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

.bibay-products-section__inner.brxe-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.bibay-products-section__header.brxe-block {
	display: flex;
	flex-flow: row wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 16px;
	width: 100%;
	max-width: none;
	margin-bottom: 28px;
	margin-inline: 0;
	padding-inline: 0;
	text-align: left;
}

.bibay-products-section__title,
.bibay-stones__eyebrow,
.bibay-stones__title,
.bibay-stones__text,
.bibay-product-card__meta,
.bibay-product-card__price {
	margin: 0;
	letter-spacing: 0;
}

.bibay-products-section__title {
	flex: 0 1 auto;
	width: auto;
	min-width: 0;
	margin: 0;
	margin-inline: 0;
	color: var(--bibay-ink);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
}

.bibay-products-section__cta,
.bibay-stones__cta {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding-top: 2px;
	border-bottom: 1px solid currentColor;
	color: var(--bibay-ink);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--bibay-transition-base), border-color var(--bibay-transition-base);
}

.bibay-products-section__cta {
	flex: 0 0 auto;
	width: auto;
	margin: 0 0 0 auto;
	font-weight: 500;
	align-self: baseline;
}

.bibay-products-section__cta:hover,
.bibay-products-section__cta:focus-visible,
.bibay-stones__cta:hover,
.bibay-stones__cta:focus-visible {
	border-color: var(--bibay-gold);
	color: var(--bibay-gold);
}

.bibay-product-grid.brxe-block {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 12px;
	width: 100%;
}

.bibay-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bibay-product-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #f3f1ed;
}

.bibay-product-card__image.brxe-image,
.bibay-product-card__image.brxe-image picture,
.bibay-product-card__image.brxe-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
}

.bibay-product-card__image.brxe-image img {
	object-fit: cover;
	object-position: center;
	transition: transform var(--bibay-transition-slow);
}

.bibay-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	padding: 5px 7px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--bibay-ink);
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}

.bibay-product-card__wishlist {
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--bibay-ink);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

.bibay-product-card__wishlist:hover,
.bibay-product-card__wishlist:focus-visible {
	color: var(--bibay-gold);
}

.bibay-product-card__title {
	display: inline-flex;
	align-self: flex-start;
	margin-top: 14px;
	color: var(--bibay-ink);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
}

.bibay-product-card__title:hover,
.bibay-product-card__title:focus-visible {
	color: var(--bibay-gold);
}

.bibay-product-card__meta {
	margin-top: 4px;
	color: var(--bibay-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

.bibay-product-card__price {
	margin-top: 8px;
	color: var(--bibay-ink);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
}

.bibay-product-card__price .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 3px 8px;
	margin: 0;
	color: inherit;
	font: inherit;
}

.bibay-product-card__price ins {
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.bibay-product-card__price del {
	color: var(--bibay-muted);
	font-weight: 400;
	opacity: 1;
}

.bibay-product-card__price .woocommerce-Price-amount {
	white-space: nowrap;
}

.bibay-product-card:hover .bibay-product-card__image img,
.bibay-product-card:focus-within .bibay-product-card__image img {
	transform: scale(1.025);
}

.bibay-stones.brxe-section {
	padding: 80px 0;
	background: var(--bibay-white);
}

.bibay-stones__inner.brxe-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	gap: 32px;
}

.bibay-stones__media.brxe-image,
.bibay-stones__media.brxe-image picture {
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #f3f1ed;
}

.bibay-stones__media.brxe-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bibay-stones__content.brxe-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}

.bibay-stones__eyebrow {
	margin-bottom: 14px;
	color: var(--bibay-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.bibay-stones__title {
	max-width: 520px;
	color: var(--bibay-ink);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.08;
}

.bibay-stones__text {
	max-width: 520px;
	margin-top: 20px;
	color: var(--bibay-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
}

.bibay-stones__cta {
	margin-top: 24px;
}

@media (min-width: 768px) {
	.bibay-products-section.brxe-section,
	.bibay-stones.brxe-section {
		padding-block: 96px;
	}

	.bibay-products-section__inner.brxe-container,
	.bibay-stones__inner.brxe-container {
		width: min(100% - 64px, var(--bibay-container-editorial));
	}

	.bibay-products-section__header.brxe-block {
		margin-bottom: 32px;
	}

	.bibay-products-section__title {
		font-size: 20px;
	}

	.bibay-products-section__cta {
		font-size: 13px;
	}

	.bibay-product-grid.brxe-block {
		gap: 40px 20px;
	}

	.bibay-product-card__title {
		font-size: 14px;
	}

	.bibay-stones__inner.brxe-container {
		grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
		gap: clamp(48px, 7vw, 104px);
	}

	.bibay-stones__media.brxe-image,
	.bibay-stones__media.brxe-image picture {
		aspect-ratio: 5 / 4;
	}

	.bibay-stones__title {
		font-size: 40px;
	}
}

@media (min-width: 1024px) {
	.bibay-products-section.brxe-section,
	.bibay-stones.brxe-section {
		padding-block: 112px;
	}

	.bibay-products-section__inner.brxe-container,
	.bibay-stones__inner.brxe-container {
		width: min(100% - 80px, var(--bibay-container-editorial));
	}

	.bibay-product-grid.brxe-block {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}

	.bibay-products-section__title {
		font-size: 22px;
	}

	.bibay-stones__title {
		font-size: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bibay-category-card__image.brxe-image img,
	.bibay-product-card__image.brxe-image img {
		transition: none;
	}

	.bibay-category-card:hover .bibay-category-card__image img,
	.bibay-category-card:focus-within .bibay-category-card__image img,
	.bibay-product-card:hover .bibay-product-card__image img,
	.bibay-product-card:focus-within .bibay-product-card__image img {
		transform: none;
	}
}

/* Home phase 02D: gifts, brand story, and editorial closing. */
.bibay-gifts.brxe-section,
.bibay-story.brxe-section {
	padding-block: 80px;
	overflow: hidden;
}

.bibay-gifts.brxe-section {
	background: var(--bibay-offwhite);
}

.bibay-story.brxe-section {
	background: var(--bibay-white);
}

.bibay-gifts__inner.brxe-container,
.bibay-story__inner.brxe-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	gap: 32px;
	width: min(100% - 40px, var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

.bibay-gifts__media.brxe-image,
.bibay-gifts__media.brxe-image picture,
.bibay-story__media.brxe-image,
.bibay-story__media.brxe-image picture {
	display: block;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #f3f1ed;
}

.bibay-gifts__media.brxe-image img,
.bibay-story__media.brxe-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bibay-gifts__media {
	order: 1;
}

.bibay-gifts__content {
	order: 2;
}

.bibay-gifts__content.brxe-block,
.bibay-story__content.brxe-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	min-width: 0;
}

.bibay-gifts__eyebrow,
.bibay-gifts__title,
.bibay-gifts__text,
.bibay-story__eyebrow,
.bibay-story__title,
.bibay-story__text,
.bibay-home-closing__title {
	margin: 0;
	letter-spacing: 0;
}

.bibay-gifts__eyebrow,
.bibay-story__eyebrow {
	margin-bottom: 14px;
	color: var(--bibay-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.bibay-gifts__title,
.bibay-story__title {
	max-width: 560px;
	color: var(--bibay-ink);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.08;
}

.bibay-gifts__text,
.bibay-story__text {
	max-width: 540px;
	margin-top: 18px;
	color: var(--bibay-muted);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
}

.bibay-story__text + .bibay-story__text {
	margin-top: 10px;
}

.bibay-gifts__cta,
.bibay-story__cta,
.bibay-home-closing__cta {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: 24px;
	padding-top: 2px;
	border-bottom: 1px solid currentColor;
	color: inherit;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: color var(--bibay-transition-base), border-color var(--bibay-transition-base);
}

.bibay-gifts__cta,
.bibay-story__cta {
	color: var(--bibay-ink);
}

.bibay-gifts__cta:hover,
.bibay-gifts__cta:focus-visible,
.bibay-story__cta:hover,
.bibay-story__cta:focus-visible,
.bibay-home-closing__cta:hover,
.bibay-home-closing__cta:focus-visible {
	border-color: var(--bibay-gold);
	color: var(--bibay-gold);
}

.bibay-home-closing.brxe-section {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 55vh;
	min-height: 55svh;
	padding: 0;
	overflow: hidden;
	background: var(--bibay-ink);
	color: var(--bibay-white);
}

.bibay-home-closing__media.brxe-image,
.bibay-home-closing__media.brxe-image picture,
.bibay-home-closing__media.brxe-image img,
.bibay-home-closing__scrim.brxe-div {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
}

.bibay-home-closing__media.brxe-image img {
	object-fit: cover;
	object-position: center;
}

.bibay-home-closing__scrim.brxe-div {
	z-index: 1;
	background: linear-gradient(0deg, rgba(20, 20, 20, 0.48) 0%, rgba(20, 20, 20, 0.08) 58%, rgba(20, 20, 20, 0) 100%);
	pointer-events: none;
}

.bibay-home-closing__content.brxe-container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(100% - 40px, var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
	padding-bottom: 48px;
}

.bibay-home-closing__title {
	max-width: 700px;
	color: var(--bibay-white);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.05;
}

.bibay-home-closing__cta {
	color: var(--bibay-white);
}

@media (min-width: 768px) {
	.bibay-gifts.brxe-section,
	.bibay-story.brxe-section {
		padding-block: 96px;
	}

	.bibay-gifts__inner.brxe-container,
	.bibay-story__inner.brxe-container {
		width: min(100% - 64px, var(--bibay-container-editorial));
	}

	.bibay-gifts__inner.brxe-container {
		grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
		gap: clamp(48px, 7vw, 104px);
	}

	.bibay-gifts__content {
		order: 1;
	}

	.bibay-gifts__media {
		order: 2;
	}

	.bibay-story__inner.brxe-container {
		grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
		gap: clamp(48px, 7vw, 112px);
	}

	.bibay-gifts__media.brxe-image,
	.bibay-gifts__media.brxe-image picture {
		aspect-ratio: 4 / 5;
	}

	.bibay-story__media.brxe-image,
	.bibay-story__media.brxe-image picture {
		aspect-ratio: 6 / 5;
	}

	.bibay-gifts__title,
	.bibay-story__title {
		font-size: 40px;
	}

	.bibay-home-closing.brxe-section {
		min-height: 60vh;
		min-height: 60svh;
	}

	.bibay-home-closing__content.brxe-container {
		width: min(100% - 64px, var(--bibay-container-editorial));
		padding-bottom: 72px;
	}

	.bibay-home-closing__title {
		font-size: 52px;
	}

	.bibay-gifts__cta,
	.bibay-story__cta,
	.bibay-home-closing__cta {
		font-size: 13px;
	}
}

@media (min-width: 1024px) {
	.bibay-gifts.brxe-section,
	.bibay-story.brxe-section {
		padding-block: 112px;
	}

	.bibay-gifts__inner.brxe-container,
	.bibay-story__inner.brxe-container,
	.bibay-home-closing__content.brxe-container {
		width: min(100% - 80px, var(--bibay-container-editorial));
	}

	.bibay-gifts__title,
	.bibay-story__title {
		font-size: 46px;
	}

	.bibay-home-closing__title {
		font-size: 58px;
	}
}

/* WooCommerce shop and product category archives */
body.woocommerce-shop #brx-content,
body.tax-product_cat #brx-content {
	padding-block: clamp(28px, 3.5vw, 48px) clamp(72px, 8vw, 120px);
}

body.woocommerce-shop #brx-content > .brxe-container,
body.tax-product_cat #brx-content > .brxe-container {
	display: block;
	width: min(100% - (var(--bibay-gutter-desktop) * 2), var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

body.woocommerce-shop #brx-content > .brxe-section,
body.tax-product_cat #brx-content > .brxe-section {
	width: 100%;
	padding: 0;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 0 24px;
	width: min(100% - (var(--bibay-gutter-desktop) * 2), var(--bibay-container-editorial));
	max-width: var(--bibay-container-editorial);
	margin-inline: auto;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-heading,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-heading {
	grid-column: 1 / -1;
	margin: 0 0 16px;
	color: var(--bibay-ink);
	font-size: clamp(32px, 3.2vw, 48px);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: 0;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-archive-description,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-archive-description {
	grid-column: 1 / -1;
	max-width: 620px;
	margin: 0 0 36px;
	color: var(--bibay-muted);
	font-size: 14px;
	line-height: 1.65;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-archive-description:empty,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-archive-description:empty {
	display: none;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-div,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-div {
	grid-column: 2;
	grid-row: 3;
	justify-self: end;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-total-results,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-total-results {
	grid-column: 1;
	grid-row: 3;
	align-self: center;
	margin: 0;
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products {
	grid-column: 1 / -1;
	grid-row: 4;
	margin-top: 20px;
	padding-top: 28px;
	border-top: 1px solid var(--bibay-line);
}

body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-pagination,
body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-pagination {
	grid-column: 1 / -1;
	grid-row: 5;
}

body.woocommerce-shop .bricks-archive-title-wrapper,
body.tax-product_cat .bricks-archive-title-wrapper {
	margin: 0 0 clamp(28px, 3.5vw, 48px);
	text-align: left;
}

body.woocommerce-shop .bricks-archive-title-wrapper .title,
body.tax-product_cat .bricks-archive-title-wrapper .title {
	margin: 0;
	color: var(--bibay-ink);
	font-size: clamp(32px, 3.2vw, 48px);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: 0;
}

body.tax-product_cat .term-description,
body.tax-product_cat .woocommerce-products-header__description {
	max-width: 620px;
	margin: -24px 0 40px;
	color: var(--bibay-muted);
	font-size: 14px;
	line-height: 1.65;
}

body.tax-product_cat .term-description p,
body.tax-product_cat .woocommerce-products-header__description p {
	margin: 0;
}

body.woocommerce-shop .brxe-woocommerce-products,
body.tax-product_cat .brxe-woocommerce-products {
	width: 100%;
	min-width: 0;
}

body.woocommerce-shop .bricks-before-shop-loop,
body.tax-product_cat .bricks-before-shop-loop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	margin: 0 0 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--bibay-line);
}

body.woocommerce-shop .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count {
	margin: 0;
	color: var(--bibay-muted);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering {
	margin: 0;
}

body.woocommerce-shop .woocommerce-ordering .orderby,
body.tax-product_cat .woocommerce-ordering .orderby {
	min-width: 220px;
	min-height: 44px;
	padding: 0 42px 0 14px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background-color: var(--bibay-white);
	color: var(--bibay-ink);
	font: 500 12px/1 var(--font-primary);
	cursor: pointer;
}

body.woocommerce-shop .woocommerce-ordering .orderby:hover,
body.tax-product_cat .woocommerce-ordering .orderby:hover {
	border-color: var(--bibay-border-strong);
}

body.woocommerce-shop .woocommerce-ordering .orderby:focus-visible,
body.tax-product_cat .woocommerce-ordering .orderby:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 2px;
}

body.woocommerce-shop ul.products,
body.tax-product_cat ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 52px 24px;
	width: 100%;
	margin: 0 !important;
	padding: 0;
	list-style: none;
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after {
	display: none !important;
}

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0;
	float: none !important;
	text-align: left;
}

body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link {
	display: block;
	color: var(--bibay-ink);
	text-decoration: none;
}

body.woocommerce-shop ul.products li.product img,
body.tax-product_cat ul.products li.product img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 16px !important;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	background: var(--bibay-offwhite);
	transition: transform var(--bibay-transition-slow), opacity var(--bibay-transition-slow);
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
	margin: 0 0 5px;
	padding: 0;
	color: var(--bibay-ink);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
}

body.woocommerce-shop ul.products li.product .price,
body.tax-product_cat ul.products li.product .price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 8px;
	margin: 0;
	color: var(--bibay-ink);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

body.woocommerce-shop ul.products li.product .price del,
body.tax-product_cat ul.products li.product .price del {
	color: var(--bibay-muted);
	font-size: 12px;
	opacity: 1;
}

body.woocommerce-shop ul.products li.product .price ins,
body.tax-product_cat ul.products li.product .price ins {
	color: var(--bibay-ink);
	font-weight: 500;
	text-decoration: none;
}

body.woocommerce-shop ul.products li.product .onsale,
body.tax-product_cat ul.products li.product .onsale {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 12px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 6px 9px;
	border: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.94);
	color: var(--bibay-ink);
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

body.woocommerce-shop ul.products li.product .button,
body.tax-product_cat ul.products li.product .button {
	display: none !important;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 44px;
	margin: 14px 0 0;
	padding: 0 14px;
	border: 1px solid var(--bibay-line);
	border-radius: 0;
	background: transparent;
	color: var(--bibay-ink);
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: border-color var(--bibay-transition-base), color var(--bibay-transition-base), background-color var(--bibay-transition-base);
}

body.woocommerce-shop ul.products li.product .button:hover,
body.woocommerce-shop ul.products li.product .button:focus-visible,
body.tax-product_cat ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:focus-visible {
	border-color: var(--bibay-gold);
	background: transparent;
	color: var(--bibay-gold);
}

body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link:focus-visible,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link:focus-visible,
body.woocommerce-shop .woocommerce-pagination a:focus-visible,
body.tax-product_cat .woocommerce-pagination a:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
	body.woocommerce-shop ul.products li.product:hover img,
	body.tax-product_cat ul.products li.product:hover img {
		transform: scale(1.015);
		opacity: 0.96;
	}
}

body.woocommerce-shop .woocommerce-pagination,
body.tax-product_cat .woocommerce-pagination {
	margin-top: 64px;
}

body.woocommerce-shop .woocommerce-pagination ul.page-numbers,
body.tax-product_cat .woocommerce-pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: 0;
}

body.woocommerce-shop .woocommerce-pagination .page-numbers li,
body.tax-product_cat .woocommerce-pagination .page-numbers li {
	border: 0;
}

body.woocommerce-shop .woocommerce-pagination a,
body.woocommerce-shop .woocommerce-pagination span,
body.tax-product_cat .woocommerce-pagination a,
body.tax-product_cat .woocommerce-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 10px;
	border: 1px solid transparent;
	background: transparent;
	color: var(--bibay-ink);
	font-size: 13px;
}

body.woocommerce-shop .woocommerce-pagination .current,
body.tax-product_cat .woocommerce-pagination .current {
	border-color: var(--bibay-line);
	background: var(--bibay-white);
}

@media (max-width: 1199px) {
	body.woocommerce-shop #brx-content > .brxe-container,
	body.tax-product_cat #brx-content > .brxe-container,
	body.woocommerce-shop #brx-content > .brxe-section > .brxe-container,
	body.tax-product_cat #brx-content > .brxe-section > .brxe-container {
		width: min(100% - (var(--bibay-gutter-tablet) * 2), var(--bibay-container-editorial));
	}

	body.woocommerce-shop ul.products,
	body.tax-product_cat ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 44px 20px;
	}
}

@media (max-width: 899px) {
	body.woocommerce-shop ul.products,
	body.tax-product_cat ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	body.woocommerce-shop #brx-content,
	body.tax-product_cat #brx-content {
		padding-block: 40px 72px;
	}

	body.woocommerce-shop #brx-content > .brxe-container,
	body.tax-product_cat #brx-content > .brxe-container,
	body.woocommerce-shop #brx-content > .brxe-section > .brxe-container,
	body.tax-product_cat #brx-content > .brxe-section > .brxe-container {
		width: min(100% - (var(--bibay-gutter-mobile) * 2), var(--bibay-container-editorial));
	}

	body.woocommerce-shop .bricks-archive-title-wrapper,
	body.tax-product_cat .bricks-archive-title-wrapper {
		margin-bottom: 28px;
	}

	body.woocommerce-shop .bricks-archive-title-wrapper .title,
	body.tax-product_cat .bricks-archive-title-wrapper .title {
		font-size: 30px;
	}

	body.tax-product_cat .term-description,
	body.tax-product_cat .woocommerce-products-header__description {
		margin: -16px 0 28px;
		font-size: 13px;
	}

	body.woocommerce-shop .bricks-before-shop-loop,
	body.tax-product_cat .bricks-before-shop-loop {
		gap: 12px;
		margin-bottom: 20px;
		padding-bottom: 12px;
	}

	body.woocommerce-shop #brx-content > .brxe-section > .brxe-container,
	body.tax-product_cat #brx-content > .brxe-section > .brxe-container {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0 12px;
	}

	body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-heading,
	body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-heading {
		margin-bottom: 12px;
		font-size: 30px;
	}

	body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-archive-description,
	body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products-archive-description {
		margin-bottom: 28px;
		font-size: 13px;
	}

	body.woocommerce-shop #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products,
	body.tax-product_cat #brx-content > .brxe-section > .brxe-container > .brxe-woocommerce-products {
		margin-top: 16px;
		padding-top: 20px;
	}

	body.woocommerce-shop .woocommerce-result-count,
	body.tax-product_cat .woocommerce-result-count {
		font-size: 12px;
	}

	body.woocommerce-shop .woocommerce-ordering .orderby,
	body.tax-product_cat .woocommerce-ordering .orderby {
		min-width: 168px;
		max-width: 48vw;
		padding-inline: 10px 34px;
		font-size: 11px;
	}

	body.woocommerce-shop ul.products,
	body.tax-product_cat ul.products {
		gap: 36px 12px;
	}

	body.woocommerce-shop ul.products li.product img,
	body.tax-product_cat ul.products li.product img {
		margin-bottom: 12px !important;
	}

	body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
	body.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
		font-size: 13px;
	}

	body.woocommerce-shop ul.products li.product .price,
	body.tax-product_cat ul.products li.product .price {
		font-size: 12px;
	}

	body.woocommerce-shop ul.products li.product .button,
	body.tax-product_cat ul.products li.product .button {
		align-self: stretch;
		width: 100%;
		margin-top: 12px;
		padding-inline: 8px;
		font-size: 10px;
		text-align: center;
	}
}

/* Keep the named archive component authoritative over legacy archive selectors. */
body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-category-archive__inner,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-category-archive__inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: stretch;
	gap: 0;
}

body.woocommerce-shop #brx-content .bibay-category-archive__breadcrumbs,
body.tax-product_cat #brx-content .bibay-category-archive__breadcrumbs {
	grid-column: 1 / -1 !important;
	grid-row: 1 !important;
}

body.woocommerce-shop #brx-content .bibay-category-archive__title,
body.tax-product_cat #brx-content .bibay-category-archive__title {
	grid-column: 1 / -1 !important;
	grid-row: 2 !important;
}

body.woocommerce-shop #brx-content .bibay-category-archive__description,
body.tax-product_cat #brx-content .bibay-category-archive__description {
	grid-column: 1 / -1 !important;
	grid-row: 3 !important;
}

body.woocommerce-shop #brx-content .bibay-catalog-toolbar,
body.tax-product_cat #brx-content .bibay-catalog-toolbar {
	display: contents !important;
}

body.woocommerce-shop #brx-content .bibay-catalog-toolbar__count,
body.tax-product_cat #brx-content .bibay-catalog-toolbar__count {
	grid-column: 1 !important;
	grid-row: 4 !important;
	align-self: center;
	justify-self: start;
	margin: 0;
	padding: 0;
	border: 0;
}

body.woocommerce-shop #brx-content .bibay-catalog-toolbar__sort,
body.tax-product_cat #brx-content .bibay-catalog-toolbar__sort {
	grid-column: 2 !important;
	grid-row: 4 !important;
	align-self: center;
	justify-self: end;
	margin: 0 12px 0 0;
}

body.woocommerce-shop #brx-content .bibay-catalog-toolbar__filter,
body.tax-product_cat #brx-content .bibay-catalog-toolbar__filter {
	grid-column: 3 !important;
	grid-row: 4 !important;
	align-self: center;
	justify-self: end;
}

body.woocommerce-shop #brx-content .bibay-product-grid,
body.tax-product_cat #brx-content .bibay-product-grid {
	grid-column: 1 / -1 !important;
	grid-row: 5 !important;
}

body.woocommerce-shop #brx-content .bibay-pagination,
body.tax-product_cat #brx-content .bibay-pagination {
	grid-column: 1 / -1 !important;
	grid-row: 6 !important;
}

@media (max-width: 767px) {
	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-category-archive__inner,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-category-archive__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	body.woocommerce-shop #brx-content .bibay-catalog-toolbar__count,
	body.tax-product_cat #brx-content .bibay-catalog-toolbar__count {
		grid-column: 1 / -1 !important;
		grid-row: 4 !important;
		margin-bottom: 16px;
	}

	body.woocommerce-shop #brx-content .bibay-catalog-toolbar__filter,
	body.tax-product_cat #brx-content .bibay-catalog-toolbar__filter {
		grid-column: 1 !important;
		grid-row: 5 !important;
		width: calc(100% - 5px);
		justify-self: start;
	}

	body.woocommerce-shop #brx-content .bibay-catalog-toolbar__sort,
	body.tax-product_cat #brx-content .bibay-catalog-toolbar__sort {
		grid-column: 2 !important;
		grid-row: 5 !important;
		width: calc(100% - 5px);
		margin: 0;
		justify-self: end;
	}

	body.woocommerce-shop #brx-content .bibay-product-grid,
	body.tax-product_cat #brx-content .bibay-product-grid {
		grid-row: 6 !important;
	}

	body.woocommerce-shop #brx-content .bibay-pagination,
	body.tax-product_cat #brx-content .bibay-pagination {
		grid-row: 7 !important;
	}
}

/* Keep the Phase 06A query grid authoritative over the legacy archive layout. */
body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	column-gap: clamp(16px, 1.75vw, 28px) !important;
	row-gap: 0 !important;
}

body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs {
	margin-bottom: clamp(28px, 2.5vw, 36px) !important;
}

body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title {
	margin-bottom: clamp(36px, 3vw, 48px) !important;
}

body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)),
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)) {
	margin-bottom: clamp(12px, 1.25vw, 18px) !important;
}

body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description {
	margin-bottom: clamp(36px, 3vw, 48px) !important;
}

body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > :not(.bibay-catalog-card),
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > :not(.bibay-catalog-card) {
	grid-column: 1 / -1 !important;
}

body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar {
	display: flex !important;
	grid-column: 1 / -1 !important;
	grid-row: auto !important;
	order: -20;
	margin-bottom: clamp(24px, 2.25vw, 32px) !important;
}

.bibay-catalog-filters__trigger .brxa-wrap {
	display: none;
}

.bibay-catalog-filters__trigger::before {
	content: "";
	display: block;
	width: 16px;
	height: 1px;
	background: currentColor;
	box-shadow: 0 -5px currentColor, 0 5px currentColor;
}

body.woocommerce-shop #brx-content .bibay-catalog-card,
body.tax-product_cat #brx-content .bibay-catalog-card {
	grid-column: auto !important;
	grid-row: auto !important;
	margin-bottom: clamp(34px, 4vw, 56px);
}

@media (max-width: 1199px) {
	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		column-gap: 12px !important;
		row-gap: 0 !important;
	}

	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs {
		margin-bottom: 22px !important;
	}

	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title {
		margin-bottom: 30px !important;
	}

	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)),
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)) {
		margin-bottom: 12px !important;
	}

	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description {
		margin-bottom: 30px !important;
	}

	body.woocommerce-shop #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar {
		margin-bottom: 24px !important;
	}

	body.woocommerce-shop #brx-content .bibay-catalog-card,
	body.tax-product_cat #brx-content .bibay-catalog-card {
		margin-bottom: 30px;
	}
}

/* Phase 08: native WooCommerce cart and checkout experience. */
:where(body.woocommerce-cart, body.woocommerce-checkout) #brx-content {
	width: min(calc(100% - 64px), 1360px);
	margin-inline: auto;
	padding-block: clamp(52px, 7vw, 96px);
	overflow: visible;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) #brx-content > h1,
:where(body.woocommerce-cart, body.woocommerce-checkout) .entry-title {
	margin: 0 0 clamp(32px, 4vw, 52px);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 500;
	line-height: 1.08;
	color: #292929;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce {
	color: #292929;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce a {
	color: inherit;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce button,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce input,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce select,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce textarea {
	font: inherit;
}

body.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
	gap: 0 clamp(36px, 5vw, 72px);
	align-items: start;
}

body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce > .woocommerce-message,
body.woocommerce-cart .woocommerce > .woocommerce-error,
body.woocommerce-cart .woocommerce > .woocommerce-info,
body.woocommerce-cart .woocommerce > .bibay-cart-empty {
	grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-cart-form {
	grid-column: 1;
	min-width: 0;
}

body.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	width: auto;
	min-width: 0;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
	position: sticky;
	top: 96px;
	float: none;
	width: 100%;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid #dfddd8;
	background: #fff;
}

body.woocommerce-cart .cart-collaterals .cart_totals > h2 {
	margin: 0 0 24px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

body.woocommerce-cart table.shop_table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-radius: 0;
}

body.woocommerce-cart table.shop_table th {
	padding: 0 12px 14px;
	border: 0;
	border-bottom: 1px solid #dfddd8;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	text-align: left;
	text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td {
	padding: 22px 12px;
	border: 0;
	border-bottom: 1px solid #eeeae4;
	vertical-align: middle;
}

body.woocommerce-cart table.shop_table .product-remove {
	width: 44px;
	padding-inline: 0;
	text-align: center;
}

body.woocommerce-cart table.shop_table .product-remove .remove {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	color: #6b6965 !important;
	border-radius: 0;
}

body.woocommerce-cart table.shop_table .product-remove .remove:hover,
body.woocommerce-cart table.shop_table .product-remove .remove:focus-visible {
	color: #292929 !important;
	background: #f5f3ef;
	outline: 1px solid #292929;
	outline-offset: -1px;
}

body.woocommerce-cart table.shop_table .product-thumbnail {
	width: 112px;
}

body.woocommerce-cart table.shop_table .product-thumbnail img {
	display: block;
	width: 88px;
	height: 110px;
	margin: 0;
	object-fit: cover;
	background: #f5f3ef;
}

body.woocommerce-cart table.shop_table .product-name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

body.woocommerce-cart table.shop_table .product-name a:hover,
body.woocommerce-cart table.shop_table .product-name a:focus-visible {
	color: #967446;
}

body.woocommerce-cart table.shop_table .product-price,
body.woocommerce-cart table.shop_table .product-subtotal {
	font-size: 14px;
	white-space: nowrap;
}

body.woocommerce-cart .quantity .qty {
	width: 72px;
	min-height: 44px;
	padding: 8px;
	border: 1px solid #c9c6c0;
	border-radius: 0;
	background: #fff;
	color: #292929;
	text-align: center;
}

body.woocommerce-cart .quantity .qty:focus-visible {
	border-color: #292929;
	outline: 1px solid #292929;
	outline-offset: 2px;
}

body.woocommerce-cart table.shop_table td.actions {
	padding: 24px 0 0;
	border: 0;
}

body.woocommerce-cart table.shop_table td.actions .coupon {
	display: flex;
	gap: 10px;
}

body.woocommerce-cart table.shop_table td.actions .coupon .input-text {
	width: min(100%, 220px);
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid #c9c6c0;
	border-radius: 0;
}

body.woocommerce-cart table.shop_table td.actions button,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
body.woocommerce-checkout .woocommerce-form-coupon button,
body.woocommerce-checkout #place_order {
	min-height: 50px;
	padding: 13px 22px;
	border: 1px solid #292929;
	border-radius: 0;
	background: #292929;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease;
}

body.woocommerce-cart table.shop_table td.actions button:hover,
body.woocommerce-cart table.shop_table td.actions button:focus-visible,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus-visible,
body.woocommerce-checkout .woocommerce-form-coupon button:hover,
body.woocommerce-checkout .woocommerce-form-coupon button:focus-visible,
body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus-visible {
	background: #fff;
	color: #292929;
	outline: 1px solid #292929;
	outline-offset: 2px;
}

body.woocommerce-cart table.shop_table td.actions button[disabled] {
	cursor: not-allowed;
	opacity: 0.45;
}

body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
	padding: 14px 0;
	border-bottom: 1px solid #eeeae4;
	font-size: 14px;
}

body.woocommerce-cart .cart_totals table td {
	text-align: right;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
	padding-top: 20px;
	font-size: 16px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
	padding: 24px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	display: flex;
	width: 100%;
	margin: 0;
	align-items: center;
	justify-content: center;
}

.bibay-commerce-assurances {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid #eeeae4;
	list-style: none;
}

.bibay-commerce-assurances li {
	position: relative;
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
	line-height: 1.45;
	color: #5f5d59;
}

.bibay-commerce-assurances li::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 7px;
	height: 7px;
	border: 1px solid #967446;
	border-radius: 50%;
	transform: translateY(-50%);
}

.bibay-cart-empty {
	display: flex;
	min-height: clamp(340px, 52vh, 520px);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: clamp(48px, 8vw, 96px) 24px;
	text-align: center;
}

body.woocommerce-cart .bibay-cart-empty + .return-to-shop {
	display: none;
}

.bibay-cart-empty__title {
	max-width: 640px;
	margin: 0;
	font-size: clamp(28px, 3.4vw, 46px);
	font-weight: 500;
	line-height: 1.12;
}

.bibay-cart-empty__message {
	max-width: 560px;
	margin: 18px 0 0;
	font-size: 15px;
	line-height: 1.65;
	color: #5f5d59;
}

.bibay-cart-empty__cta,
.bibay-thankyou-followup > a {
	display: inline-flex;
	min-height: 48px;
	margin-top: 28px;
	padding: 13px 24px;
	align-items: center;
	justify-content: center;
	border: 1px solid #292929;
	background: #292929;
	color: #fff !important;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}

.bibay-cart-empty__cta:hover,
.bibay-cart-empty__cta:focus-visible,
.bibay-thankyou-followup > a:hover,
.bibay-thankyou-followup > a:focus-visible {
	background: #fff;
	color: #292929 !important;
	outline: 1px solid #292929;
	outline-offset: 2px;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	margin-bottom: 24px;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	padding: 0 0 12px;
	border: 0;
	border-bottom: 1px solid #dfddd8;
	background: transparent;
	font-size: 13px;
	color: #5f5d59;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 4px;
}

body.woocommerce-checkout .woocommerce-form-coupon {
	display: flex;
	margin: 0 0 32px !important;
	padding: 20px;
	align-items: flex-end;
	gap: 12px;
	border: 1px solid #dfddd8;
	border-radius: 0;
}

body.woocommerce-checkout .woocommerce-form-coupon > p:first-child {
	flex-basis: 100%;
	margin: 0 0 4px;
}

body.woocommerce-checkout .woocommerce-form-coupon .form-row {
	float: none;
	width: auto;
	margin: 0;
}

body.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
	grid-template-rows: auto auto;
	gap: 0 clamp(44px, 6vw, 88px);
}

body.woocommerce-checkout form.checkout > #customer_details {
	grid-column: 1;
	grid-row: 1 / span 2;
	min-width: 0;
}

body.woocommerce-checkout form.checkout > #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin: 0 0 20px;
}

body.woocommerce-checkout form.checkout > #order_review {
	grid-column: 2;
	grid-row: 2;
	position: sticky;
	top: 96px;
	align-self: start;
	min-width: 0;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid #dfddd8;
	background: #fff;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: 100%;
}

body.woocommerce-checkout #customer_details .col-2 {
	margin-top: 40px;
}

body.woocommerce-checkout #customer_details h3,
body.woocommerce-checkout #order_review_heading {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
}

body.woocommerce-checkout #customer_details h3 {
	margin: 0 0 26px;
}

body.woocommerce-checkout .form-row {
	margin: 0 0 20px;
	padding: 0;
}

body.woocommerce-checkout .form-row label {
	display: block;
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

body.woocommerce-checkout .form-row .required {
	color: #8a3d3d;
}

body.woocommerce-checkout .input-text,
body.woocommerce-checkout .select2-container .select2-selection--single {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #c9c6c0;
	border-radius: 0;
	background: #fff;
	color: #292929;
}

body.woocommerce-checkout textarea.input-text {
	min-height: 108px;
	resize: vertical;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: 24px;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	top: 11px;
	right: 8px;
}

body.woocommerce-checkout .input-text:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
	border-color: #292929;
	outline: 1px solid #292929;
	outline-offset: 2px;
}

body.woocommerce-checkout .woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce-invalid .select2-selection--single {
	border-color: #a64b4b;
	box-shadow: inset 3px 0 #a64b4b;
}

body.woocommerce-checkout #order_review table.shop_table {
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-radius: 0;
}

body.woocommerce-checkout #order_review table.shop_table th,
body.woocommerce-checkout #order_review table.shop_table td {
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid #eeeae4;
	font-size: 13px;
	line-height: 1.5;
}

body.woocommerce-checkout #order_review table.shop_table th:last-child,
body.woocommerce-checkout #order_review table.shop_table td:last-child {
	padding-left: 18px;
	text-align: right;
}

body.woocommerce-checkout #order_review table.shop_table .order-total th,
body.woocommerce-checkout #order_review table.shop_table .order-total td {
	padding-top: 20px;
	font-size: 16px;
}

body.woocommerce-checkout #payment {
	margin-top: 24px;
	background: transparent;
}

body.woocommerce-checkout #payment ul.payment_methods {
	padding: 0 0 20px;
	border: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li {
	margin: 0;
	padding: 14px 0;
	border-bottom: 1px solid #eeeae4;
	font-size: 14px;
}

body.woocommerce-checkout #payment div.form-row {
	padding: 0;
}

body.woocommerce-checkout #place_order {
	float: none;
	width: 100%;
	min-height: 52px;
	margin: 0;
}

.bibay-checkout-assurances {
	display: grid;
	gap: 6px;
	margin: 0 0 22px;
	padding: 16px 0;
	border-block: 1px solid #eeeae4;
}

.bibay-checkout-assurances p {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: #5f5d59;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-message,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-error,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-info {
	margin: 0 0 28px;
	padding: 15px 18px 15px 22px;
	border: 0;
	border-left: 3px solid #967446;
	border-radius: 0;
	background: #f7f5f1;
	color: #292929;
	font-size: 13px;
	line-height: 1.55;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-error {
	border-left-color: #a64b4b;
	background: #fbf3f3;
}

:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-message::before,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-error::before,
:where(body.woocommerce-cart, body.woocommerce-checkout) .woocommerce-info::before {
	display: none;
}

body.woocommerce-order-received .woocommerce-order {
	max-width: 920px;
}

.bibay-thankyou-followup {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #dfddd8;
}

.bibay-thankyou-followup h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 500;
}

.bibay-thankyou-followup p {
	margin: 14px 0 0;
	color: #5f5d59;
}

@media (max-width: 1023px) {
	:where(body.woocommerce-cart, body.woocommerce-checkout) #brx-content {
		width: min(calc(100% - 48px), 980px);
	}

	body.woocommerce-cart .woocommerce {
		grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
		gap: 0 32px;
	}

	body.woocommerce-checkout form.checkout {
		grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
		gap: 0 36px;
	}
}

@media (max-width: 800px) {
	:where(body.woocommerce-cart, body.woocommerce-checkout) #brx-content {
		width: 100%;
		padding-inline: 18px !important;
		padding-block: 42px 64px;
		box-sizing: border-box;
	}

	:where(body.woocommerce-cart, body.woocommerce-checkout) #brx-content > h1,
	:where(body.woocommerce-cart, body.woocommerce-checkout) .entry-title {
		margin-bottom: 28px;
		font-size: 30px;
	}

	body.woocommerce-cart .woocommerce,
	body.woocommerce-checkout form.checkout {
		display: block;
	}

	body.woocommerce-cart .cart-collaterals {
		margin-top: 42px;
	}

	body.woocommerce-cart .cart-collaterals .cart_totals,
	body.woocommerce-checkout form.checkout > #order_review {
		position: static;
		padding: 22px 18px;
	}

	body.woocommerce-cart table.shop_table_responsive thead {
		display: none;
	}

	body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr) 44px;
		gap: 8px 14px;
		padding: 20px 0;
		border-bottom: 1px solid #dfddd8;
	}

	body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td {
		display: block;
		width: auto;
		padding: 0;
		border: 0;
		text-align: left !important;
	}

	body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td::before {
		display: none !important;
		content: none !important;
	}

	body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item .product-name::before {
		display: none !important;
		content: none !important;
		float: none !important;
		width: 0 !important;
	}

	body.woocommerce-cart table.shop_table .product-remove {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	body.woocommerce-cart table.shop_table .product-thumbnail {
		display: block !important;
		grid-column: 1;
		grid-row: 1 / span 4;
	}

	body.woocommerce-cart table.shop_table .product-thumbnail img {
		width: 92px;
		height: 115px;
	}

	body.woocommerce-cart table.shop_table .product-name {
		grid-column: 2;
		grid-row: 1;
		padding-right: 4px;
	}

	body.woocommerce-cart table.shop_table .product-price {
		grid-column: 2;
		grid-row: 2;
		color: #5f5d59;
	}

	body.woocommerce-cart table.shop_table .product-quantity {
		grid-column: 2;
		grid-row: 3;
	}

	body.woocommerce-cart table.shop_table .product-subtotal {
		grid-column: 2;
		grid-row: 4;
		font-weight: 500;
	}

	body.woocommerce-cart table.shop_table tbody tr:last-child:not(.cart_item) {
		display: block;
	}

	body.woocommerce-cart table.shop_table td.actions {
		display: block;
		width: 100%;
	}

	body.woocommerce-cart table.shop_table td.actions .coupon {
		display: grid;
		width: 100%;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	body.woocommerce-cart table.shop_table td.actions .coupon .input-text {
		width: 100%;
	}

	body.woocommerce-cart table.shop_table td.actions > button {
		width: 100%;
		margin-top: 12px;
	}

	body.woocommerce-cart .cart_totals table.shop_table_responsive tr {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	body.woocommerce-cart .cart_totals table.shop_table_responsive tr th,
	body.woocommerce-cart .cart_totals table.shop_table_responsive tr td {
		display: block !important;
		width: auto !important;
	}

	body.woocommerce-cart .cart_totals table.shop_table_responsive tr td {
		text-align: right !important;
	}

	body.woocommerce-cart .cart_totals table.shop_table_responsive tr td::before {
		display: none !important;
	}

	body.woocommerce-checkout .woocommerce-form-coupon {
		align-items: stretch;
		flex-direction: column;
	}

	body.woocommerce-checkout .woocommerce-form-coupon .form-row,
	body.woocommerce-checkout .woocommerce-form-coupon button {
		width: 100%;
	}

	body.woocommerce-checkout form.checkout > #order_review_heading {
		margin-top: 48px;
	}

	body.woocommerce-checkout #customer_details .col-2 {
		margin-top: 34px;
	}

	body.woocommerce-checkout .form-row-first,
	body.woocommerce-checkout .form-row-last {
		float: none;
		width: 100%;
	}

	.bibay-cart-empty {
		min-height: 380px;
		padding-inline: 0;
	}
}

@media (max-width: 390px) {
	body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item {
		grid-template-columns: 82px minmax(0, 1fr) 44px;
		gap: 8px 12px;
	}

	body.woocommerce-cart table.shop_table .product-thumbnail img {
		width: 82px;
		height: 103px;
	}

	body.woocommerce-cart table.shop_table td.actions .coupon {
		grid-template-columns: 1fr;
	}

	body.woocommerce-cart table.shop_table td.actions .coupon button {
		width: 100%;
		margin-top: 8px;
	}
}

@media (max-width: 800px) {
	body.woocommerce-cart .woocommerce .cart-collaterals,
	body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
		float: none !important;
		width: 100% !important;
		max-width: none !important;
	}

	body.woocommerce-cart .woocommerce table.shop_table_responsive tbody tr.cart_item .product-name::before,
	body.woocommerce-cart .woocommerce table.shop_table_responsive tbody tr.cart_item .product-name > *::before {
		display: none !important;
		visibility: hidden !important;
		content: "" !important;
		float: none !important;
		width: 0 !important;
	}
}

/* Phase 11D: compact category headers and reusable editorial content system. */
body.tax-product_cat #brx-content {
	padding-block: clamp(40px, 4vw, 56px) clamp(72px, 8vw, 112px);
}

body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs {
	margin-bottom: clamp(12px, 1.2vw, 18px) !important;
	font-size: 11px;
}

body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title,
body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)) {
	margin-bottom: clamp(20px, 2vw, 28px) !important;
	font-size: clamp(30px, 3vw, 44px) !important;
	line-height: 1.06 !important;
}

body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description {
	max-width: 680px !important;
	margin-bottom: clamp(22px, 2.2vw, 30px) !important;
	color: var(--bibay-muted);
	font-size: 14px;
	line-height: 1.65;
}

body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar {
	margin-bottom: clamp(20px, 1.8vw, 26px) !important;
	padding-bottom: 14px;
}

body.term-tobilleras #brx-content .bibay-catalog-toolbar,
body.term-tobilleras #brx-content .bibay-catalog-filters__drawer,
body.term-tobilleras #brx-content .bibay-catalog-pagination,
body.term-tobilleras #brx-content .bibay-catalog-results-summary {
	display: none !important;
}

body.term-tobilleras #brx-content .bibay-catalog-empty--tobilleras {
	grid-column: 1 / -1 !important;
	min-height: clamp(280px, 38vw, 430px);
	margin-top: 6px;
	padding: clamp(48px, 7vw, 92px);
	border: 1px solid var(--bibay-line);
	background: var(--bibay-offwhite);
}

body.term-tobilleras #brx-content .bibay-catalog-empty__title {
	max-width: 520px;
	font-size: clamp(24px, 2.5vw, 36px);
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress {
	box-sizing: border-box;
	width: min(calc(100% - 40px), 900px);
	margin-inline: auto;
	padding-block: clamp(52px, 6vw, 88px) clamp(80px, 9vw, 132px);
	color: var(--bibay-ink);
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > h1 {
	width: min(100%, 820px);
	margin: 0 auto clamp(28px, 3.5vw, 44px);
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: 0;
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > .bibay-content-page {
	width: min(100%, 820px);
	margin-inline: auto;
	padding: 0;
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > :where(p, ul, ol, h2, h3, h4, .cmplz-document) {
	width: min(100%, 760px);
	margin-inline: auto;
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > p,
body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > ul,
body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > ol,
body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > .cmplz-document {
	color: var(--bibay-muted);
	font-size: 16px;
	line-height: 1.75;
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > h2 {
	margin-top: clamp(38px, 5vw, 62px);
	margin-bottom: 14px;
	padding-top: clamp(28px, 3vw, 38px);
	border-top: 1px solid var(--bibay-line);
	font-size: clamp(21px, 2vw, 27px);
	font-weight: 500;
	line-height: 1.25;
}

body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > p + p {
	margin-top: 14px;
}

.bibay-content-page section {
	padding-top: clamp(30px, 3vw, 42px);
	border-top: 1px solid var(--bibay-line);
}

.bibay-content-page section:first-of-type {
	padding-top: 0;
	border-top: 0;
}

.bibay-content-page__lead {
	margin-bottom: clamp(36px, 4vw, 54px);
}

body.page-id-79 #brx-content.wordpress > ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 28px;
	margin-top: 20px;
	padding: 0;
	border-top: 1px solid var(--bibay-line);
	list-style: none;
}

body.page-id-79 #brx-content.wordpress > ul li {
	padding: 14px 0;
	border-bottom: 1px solid var(--bibay-line);
}

.bibay-faq-list summary:hover {
	color: var(--bibay-gold);
}

.bibay-contact-form .wpcf7-form > p {
	margin: 0 0 20px;
	color: var(--bibay-ink);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.bibay-contact-form input:not([type="submit"]):focus,
.bibay-contact-form textarea:focus {
	border-color: var(--bibay-ink);
	outline: 2px solid transparent;
	box-shadow: 0 0 0 2px rgba(182, 138, 58, .2);
}

body.woocommerce-account #brx-content.wordpress {
	width: min(calc(100% - 40px), 1120px) !important;
}

body.woocommerce-account #brx-content.wordpress > h1 {
	width: 100%;
}

body.woocommerce-account #brx-content > .woocommerce:has(.woocommerce-MyAccount-navigation) {
	display: grid;
	grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
	gap: clamp(36px, 6vw, 76px);
	align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--bibay-line);
	list-style: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
	border-bottom: 1px solid var(--bibay-line);
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	min-height: 48px;
	color: var(--bibay-muted);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
	color: var(--bibay-ink);
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
	outline: 2px solid var(--bibay-focus);
	outline-offset: 3px;
}

body.woocommerce-account .woocommerce-MyAccount-content {
	color: var(--bibay-muted);
	font-size: 15px;
	line-height: 1.75;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
	color: var(--bibay-ink);
	text-decoration-color: var(--bibay-line);
	text-underline-offset: 4px;
}

body.single-product .bibay-variation-swatch--color.has-color {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 6px;
	background: var(--bibay-white);
	text-decoration: none;
}

body.single-product .bibay-variation-swatch__color {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(41, 41, 41, .16);
	border-radius: 50%;
	background: var(--bibay-swatch-background, var(--bibay-swatch-color));
}

body.single-product .bibay-variation-swatch--color.has-color.is-selected {
	border-color: var(--bibay-ink);
	background: var(--bibay-white);
	box-shadow: inset 0 0 0 2px var(--bibay-white), inset 0 0 0 3px var(--bibay-ink);
}

body.single-product .bibay-variation-swatch--color.has-image {
	width: 44px;
	height: 44px;
}

/* Optional, image-ready collection archive shell for a later approved art pass. */
.bibay-collection-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
	gap: clamp(32px, 6vw, 88px);
	align-items: center;
	margin-bottom: clamp(40px, 6vw, 84px);
}

.bibay-collection-intro__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--bibay-offwhite);
}

.bibay-collection-intro__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {
	body.tax-product_cat #brx-content {
		padding-block: 32px 76px;
	}

	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs {
		margin-bottom: 12px !important;
	}

	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title,
	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)) {
		margin-bottom: 20px !important;
		font-size: 28px !important;
	}

	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description {
		margin-bottom: 22px !important;
		font-size: 13px;
	}

	body.tax-product_cat #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar {
		margin-bottom: 20px !important;
	}

	body.term-tobilleras #brx-content .bibay-catalog-empty--tobilleras {
		min-height: 300px;
		padding: 44px 24px;
	}

	body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress,
	body.woocommerce-account #brx-content.wordpress {
		width: min(calc(100% - 40px), 900px);
		padding-block: 40px 80px;
	}

	body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > h1 {
		margin-bottom: 28px;
		font-size: 34px;
	}

	body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > p,
	body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > ul,
	body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > ol,
	body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress > .cmplz-document {
		font-size: 15px;
	}

	body.page-id-79 #brx-content.wordpress > ul {
		grid-template-columns: 1fr;
	}

	body.woocommerce-account #brx-content > .woocommerce:has(.woocommerce-MyAccount-navigation) {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-top: 0;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation li {
		border-top: 1px solid var(--bibay-line);
	}

	.bibay-collection-intro {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 430px) {
	body.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: 1fr;
	}
}

/* Phase 12A: evident interactive-target fixes without changing page layout. */
.cmplz-manage-consent,
.trp-language-switcher a,
.trp-ls-shortcode-current-language a,
.trp-ls-shortcode-language a,
.bibay-footer__legal a,
body.woocommerce-account .woocommerce-MyAccount-navigation a,
body.woocommerce-account .show-password-input {
	min-height: 44px;
}

.trp-language-switcher a,
.trp-ls-shortcode-current-language a,
.trp-ls-shortcode-language a,
.bibay-footer__legal a,
body.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: inline-flex;
	align-items: center;
}

.bibay-product-card__media:focus-visible,
.bibay-catalog-card__media:focus-visible,
a.brxe-image[href*="/producto/"]:focus-visible {
	outline: 2px solid var(--bibay-gold);
	outline-offset: 3px;
}

/* Phase 13A: truthful visual swatches and tighter category introductions. */
body.single-product .bibay-variation-swatch--color.has-color,
body.single-product .bibay-variation-swatch--color.has-image {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border-radius: 5px;
}

body.single-product .bibay-variation-swatch--color.has-color {
	padding: 6px;
}

body.single-product .bibay-variation-swatch__color {
	border-color: rgba(41, 41, 41, .22);
	border-radius: 3px;
}

body.single-product .bibay-variation-swatch--color.has-image {
	padding: 3px;
}

body.single-product .bibay-variation-swatch--color.has-image img {
	border-radius: 2px;
}

body.single-product .bibay-variation-swatch--color.is-disabled,
body.single-product .bibay-variation-swatch--color:disabled {
	filter: grayscale(.65);
}

body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content {
	padding-block: clamp(30px, 3vw, 44px) clamp(72px, 8vw, 112px);
}

body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__breadcrumbs {
	margin-bottom: clamp(10px, 1vw, 14px) !important;
}

body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title,
body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)) {
	margin-bottom: clamp(16px, 1.6vw, 22px) !important;
}

body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description {
	display: -webkit-box;
	max-width: 680px !important;
	margin-bottom: clamp(20px, 2vw, 28px) !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar {
	margin-bottom: clamp(18px, 1.7vw, 24px) !important;
	padding-bottom: 12px;
}

@media (max-width: 767px) {
	body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content {
		padding-block: 26px 76px;
	}

	body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title,
	body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__title:has(~ .bibay-category-archive__description:not(:empty)) {
		margin-bottom: 16px !important;
	}

	body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-category-archive__description {
		margin-bottom: 20px !important;
	}

body.tax-product_cat:is(.term-anillos, .term-pendientes, .term-collares, .term-pulseras, .term-tobilleras) #brx-content > .bibay-category-archive > .bibay-filter-results > .bibay-catalog-toolbar {
		margin-bottom: 18px !important;
	}
}

/* Mallorca market post-purchase landing. The capture form remains disabled until a backend is approved. */
body:has(.bibay-market-thanks) > #brx-content > h1:first-child {
	display: none;
}

.bibay-market-thanks {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin-inline: 0 !important;
	left: auto !important;
	right: auto !important;
	min-height: min(760px, calc(100svh - 72px));
	padding: clamp(72px, 10vw, 144px) 24px;
	background: var(--bibay-white);
	color: var(--bibay-ink);
}

.bibay-market-thanks__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
	gap: clamp(48px, 8vw, 128px);
	align-items: end;
	width: min(1180px, 100%);
	margin-inline: auto;
}

.bibay-market-thanks__eyebrow {
	margin: 0 0 18px;
	color: var(--bibay-gold);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.bibay-market-thanks h1 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(42px, 5.4vw, 76px);
	font-weight: 600;
	line-height: 1.02;
}

.bibay-market-thanks__lead {
	max-width: 620px;
	margin: 28px 0 0;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.45;
}

.bibay-market-thanks__mallorca {
	margin: 18px 0 0;
	font-size: 15px;
	font-weight: 500;
}

.bibay-market-thanks__status {
	padding: 24px 0;
	border-block: 1px solid var(--bibay-line);
}

.bibay-market-thanks__status strong,
.bibay-market-thanks__status span {
	display: block;
}

.bibay-market-thanks__status strong {
	font-size: 14px;
	font-weight: 600;
}

.bibay-market-thanks__status span {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.55;
}

.bibay-market-thanks__shop-link {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	margin-top: 24px;
	border-bottom: 1px solid currentColor;
	color: var(--bibay-ink);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.bibay-market-thanks__shop-link:hover,
.bibay-market-thanks__shop-link:focus-visible {
	color: var(--bibay-gold);
}

@media (max-width: 767px) {
	.bibay-market-thanks {
		min-height: calc(100svh - 64px);
		padding: 64px 20px 72px;
	}

	.bibay-market-thanks__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 44px;
		align-items: start;
	}

	.bibay-market-thanks h1 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.bibay-market-thanks__lead {
		font-size: 18px;
	}
}


/* Legal notice: keep mandatory owner details readable without making them the lead. */
body.page-id-817 .bibay-legal-identity {
	margin-block: clamp(48px, 7vw, 88px) 32px;
	padding-block: 28px;
	border-block: 1px solid #dfddd8;
	color: #525252;
}

body.page-id-817 .bibay-legal-identity h2 {
	margin: 0 0 16px;
	color: #292929;
	font-size: clamp(18px, 1.5vw, 21px);
	font-weight: 500;
}

body.page-id-817 .bibay-legal-identity p {
	max-width: 760px;
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
}

body.page-id-817 .bibay-legal-identity strong {
	color: #3f3f3f;
	font-weight: 500;
}

body.page-id-817 .bibay-legal-identity a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.page-id-817 .bibay-legal-identity a:focus-visible {
	outline: 2px solid #292929;
	outline-offset: 3px;
}

@media (max-width: 767px) {
	body.page-id-817 .bibay-legal-identity {
		margin-block: 40px 24px;
		padding-block: 24px;
	}

	body.page-id-817 .bibay-legal-identity p {
		font-size: 14px;
		line-height: 1.7;
	}
}

/* BIBAY FINAL CONTENT PRE-GO 2026-09-11 */
body.wp-singular:not(.woocommerce-cart):not(.woocommerce-checkout) #brx-content.wordpress:has(> .bibay-shop-landing) {
	width: min(calc(100% - 40px), 1180px);
}
.bibay-content-page.bibay-shop-landing {
	width: min(100%, 1120px) !important;
}
.bibay-editorial-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
	align-items: center;
	gap: clamp(32px, 6vw, 88px);
	margin-bottom: clamp(52px, 7vw, 92px);
}
.bibay-editorial-hero--reverse {
	grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
}
.bibay-editorial-hero img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.bibay-kicker,
.bibay-tile__eyebrow {
	margin: 0 0 12px !important;
	color: var(--bibay-gold, #9f7428) !important;
	font-size: 12px !important;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}
.bibay-tile-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.bibay-tile {
	display: flex;
	min-height: 190px;
	flex-direction: column;
	justify-content: space-between;
	gap: 14px;
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid var(--bibay-line, #dfddd8);
	background: #fff;
	color: var(--bibay-ink, #292929) !important;
	text-decoration: none !important;
	transition: border-color .2s ease, transform .2s ease;
}
.bibay-tile:hover,
.bibay-tile:focus-visible {
	border-color: var(--bibay-gold, #b68a3a);
	transform: translateY(-2px);
}
.bibay-tile strong {
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 500;
	line-height: 1.2;
}
.bibay-tile span:not(.bibay-tile__eyebrow) {
	color: #626262;
	line-height: 1.6;
}
.bibay-tile em {
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	text-transform: uppercase;
}
.bibay-collection-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bibay-tile--collection {
	min-height: 240px;
	background: #f7f5f1;
}
.bibay-help-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bibay-help-grid .bibay-tile {
	min-height: 150px;
}
.bibay-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.bibay-link-row a,
.bibay-button-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	border: 1px solid var(--bibay-ink, #292929);
	color: var(--bibay-ink, #292929) !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	text-transform: uppercase;
}
.bibay-shop-landing .woocommerce {
	margin-top: 28px;
}
@media (max-width: 767px) {
	.bibay-editorial-hero,
	.bibay-editorial-hero--reverse {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.bibay-editorial-hero--reverse img {
		order: 2;
	}
	.bibay-tile-grid,
	.bibay-collection-grid,
	.bibay-help-grid {
		grid-template-columns: 1fr;
	}
	.bibay-tile {
		min-height: 0;
	}
}