:root {
	--brand: #c1343c;
	--brand-dark: #9f2730;
	--ink: #1d1d1d;
	--muted: #666;
	--surface: #fff;
	--surface-soft: #f7f4f1;
	--line: #e8e2de;
	--radius: 6px;
	--shadow: 0 16px 42px rgba(29, 29, 29, .08);
	--container: 1280px;
	--font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--surface);
	font: 400 16px/1.65 var(--font);
	-webkit-font-smoothing: antialiased;
}

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

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

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

a:hover {
	color: var(--brand);
}

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

h1,
h2,
h3,
h4,
h5,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.15;
}

h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.section {
	padding-block: clamp(64px, 8vw, 112px);
}

.product-shelf.section {
	padding-block: var(--bebook-shelf-space, 72px);
	background-color: var(--bebook-shelf-background, transparent);
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: var(--ink);
}

.topbar {
	color: #fff;
	background: var(--brand);
	font-size: 13px;
}

.topbar-inner,
.header-main-inner,
.newsletter-cta-inner,
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.topbar-inner {
	min-height: 38px;
}

.topbar-links,
.topbar-social {
	display: flex;
	gap: 24px;
}

.topbar a:hover {
	color: #fff;
	text-decoration: underline;
}

.site-header {
	position: relative;
	z-index: 50;
	background: #fff;
}

.header-main {
	border-bottom: 1px solid var(--line);
}

.header-main-inner {
	min-height: 104px;
}

.site-logo {
	flex: 0 0 238px;
}

.site-logo .custom-logo-link,
.site-logo .custom-logo {
	display: block;
}

.site-logo .custom-logo {
	width: auto;
	max-height: 78px;
}

.header-search {
	flex: 1 1 560px;
	max-width: 640px;
}

.woocommerce-product-search,
.search-form {
	display: flex;
	width: 100%;
}

.woocommerce-product-search .search-field,
.search-form .search-field {
	min-width: 0;
	width: 100%;
	height: 48px;
	padding: 0 18px;
	border: 1px solid #d9d4d0;
	border-radius: var(--radius) 0 0 var(--radius);
	background: #fff;
}

.woocommerce-product-search button,
.search-form .search-submit {
	min-width: 112px;
	padding: 0 18px;
	border: 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	color: #fff;
	background: var(--brand);
	cursor: pointer;
	font-weight: 700;
}

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

.header-action {
	position: relative;
	display: grid;
	grid-template-columns: 28px auto;
	gap: 7px;
	align-items: center;
	min-height: 44px;
	color: var(--ink);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.1;
}

.header-action svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-button {
	position: relative;
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	border: 0;
	color: var(--ink);
	background: transparent;
	cursor: pointer;
}

.icon-button svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-action-count {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	min-width: 18px;
	height: 18px;
	place-items: center;
	padding-inline: 4px;
	border-radius: 99px;
	color: #fff;
	background: var(--brand);
	font-size: 10px;
	font-weight: 700;
}

.menu-toggle {
	display: none;
}

.shipping-strip {
	padding-block: 7px;
	color: var(--brand);
	background: var(--surface-soft);
	font-size: 12px;
	font-weight: 700;
}

.shipping-strip-inner {
	display: flex;
	justify-content: flex-end;
	gap: 36px;
}

.shipping-strip-inner span {
	position: relative;
}

.shipping-strip-inner span + span::before {
	position: absolute;
	top: 50%;
	left: -18px;
	width: 1px;
	height: 14px;
	content: "";
	background: var(--line);
	transform: translateY(-50%);
}

.category-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	border-block: 1px solid var(--line);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 10px 32px rgba(29, 29, 29, .05);
	backdrop-filter: blur(12px);
}

.category-nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 34px);
	width: min(calc(100% - 40px), var(--container));
	min-height: 54px;
	margin-inline: auto;
}

.category-nav a {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.category-nav .category-featured {
	color: var(--brand);
}

.all-categories {
	position: relative;
	flex: 0 0 auto;
}

.all-categories summary {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--brand);
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
	list-style: none;
	text-transform: uppercase;
}

.all-categories summary::-webkit-details-marker {
	display: none;
}

.all-categories summary::before {
	content: "☰";
	font-size: 15px;
	line-height: 1;
}

.all-categories-panel {
	position: absolute;
	z-index: 80;
	top: calc(100% + 18px);
	left: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 0;
	width: min(520px, calc(100vw - 40px));
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.all-categories-panel a {
	padding: 11px 12px;
	border-radius: 4px;
	text-align: left;
	text-transform: none;
}

.all-categories-panel a:hover {
	background: var(--surface-soft);
}

.mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 60;
	overflow-y: auto;
	padding: 104px 0 40px;
	background: #fff;
}

.mobile-panel-inner {
	width: min(calc(100% - 40px), 620px);
	margin-inline: auto;
}

.mobile-panel-search {
	margin-bottom: 24px;
}

.mobile-menu-title {
	margin-bottom: 8px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.mobile-nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.mobile-nav-list a {
	display: block;
	padding: 12px 4px;
	font-weight: 600;
}

.mobile-nav-list .category-featured {
	color: var(--brand);
}

.mobile-secondary-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 28px;
}

.mobile-secondary-nav a {
	padding: 12px 8px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: center;
	font-size: 12px;
	font-weight: 700;
}

.bebook-home-slider {
	position: relative;
	min-height: clamp(430px, 42vw, 620px);
	overflow: hidden;
	background: #222;
}

.bebook-home-slider > .bebook-slider-slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	min-height: inherit !important;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .45s ease;
}

.bebook-home-slider > .bebook-slider-slide:first-child,
.bebook-home-slider > .bebook-slider-slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.bebook-home-slider.is-ready > .bebook-slider-slide:first-child:not(.is-active) {
	opacity: 0;
	pointer-events: none;
}

.bebook-home-slider .wp-block-cover__inner-container,
.bebook-home-slider .hero-overlay {
	width: min(calc(100% - 80px), var(--container));
	margin-inline: auto;
}

.bebook-home-slider .hero-overlay {
	inset: auto auto 11% 50%;
	transform: translateX(-50%);
}

.bebook-slider-eyebrow,
.bebook-home-slider .hero-overlay small {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.bebook-slider-controls {
	position: absolute;
	z-index: 4;
	right: max(24px, calc((100vw - var(--container)) / 2));
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.bebook-slider-arrow,
.bebook-slider-dots button {
	border: 1px solid rgba(255, 255, 255, .72);
	color: #fff;
	background: rgba(0, 0, 0, .24);
	cursor: pointer;
	backdrop-filter: blur(5px);
}

.bebook-slider-arrow {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	padding: 0;
	border-radius: 50%;
	font-size: 18px;
}

.bebook-slider-dots {
	display: flex;
	gap: 7px;
}

.bebook-slider-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
}

.bebook-slider-dots button.is-active {
	border-color: #fff;
	background: #fff;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 2px;
	background: #fff;
}

.hero-card {
	position: relative;
	display: block;
	min-height: clamp(360px, 42vw, 580px);
	overflow: hidden;
	color: #fff;
	background: #222;
}

.hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-card:not(.hero-card-main) img {
	object-position: 63% center;
}

.hero-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .52));
}

.hero-overlay {
	position: absolute;
	z-index: 1;
	inset: auto 8% 11%;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 18px;
}

.hero-overlay strong {
	max-width: 720px;
	font-size: clamp(2rem, 4.5vw, 4.6rem);
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.hero-card:not(.hero-card-main) .hero-overlay strong {
	font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.discovery-nav {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-block: 22px;
	scrollbar-width: thin;
}

.discovery-nav a {
	flex: 0 0 auto;
	padding: 9px 17px;
	border: 1px solid var(--line);
	border-radius: 99px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
}

.discovery-nav a:first-child,
.discovery-nav a:hover {
	border-color: var(--brand);
	color: #fff;
	background: var(--brand);
}

.button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 22px;
	border: 2px solid var(--brand);
	border-radius: var(--radius);
	color: #fff;
	background: var(--brand);
	font-weight: 700;
	line-height: 1.2;
	transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	color: var(--brand);
	background: #fff;
}

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

.button-dark:hover {
	color: var(--ink);
}

.button-light {
	border-color: #fff;
	color: var(--brand);
	background: #fff;
}

.section-heading {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 6vw, 96px);
	align-items: end;
	margin-bottom: 48px;
}

.section-heading h1,
.section-heading h2 {
	margin-bottom: 0;
	color: var(--brand);
}

.section-heading > p {
	margin-bottom: 6px;
	color: var(--muted);
}

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

.shelf-heading h1,
.shelf-heading h2 {
	margin-bottom: 0;
	color: var(--bebook-shelf-title-color, var(--ink));
	font-size: var(--bebook-shelf-title-size, 43px);
}

.shelf-heading > a {
	flex: 0 0 auto;
	padding-bottom: 4px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 800;
}

.shelf-heading > a span {
	display: inline-block;
	margin-left: 5px;
	transition: transform .2s ease;
}

.shelf-heading > a:hover span {
	transform: translateX(4px);
}

.product-shelf-soft {
	background: var(--surface-soft);
}

.product-shelf .eyebrow {
	color: var(--bebook-shelf-eyebrow-color, var(--brand));
	font-size: var(--bebook-shelf-eyebrow-size, 13px);
}

.eyebrow {
	margin-bottom: 8px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.section-action {
	margin-top: 40px;
	text-align: center;
}

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

.product-shelf.woocommerce ul.products {
	grid-template-columns: repeat(var(--bebook-shelf-columns, 5), minmax(0, 1fr));
	gap: var(--bebook-shelf-gap, 24px);
}

.product-shelf.woocommerce ul.products li.product {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
}

.product-shelf.woocommerce ul.products li.product > a:first-child {
	display: block;
	width: 100%;
	min-width: 0;
}

.product-shelf.woocommerce ul.products li.product a img {
	width: 100% !important;
	max-width: 100%;
	height: auto;
}

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

.woocommerce ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	margin: 0;
	text-align: left;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 3 / 4;
	margin-bottom: 16px;
	object-fit: contain;
	background: #fff;
	box-shadow: 0 8px 26px rgba(29, 29, 29, .10);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 4.2em;
	overflow: hidden;
	padding: 0;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.woocommerce ul.products li.product .price {
	min-height: 1.65em;
	color: var(--brand);
	font-size: 15px;
	font-weight: 700;
}

.woocommerce ul.products li.product .button {
	align-self: stretch;
	margin-top: auto;
	text-align: center;
	white-space: normal;
}

.product-shelf-button-compact ul.products li.product .button {
	min-height: 40px;
	padding: 7px 12px;
	font-size: 12px;
}

.product-shelf-button-large ul.products li.product .button {
	min-height: 54px;
	padding: 13px 22px;
	font-size: 16px;
}

.product-shelf.woocommerce ul.products li.product .button {
	min-height: var(--bebook-shelf-button-height, 46px);
	padding: var(--bebook-shelf-button-padding, 10px 16px);
	font-size: var(--bebook-shelf-button-font-size, 14px);
}

.product-ranking ul.products {
	counter-reset: bebook-ranking;
}

.product-ranking ul.products li.product {
	counter-increment: bebook-ranking;
}

.product-ranking ul.products li.product::before {
	position: absolute;
	z-index: 2;
	top: -12px;
	left: -8px;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: var(--brand);
	box-shadow: 0 5px 18px rgba(193, 52, 60, .28);
	content: counter(bebook-ranking);
	font-size: 15px;
	font-weight: 800;
}

.woocommerce span.onsale {
	min-width: auto;
	min-height: auto;
	padding: 7px 11px;
	border-radius: 3px;
	background: var(--brand);
	line-height: 1;
}

.promo-section {
	padding-top: 0;
}

.promo-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	gap: 18px;
}

.promo-grid-two {
	grid-template-columns: 1.35fr 1fr;
}

.bebook-promo-pair {
	padding-block: clamp(36px, 6vw, 78px);
}

.bebook-promo-pair .wp-block-columns {
	gap: clamp(18px, 2.4vw, 32px);
	margin-bottom: 0;
}

.bebook-promo-pair .wp-block-column,
.bebook-promo-cover {
	margin-bottom: 0;
}

.bebook-promo-cover {
	align-items: stretch;
	min-height: clamp(330px, 31vw, 440px) !important;
	overflow: hidden;
	border-radius: var(--radius);
}

.bebook-promo-cover .wp-block-cover__background {
	background: linear-gradient(180deg, rgba(0, 0, 0, .02) 28%, rgba(0, 0, 0, .7));
	background-color: transparent !important;
	opacity: 1;
}

.bebook-promo-cover .wp-block-cover__inner-container {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-direction: column;
	height: 100%;
	padding: clamp(22px, 3vw, 38px);
}

.bebook-promo-cover h2 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.bebook-promo-eyebrow {
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.bebook-promo-cover .is-style-outline .wp-block-button__link {
	border-color: #fff;
	color: #fff;
}

.bebook-services {
	padding-block: 34px;
}

.bebook-services .wp-block-columns {
	margin-bottom: 0;
}

.bebook-services .wp-block-column {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bebook-service-item {
	gap: 18px;
}

.bebook-service-item figure,
.bebook-service-item p {
	margin: 0;
}

.bebook-service-item img {
	border-radius: 50%;
}

.bebook-service-item p {
	max-width: 190px;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.promo-card {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	border-radius: var(--radius);
	color: #fff;
	background: #222;
}

.promo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.promo-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .72));
}

.promo-card > span {
	position: absolute;
	z-index: 1;
	right: 24px;
	bottom: 25px;
	left: 24px;
	display: grid;
}

.promo-card small {
	margin-bottom: 5px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.promo-card strong {
	font-size: clamp(1.45rem, 2.5vw, 2.35rem);
	line-height: 1.08;
}

.promo-card:hover {
	color: #fff;
}

.promo-card:hover img {
	transform: scale(1.025);
}

.feature-banner {
	position: relative;
	min-height: clamp(390px, 40vw, 610px);
	overflow: hidden;
	color: #fff;
	background: #111;
}

.feature-banner > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-banner::after {
	position: absolute;
	inset: 0;
	content: "";
	background: rgba(0, 0, 0, .18);
}

.feature-banner-content {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: inherit;
	place-content: center;
	padding: 40px 20px;
	text-align: center;
}

.feature-banner-content h2 {
	margin-bottom: 28px;
	color: #fff;
	font-size: clamp(2.8rem, 7vw, 6.5rem);
	text-shadow: 0 3px 18px rgba(0, 0, 0, .4);
	text-transform: uppercase;
}

.feature-banner-content .eyebrow {
	color: #fff;
}

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

.split-copy {
	max-width: 620px;
}

.split-copy h2 {
	color: var(--brand);
}

.brand-mark {
	width: 72px;
	margin-bottom: 24px;
}

.split-media {
	display: grid;
	place-items: center;
}

.split-media img {
	width: min(100%, 480px);
	padding: clamp(24px, 5vw, 64px);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow);
}

.trust-bar {
	padding-block: 34px;
	color: #fff;
	background: var(--brand);
}

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

.trust-grid > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
}

.trust-grid img {
	width: 68px;
	height: 68px;
	border-radius: 50%;
}

.trust-grid strong {
	max-width: 180px;
	font-size: 13px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.newsletter-cta {
	padding-block: clamp(50px, 7vw, 90px);
	background: var(--surface-soft);
}

.newsletter-cta h2 {
	margin-bottom: 0;
	color: var(--brand);
}

.site-footer {
	padding-top: 68px;
	color: #fff;
	background: var(--brand);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr) 1.25fr;
	gap: clamp(28px, 4vw, 64px);
	padding-bottom: 56px;
}

.footer-logo {
	width: 196px;
	margin-bottom: 24px;
}

.footer-title {
	margin-bottom: 16px;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
}

.site-footer address {
	font-style: normal;
}

.site-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

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

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

.footer-bottom {
	padding-block: 24px;
	border-top: 1px solid rgba(255, 255, 255, .5);
	font-size: 12px;
}

.footer-bottom p {
	margin-bottom: 0;
}

.prose,
.page-content {
	max-width: 900px;
}

.page-content-block-home {
	width: min(calc(100% - 40px), var(--container));
	max-width: var(--container);
	padding: 0;
}

.page-content-block-home > article {
	width: 100%;
}

/*
 * Gutenberg's alignfull class does not escape the custom page container on
 * its own. Let every top-level full-width homepage block reach the viewport;
 * constrained/alignwide children keep the readable 1280px content width.
 */
.page-content-block-home > .visual-homepage > .alignfull {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.page-content-block-home > article > h1 {
	max-width: var(--container);
	margin-inline: auto;
	margin-bottom: clamp(32px, 5vw, 64px);
}

.page-content-block-home .product-shelf.alignfull {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.page-content-block-home .product-shelf.alignwide {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
}

.prose > article > h1,
.page-content > article > h1,
.archive-header h1 {
	color: var(--brand);
}

.prose img {
	margin-block: 32px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.post-card {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.post-card h2 {
	margin-top: 20px;
	font-size: 1.35rem;
}

.empty-state {
	max-width: 720px;
	text-align: center;
}

.woocommerce-main {
	min-height: 60vh;
}

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

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product div.images img {
	border-radius: var(--radius);
}

.woocommerce div.product .product_title {
	color: var(--ink);
	font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.bebook-product-author {
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 1.05rem;
}

.bebook-product-author a,
.bebook-product-editorial a,
.bebook-product-details a {
	color: var(--brand);
}

.bebook-product-editorial {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 32px;
	margin: 18px 0;
	font-size: 14px;
}

.bebook-product-information {
	clear: both;
	width: 100vw;
	margin-top: clamp(48px, 7vw, 88px);
	margin-left: calc(50% - 50vw);
	padding-block: clamp(48px, 6vw, 76px);
	color: #fff;
	background: var(--brand);
}

.bebook-product-information-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	gap: clamp(40px, 7vw, 96px);
	align-items: start;
}

.bebook-product-information h2 {
	margin-bottom: 24px;
	font-size: clamp(1.6rem, 2.7vw, 2.35rem);
}

.bebook-product-description > :last-child {
	margin-bottom: 0;
}

.bebook-product-details {
	padding: clamp(24px, 3.5vw, 42px);
	color: var(--ink);
	background: #fff;
	box-shadow: 12px 12px 0 rgba(159, 39, 48, .5);
}

.bebook-product-details h2 {
	margin-bottom: 20px;
}

.bebook-product-details dl {
	margin: 0;
}

.bebook-product-details dl > div {
	display: grid;
	grid-template-columns: minmax(110px, .42fr) minmax(0, 1fr);
	gap: 16px;
	padding-block: 8px;
	border-bottom: 1px solid var(--line);
}

.bebook-product-details dl > div:last-child {
	border-bottom: 0;
}

.bebook-product-details dt {
	font-weight: 700;
}

.bebook-product-details dd {
	margin: 0;
}

.woocommerce .related.products {
	clear: both;
	padding-block: clamp(56px, 7vw, 88px);
}

.woocommerce .related.products > h2 {
	margin-bottom: 36px;
	color: var(--brand);
	text-align: center;
	font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.woocommerce .related.products ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 980px;
	margin-inline: auto;
}

.visual-homepage > .wp-block-group,
.visual-homepage > .wp-block-columns,
.visual-homepage > .wp-block-cover {
	margin-block-start: 0;
}

.bebook-visual-hero .wp-block-columns,
.bebook-visual-hero .wp-block-column {
	margin-bottom: 0;
}

.bebook-pattern-cover {
	overflow: hidden;
}

.bebook-pattern-cover .wp-block-cover__inner-container {
	width: min(calc(100% - 48px), 720px);
}

.bebook-pattern-cover h1,
.bebook-pattern-cover h2 {
	max-width: 680px;
	text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--brand);
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--brand);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--brand);
}

.page-content .woocommerce {
	width: 100%;
}

.page-content:has(.woocommerce-cart-form),
.page-content:has(.woocommerce-MyAccount-navigation),
.page-content:has(.woocommerce-checkout),
.page-content:has(.wishlist_table) {
	max-width: var(--container);
}

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 80px);
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none;
}

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

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

.woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid var(--line);
}

.woocommerce-MyAccount-navigation a {
	display: block;
	padding: 12px 16px;
	font-weight: 600;
}

.woocommerce-MyAccount-navigation .is-active a {
	color: #fff;
	background: var(--brand);
}

.woocommerce table.shop_table,
.wishlist_table {
	border-color: var(--line);
	border-radius: var(--radius);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 14px;
}

@media (max-width: 1100px) {
	.header-main-inner {
		min-height: 90px;
	}

	.site-logo {
		flex-basis: 190px;
	}

	.header-search {
		max-width: 460px;
	}

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

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

	.product-shelf.woocommerce ul.products {
		grid-template-columns: repeat(var(--bebook-shelf-columns-tablet, 4), minmax(0, 1fr));
		gap: var(--bebook-shelf-gap-tablet, 20px);
	}

	.product-shelf.section {
		padding-block: var(--bebook-shelf-space-tablet, 56px);
	}

	.product-shelf .eyebrow {
		font-size: var(--bebook-shelf-eyebrow-size-tablet, 13px);
	}

	.product-shelf .shelf-heading h2 {
		font-size: var(--bebook-shelf-title-size-tablet, 34px);
	}

	.product-shelf.woocommerce ul.products li.product .button {
		min-height: var(--bebook-shelf-button-height-tablet, 46px);
		padding: var(--bebook-shelf-button-padding-tablet, 10px 16px);
		font-size: var(--bebook-shelf-button-font-size-tablet, 14px);
	}

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

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

	.promo-grid-two .promo-card-wide {
		grid-column: auto;
	}

	.promo-card-wide {
		grid-column: 1 / -1;
	}
}

@media (max-width: 960px) {
	.topbar-social,
	.category-nav,
	.header-search,
	.shipping-strip {
		display: none;
	}

	.topbar-inner {
		justify-content: center;
	}

	.header-main {
		box-shadow: 0 8px 24px rgba(29, 29, 29, .06);
	}

	.header-main-inner {
		display: grid;
		grid-template-columns: 48px 1fr auto;
		min-height: 82px;
	}

	.menu-toggle {
		z-index: 70;
		display: inline-grid;
	}

	.site-logo {
		justify-self: center;
	}

	.site-logo img {
		max-height: 62px;
	}

	.header-actions .header-action:not(.cart-link) {
		display: none;
	}

	.header-action.cart-link {
		display: grid;
		grid-template-columns: 28px;
	}

	.header-action.cart-link > span:not(.header-action-count) {
		display: none;
	}

	.hero-grid {
		grid-template-columns: 1fr 1fr;
	}

	.hero-card {
		min-height: 460px;
	}

	.section-heading,
	.split-layout {
		grid-template-columns: 1fr;
	}

	.shelf-heading {
		align-items: flex-start;
	}

	.split-copy {
		max-width: none;
	}

	.split-media {
		grid-row: 1;
	}

	.newsletter-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

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

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

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

	.bebook-product-information-grid {
		grid-template-columns: 1fr;
	}

	.bebook-visual-hero .wp-block-columns {
		flex-wrap: wrap !important;
	}

	.bebook-visual-hero .wp-block-column {
		flex-basis: 100% !important;
	}
}

@media (max-width: 700px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.topbar-links {
		gap: 16px;
		font-size: 11px;
	}

	.header-main-inner {
		grid-template-columns: 44px 1fr 44px;
		gap: 8px;
	}

	.site-logo {
		flex-basis: auto;
	}

	.site-logo img {
		max-width: 180px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.bebook-home-slider {
		min-height: 470px;
	}

	.bebook-home-slider .wp-block-cover__inner-container,
	.bebook-home-slider .hero-overlay {
		width: min(calc(100% - 48px), var(--container));
	}

	.bebook-home-slider .wp-block-cover__image-background,
	.bebook-home-slider .hero-card img {
		object-position: center;
	}

	.bebook-slider-controls {
		right: 20px;
		bottom: 18px;
	}

	.bebook-slider-arrow {
		width: 38px;
		height: 38px;
	}

	.hero-card {
		min-height: 390px;
	}

	.hero-card:not(.hero-card-main) {
		min-height: 340px;
	}

	.hero-overlay {
		inset: auto 24px 32px;
	}

	.bebook-home-slider .hero-overlay {
		inset: auto auto 72px 50%;
	}

	.hero-overlay strong,
	.hero-card:not(.hero-card-main) .hero-overlay strong {
		font-size: 2.1rem;
	}

	.section {
		padding-block: 64px;
	}

	.section-heading {
		gap: 16px;
		margin-bottom: 36px;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 14px;
	}

	.product-shelf.woocommerce ul.products {
		grid-template-columns: repeat(var(--bebook-shelf-columns-mobile, 2), minmax(0, 1fr));
		gap: var(--bebook-shelf-gap-mobile, 14px);
	}

	.page-content-block-home {
		width: min(calc(100% - 28px), var(--container));
	}

	.product-shelf.section {
		padding-block: var(--bebook-shelf-space-mobile, 40px);
	}

	.product-shelf .eyebrow {
		font-size: var(--bebook-shelf-eyebrow-size-mobile, 12px);
	}

	.product-shelf .shelf-heading h2 {
		font-size: var(--bebook-shelf-title-size-mobile, 28px);
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 4.05em;
		font-size: 13px;
		line-height: 1.35;
	}

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

	.woocommerce ul.products li.product .button,
	.product-shelf-button-large ul.products li.product .button {
		min-height: 50px;
		padding: 9px 8px;
		font-size: 13px;
	}

	.product-shelf.woocommerce ul.products li.product .button {
		min-height: var(--bebook-shelf-button-height-mobile, 40px);
		padding: var(--bebook-shelf-button-padding-mobile, 7px 12px);
		font-size: var(--bebook-shelf-button-font-size-mobile, 12px);
	}

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

	.bebook-product-editorial {
		grid-template-columns: 1fr;
	}

	.bebook-product-information {
		width: 100vw;
	}

	.bebook-product-details {
		padding: 24px 20px;
	}

	.bebook-product-details dl > div {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.shelf-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 30px;
	}

	.promo-grid {
		grid-template-columns: 1fr;
	}

	.bebook-promo-pair .wp-block-columns {
		gap: 16px;
	}

	.bebook-promo-cover {
		min-height: 330px !important;
	}

	.promo-card-wide {
		grid-column: auto;
	}

	.promo-card {
		min-height: 320px;
	}

	.feature-banner {
		min-height: 420px;
	}

	.trust-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.bebook-services .wp-block-columns {
		gap: 22px;
	}

	.bebook-services .wp-block-column {
		justify-content: flex-start;
	}

	.bebook-service-item {
		width: min(100%, 290px);
		margin-inline: auto;
	}

	.trust-grid > div {
		justify-content: flex-start;
		max-width: 280px;
		margin-inline: auto;
		text-align: left;
	}

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

	.footer-categories {
		display: none;
	}

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

	.mobile-secondary-nav {
		grid-template-columns: 1fr;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		padding: 10px 12px;
	}
}

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