/* ==========================================================================
   Books Girl Store — theme.css
   ========================================================================== */

:root {
	--color-background: #f7f3ec;
	--color-foreground: #291b1e;
	--color-primary: #593339;
	--color-primary-foreground: #f7f3ec;
	--color-secondary: #eee6ea;
	--color-accent: #f570cc;
	--color-accent-foreground: #291b1e;
	--color-muted-foreground: #59504f;
	--color-border: #ded0bd;
	--color-button-text: #f7f3ec;

	--font-display: 'DM Serif Display', Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;

	--radius: 0;
	--btn-radius: 0;
	--btn-height: 3rem;
	--btn-padding: 0 2rem;
	--btn-font-size: 0.7rem;
	--btn-font-weight: 700;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;
	--logo-height: 88px;
	--header-height: 112px;
	--announcement-height: 0px;
	--theme-top-offset: calc(var(--announcement-height, 0px) + var(--header-height, 112px));
	--checkout-gap: 2rem;
	--card-radius: 0;
	--section-padding: 2rem;
	--shadow-elevated: 0 14px 40px -12px rgba(41, 27, 30, 0.22);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ==========================================================================
   Base / Reset
   ========================================================================== */

* { box-sizing: border-box; }

html, body {
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 128px 128px;
}

body.mobile-menu-open,
body.search-dialog-open,
body.contact-modal-open {
	overflow: hidden;
}

.font-condensed {
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
	letter-spacing: 0.005em;
}

p { margin: 0; }
ul { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; }

img:not(.cover-img):not(.theme-product-card__img):not(.hero-bg-img):not(.theme-product-main-image__img):not(.wc-block-components-order-summary-item__image img):not(.wc-block-cart-items__image img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__img,
.theme-product-thumb__img,
.featured-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide,
.container-editorial {
	width: 90%;
	margin: 0 auto;
	padding-inline: max(1rem, 5%);
}
.container-wide {
	max-width: 80rem;
}
.container-editorial {
	max-width: 64rem;
}
@media (min-width: 1024px) {
	.container-wide, .container-editorial { padding-inline: 2.5rem; }
}

.label-eyebrow {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-muted-foreground);
	display: block;
	font-family: var(--font-body);
}

.section-heading {
	font-family: var(--font-display);
	font-size: 2.25rem;
	line-height: 1.05;
	letter-spacing: -0.01em;
}
@media (min-width: 768px) { .section-heading { font-size: 2.75rem; } }

/* ==========================================================================
   Reveal animations (Section 2.1)
   ========================================================================== */

.reveal-item, .reveal-fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-item.is-visible, .reveal-fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}
body.is-customizer .reveal-item,
body.is-customizer .reveal-fade-up {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .reveal-fade-up { transition: none; opacity: 1; transform: none; }
}

.btn-technical {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 3rem;
	padding: 0 2rem;
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	border: 1px solid var(--color-foreground);
	transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-technical:hover { background: transparent; color: var(--color-foreground); }

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes slideUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
	animation: fadeIn 0.8s var(--transition-smooth) forwards;
}
.animate-slide-up {
	animation: slideUp 0.8s var(--transition-smooth) forwards;
}

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */

.theme-scroll-progress {
	position: fixed;
	top: var(--announcement-height, 0px);
	left: 0;
	right: 0;
	height: 2px;
	z-index: 70;
	pointer-events: none;
	transform: scaleX(0);
	transform-origin: 0% 50%;
	background: var(--color-primary);
	transition: background-color 0.3s ease;
}
.theme-scroll-progress.is-on-announcement {
	background: var(--color-primary-foreground);
}

/* ==========================================================================
   Announcement bar + Header
   ========================================================================== */

.theme-announcement {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 60;
	background: var(--color-foreground);
	color: var(--color-background);
}
.theme-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2rem;
	padding: 0.4rem 2rem;
	position: relative;
}
.theme-announcement__text {
	font-size: 10px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	font-family: var(--font-body);
}
.theme-announcement__close {
	position: absolute;
	right: 0.5rem;
	padding: 0.25rem;
	color: currentColor;
}
.theme-announcement__close:hover { opacity: 0.6; }

.site-header {
	position: fixed;
	top: var(--announcement-height, 0px);
	left: 0; right: 0;
	z-index: 50;
	width: 100%;
	background: rgba(247, 243, 236, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.3s ease, border-color 0.3s ease, top 0.2s ease;
}

.site-header__nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 6rem;
}
@media (min-width: 1024px) { .site-header__nav { height: 7rem; } }

.site-header__mobile-toggle { display: flex; align-items: center; flex: 1; }
@media (min-width: 1024px) { .site-header__mobile-toggle { display: none; } }

.theme-hamburger {
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.theme-hamburger__line {
	display: block;
	height: 2.5px;
	width: 20px;
	background: var(--color-foreground);
	border-radius: 1px;
	transition: all 0.3s ease-out;
	transform-origin: center;
}
.theme-hamburger__line--1 { width: 20px; }
.theme-hamburger__line--3 { width: 14px; }
.theme-hamburger[aria-expanded="true"] .theme-hamburger__line--1 {
	width: 28px;
	transform: translateY(7.5px) rotate(45deg);
}
.theme-hamburger[aria-expanded="true"] .theme-hamburger__line--2 {
	opacity: 0;
	transform: scaleX(0);
}
.theme-hamburger[aria-expanded="true"] .theme-hamburger__line--3 {
	width: 28px;
	transform: translateY(-7.5px) rotate(-45deg);
}
.theme-hamburger:hover .theme-hamburger__line--3 {
	width: 24px;
}
.theme-hamburger[aria-expanded="true"]:hover .theme-hamburger__line--3 {
	width: 28px;
}

.site-header__logo-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 1024px) {
	.site-header__logo-link { position: static; transform: none; }
}
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; align-self: center; object-fit: contain; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; line-height: var(--logo-height); display: block; }
.site-header__brand-name { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }

.site-header__nav-center { display: none; align-items: center; gap: 2rem; flex: 1; justify-content: center; align-self: stretch; }
@media (min-width: 1024px) { .site-header__nav-center { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; height: 100%; }
.theme-nav-list > li { display: flex; align-items: center; margin: 0; padding: 0; }
.theme-nav-list > li > a { display: inline-flex; align-items: center; line-height: 1; padding: 0; }
.nav-link {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	transition: color 0.3s ease;
	line-height: 1;
}
.nav-link:hover { color: var(--color-primary); }

.site-header__icons { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: flex-end; }
@media (min-width: 1024px) { .site-header__icons { flex: none; } }

.theme-icon-btn { position: relative; padding: 0.5rem; transition: opacity 0.3s ease; }
.theme-icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	width: 1.25rem; height: 1.25rem;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 600;
	font-family: var(--font-body);
	background: var(--color-accent);
	color: var(--color-accent-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu */
.theme-mobile-menu {
	position: fixed; inset: 0; z-index: 70;
	visibility: hidden;
	pointer-events: none;
}
.theme-mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.theme-mobile-menu::before {
	content: '';
	position: absolute; inset: 0;
	background: rgba(41, 27, 30, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.theme-mobile-menu.is-open::before { opacity: 1; }
.theme-mobile-menu__panel {
	position: relative;
	width: 88vw; max-width: 24rem; height: 100%;
	background: var(--color-background);
	border-right: 1px solid var(--color-border);
	display: flex; flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.4s var(--transition-smooth);
}
.theme-mobile-menu.is-open .theme-mobile-menu__panel { transform: translateX(0); }
.theme-mobile-menu__header {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 1.25rem; height: 6rem;
	border-bottom: 1px solid rgba(222, 208, 189, 0.6);
	flex-shrink: 0;
}
.theme-mobile-menu__logo img { height: 5rem; width: auto; }
.theme-mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-mobile-nav-list { list-style: none; }
.theme-mobile-nav-list li { border-bottom: 1px solid rgba(222, 208, 189, 0.4); }
.theme-mobile-nav-list a {
	display: block; padding: 1rem 0.75rem;
	font-family: var(--font-display); font-size: 1.125rem;
}
.theme-mobile-menu__footer {
	border-top: 1px solid rgba(222, 208, 189, 0.6);
	padding: 1rem 0.75rem;
	display: grid; gap: 0.5rem;
	flex-shrink: 0;
}
.theme-mobile-menu__contact-btn {
	display: flex; align-items: center; justify-content: center;
	padding: 0.75rem 0; border: 1px solid var(--color-border);
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
}
.theme-mobile-menu__cart-btn {
	display: flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.75rem 0;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
}

/* Search dialog */
.theme-search-dialog { position: fixed; inset: 0; z-index: 80; visibility: hidden; pointer-events: none; }
.theme-search-dialog.is-open { visibility: visible; pointer-events: auto; animation: fadeIn 0.8s var(--transition-smooth) forwards; }
.theme-search-dialog__overlay { position: absolute; inset: 0; background: rgba(41, 27, 30, 0.4); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.theme-search-dialog.is-open .theme-search-dialog__overlay { opacity: 1; }
.theme-search-dialog__panel {
	position: relative; background: var(--color-background);
	width: 100%; max-height: 92vh; overflow-y: auto;
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
	transform: translateY(-16px); opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.theme-search-dialog.is-open .theme-search-dialog__panel { transform: translateY(0); opacity: 1; }
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.5rem; opacity: 0.7; z-index: 5; }
.theme-search-dialog__close:hover { opacity: 1; }
.theme-search-dialog__grid { display: grid; gap: 2.5rem; padding: 2.5rem 0; }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-dialog__categories h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__categories ul { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-cat-btn { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.theme-search-cat-btn:hover { color: var(--color-primary); }
.theme-search-dialog__input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid rgba(41,27,30,0.3); padding-bottom: 0.75rem; }
.theme-search-dialog__results-heading { font-family: var(--font-display); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(4, 1fr); } }
#theme-search-input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; }
.theme-search-result-item { display: block; text-align: left; }
.theme-search-result-item__img { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); position: relative; }
.theme-search-result-item__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-search-result-item__title { display: block; margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
.theme-search-result-item__price { display: block; margin-top: 0.25rem; font-size: 12px; opacity: 0.7; }
.theme-search-empty { font-size: 14px; color: var(--color-muted-foreground); }

/* Contact modal */
.theme-contact-modal { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.theme-contact-modal.is-open { visibility: visible; pointer-events: auto; }
.theme-contact-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); opacity: 0; transition: opacity 0.2s ease; }
.theme-contact-modal.is-open .theme-contact-modal__overlay { opacity: 1; }
.theme-contact-modal__panel {
	position: relative; z-index: 1;
	width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border: 1px solid var(--color-border);
	padding: 1.5rem;
	transform: scale(0.95); opacity: 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.theme-contact-modal.is-open .theme-contact-modal__panel { transform: scale(1); opacity: 1; }
.theme-contact-modal__close { position: absolute; right: 1rem; top: 1rem; opacity: 0.7; }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__eyebrow { margin-bottom: 0.5rem; }
.theme-contact-modal__title { font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.25rem; }
.theme-contact-modal__desc { font-size: 15px; line-height: 1.6; color: var(--color-muted-foreground); }
.theme-contact-modal__meta { display: flex; flex-direction: column; gap: 0.5rem; font-size: 14px; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.75rem; }
.theme-contact-modal__meta-link { display: flex; align-items: center; gap: 0.5rem; }
.theme-contact-modal__meta-link:hover { color: var(--color-foreground); }
.theme-contact-form { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field label { margin-bottom: 0.375rem; }
.theme-contact-form input, .theme-contact-form textarea {
	width: 100%; padding: 0.625rem 0.75rem;
	background: var(--color-background); border: 1px solid var(--color-border);
	font-size: 14px; resize: none;
}
.theme-contact-form input:focus, .theme-contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__submit {
	display: inline-flex; align-items: center; gap: 0.5rem;
	height: 2.75rem; padding: 0 1.5rem;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 11px; letter-spacing: 0.24em; text-transform: none;
}
.theme-contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.theme-contact-success { text-align: center; padding: 2rem 0; opacity: 0; transform: scale(0.95); transition: opacity 0.4s ease, transform 0.4s ease; }
.theme-contact-success.is-visible { opacity: 1; transform: scale(1); }
.theme-contact-success__icon {
	width: 3.5rem; height: 3.5rem; border-radius: 50%;
	background: var(--color-primary); color: var(--color-primary-foreground);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1rem;
	transform: scale(0);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.theme-contact-success.is-visible .theme-contact-success__icon { transform: scale(1); }
.theme-contact-form.is-exiting { opacity: 0; transition: opacity 0.2s ease; }
.theme-contact-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-success p { font-size: 14px; color: var(--color-muted-foreground); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-section { position: relative; width: 100%; height: 100vh; overflow: hidden; }
@supports (height: 100svh) { .hero-section { height: 100svh; } }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__gradient-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0.3)); }
.hero-section__gradient-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent); }
.hero-section__content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.hero-section__container { width: 100%; padding-bottom: 6rem; }
@media (min-width: 768px) { .hero-section__container { padding-bottom: 7rem; } }
.hero-section__content { max-width: 48rem; }
.hero-section__eyebrow-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero-section__rule { display: block; width: 2.5rem; height: 1px; background: rgba(245, 112, 204, 0.6); }
.hero-section__eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; font-family: var(--font-body); color: rgba(247,243,236,0.9); }
.hero-section__title {
	font-family: var(--font-display);
	color: var(--color-background);
	font-size: 3rem; line-height: 0.95; letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.hero-section__title em { font-style: italic; font-weight: 300; color: #fce7f3; }
@media (min-width: 768px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 6rem; } }
.hero-section__subtitle {
	color: rgba(247,243,236,0.9); font-size: 14px; font-weight: 300;
	letter-spacing: 0.01em; line-height: 1.6; max-width: 32rem; margin-bottom: 2.5rem;
	text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .hero-section__subtitle { font-size: 16px; } }
.hero-section__cta {
	display: inline-flex; align-items: center; justify-content: center;
	width: 260px; height: 3rem;
	background: var(--color-background); color: var(--color-foreground);
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
	font-family: var(--font-body);
	transition: background-color 0.3s ease, color 0.3s ease;
}
.hero-section__cta:hover { background: var(--color-accent); color: var(--color-accent-foreground); }

/* ==========================================================================
   Caption strip
   ========================================================================== */

.caption-strip { border-bottom: 1px solid var(--color-border); }
.caption-strip__inner { padding: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .caption-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.caption-strip__title { font-size: 1.25rem; line-height: 1.35; }
@media (min-width: 768px) { .caption-strip__title { font-size: 1.5rem; } }
.caption-strip__cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
.caption-strip__cta:hover { color: var(--color-primary); }

/* ==========================================================================
   Categories section
   ========================================================================== */

.categories-section__inner { padding: 4rem 0 3rem; }
.categories-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.categories-section__clear { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); }
.categories-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 768px) { .categories-section__grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (min-width: 1024px) { .categories-section__grid { grid-template-columns: repeat(6, 1fr); } }
.category-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); text-align: left; display: block; }
.category-tile__img { transition: transform 1.2s ease-out; }
.category-tile:hover .category-tile__img { transform: scale(1.05); }
.category-tile__gradient { position: absolute; inset-inline: 0; bottom: 0; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); pointer-events: none; }
.category-tile__label { position: absolute; bottom: 1rem; left: 1rem; font-weight: 700; text-transform: uppercase; color: var(--color-background); font-size: 13px; letter-spacing: 0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
@media (min-width: 1024px) { .category-tile__label { font-size: 16px; } }
.category-tile__arrow {
	position: absolute; bottom: 1rem; right: 1rem;
	width: 2rem; height: 2rem; border-radius: 50%;
	background: var(--color-background); color: var(--color-foreground);
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.3s ease;
}
.category-tile:hover .category-tile__arrow { transform: translateX(4px); }
.category-tile.is-active { box-shadow: inset 0 0 0 2px var(--color-accent); }

/* ==========================================================================
   Promo banner
   ========================================================================== */

.promo-banner__media { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .promo-banner__media { height: 70vh; } }
.promo-banner__gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.15), transparent); }
.promo-banner__content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.promo-banner__container { padding-bottom: 3rem; }
@media (min-width: 768px) { .promo-banner__container { padding-bottom: 4rem; } }
.promo-banner__content { max-width: 36rem; }
.promo-banner__eyebrow { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.9); margin-bottom: 1rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.promo-banner__title { font-family: var(--font-display); color: var(--color-background); font-size: 1.875rem; line-height: 1.05; margin-bottom: 2rem; text-shadow: 0 2px 18px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .promo-banner__title { font-size: 3rem; } }
@media (min-width: 1024px) { .promo-banner__title { font-size: 3.75rem; } }
.promo-banner__cta {
	display: inline-flex; align-items: center; justify-content: center;
	width: 220px; height: 3rem;
	background: var(--color-background); color: var(--color-foreground);
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.promo-banner__cta:hover { background: var(--color-foreground); color: var(--color-background); }

/* ==========================================================================
   Featured section
   ========================================================================== */

.featured-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0 6rem; }
.featured-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
.featured-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .featured-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.featured-card { display: block; }
.featured-card__image-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--color-background); }
.featured-card__img { transition: transform 1.2s ease-out; }
.featured-card:hover .featured-card__img { transform: scale(1.03); }
.featured-card__title { margin-top: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; transition: color 0.3s ease; }
.featured-card:hover .featured-card__title { color: var(--color-primary); }
.featured-card__link { margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.3s ease; }
.featured-card:hover .featured-card__link { color: var(--color-primary); }

/* ==========================================================================
   Shop section
   ========================================================================== */

.shop-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
.shop-section__head { padding-top: 5rem; padding-bottom: 1rem; text-align: center; }
@media (min-width: 1024px) { .shop-section__head { padding-top: 7rem; } }
.shop-heading { font-size: 2.25rem; line-height: 1.05; margin-top: 0.75rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }
.shop-section__body { padding-bottom: 5rem; }
@media (min-width: 1024px) { .shop-section__body { padding-bottom: 7rem; } }

.shop-filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .shop-filters { flex-direction: row; gap: 1rem; } }
.shop-filter-dropdown { position: relative; flex: 1; max-width: 100%; }
@media (min-width: 640px) { .shop-filter-dropdown { max-width: 20rem; } }
.shop-filter-dropdown__toggle {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 0.75rem 1rem; border: 1px solid var(--color-border); background: var(--color-background);
	transition: border-color 0.3s ease;
}
.shop-filter-dropdown__toggle:hover { border-color: var(--color-primary); }
.shop-filter-dropdown__label-col { display: flex; flex-direction: column; align-items: flex-start; }
.shop-filter-dropdown__label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.5; }
.shop-filter-dropdown__value { font-size: 14px; margin-top: 0.125rem; }
.shop-filter-dropdown__toggle svg { transition: transform 0.2s ease; }
.shop-filter-dropdown.is-open .shop-filter-dropdown__toggle svg { transform: rotate(180deg); }
.shop-filter-dropdown__list {
	position: absolute; left: 0; right: 0; top: 100%; margin-top: 0.25rem; z-index: 30;
	background: var(--color-background); border: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated); max-height: 20rem; overflow-y: auto;
	list-style: none;
	display: none;
}
.shop-filter-dropdown.is-open .shop-filter-dropdown__list { display: block; animation: fadeIn 0.8s var(--transition-smooth) forwards; }
.shop-filter-dropdown__option {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 0.625rem 1rem; text-align: left; font-size: 14px;
}
.shop-filter-dropdown__option:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.shop-filter-dropdown__option.is-active { color: var(--color-accent); }
.shop-filter-dropdown__check { display: none; }
.shop-filter-dropdown__option.is-active .shop-filter-dropdown__check { display: block; }
.shop-filters__clear-all { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent); align-self: center; }
@media (min-width: 640px) { .shop-filters__clear-all { align-self: flex-end; padding-bottom: 0.75rem; } }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	gap: 0.5rem 0.5rem;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.75rem; } }

.theme-product-card-wrap { display: flex; }
.theme-product-card {
	position: relative;
	display: flex; flex-direction: column;
	width: 100%; height: 100%;
}
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .add_to_cart_button,
.theme-product-card .theme-product-card__badge { pointer-events: auto; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.03); }
.theme-product-card__img { transition: transform 0.7s ease; }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	padding: 0.25rem 0.625rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
	background: var(--color-foreground); color: var(--color-background);
}
.theme-product-card__info { padding-top: 1rem; padding-bottom: 0.25rem; flex: 1; }
.theme-product-card__title { font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; font-family: var(--font-body); transition: color 0.3s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.5rem; font-size: 14px; font-weight: 600; }
.theme-product-card__price .woocommerce-Price-amount { font-weight: 600; }

.shop-section__load-more-wrap { margin-top: 2.5rem; display: flex; justify-content: center; }
.shop-section__load-more {
	display: inline-flex; align-items: center; justify-content: center;
	height: 3rem; padding: 0 2rem;
	background: var(--color-accent); color: var(--color-background);
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700;
	transition: opacity 0.3s ease;
}
.shop-section__load-more:hover { opacity: 0.9; }
.shop-section__empty { padding: 5rem 0; text-align: center; border: 1px dashed var(--color-border); }
.shop-section__empty-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-section__empty-text { font-size: 14px; color: var(--color-muted-foreground); }

/* ==========================================================================
   Two-up banners
   ========================================================================== */

.two-up-banners { padding: 4rem 0 5rem; }
.two-up-banners__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) {
	.two-up-banners__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
	.two-up-banners__grid .two-up-banner:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 0.75rem);
		justify-self: center;
	}
}
.two-up-banner { position: relative; aspect-ratio: 4/5; overflow: hidden; }
@media (min-width: 768px) { .two-up-banner { aspect-ratio: 5/6; } }
.two-up-banner__img { transition: transform 1.2s ease-out; }
.two-up-banner:hover .two-up-banner__img { transform: scale(1.04); }
.two-up-banner__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.15), transparent); }
.two-up-banner__content { position: absolute; inset-inline: 0; bottom: 0; padding: 2rem 2.5rem; }
.two-up-banner__eyebrow { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.9); margin-bottom: 0.75rem; }
.two-up-banner__title { font-family: var(--font-display); color: var(--color-background); font-size: 1.5rem; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .two-up-banner__title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .two-up-banner__title { font-size: 2.25rem; } }
.two-up-banner__cta {
	display: inline-flex; align-items: center; justify-content: center;
	width: 200px; height: 2.75rem;
	background: var(--color-background); color: var(--color-foreground);
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.two-up-banner__cta:hover { background: var(--color-foreground); color: var(--color-background); }

/* ==========================================================================
   Unboxings
   ========================================================================== */

.unboxings-section { padding: 5rem 0 7rem; }
.unboxings-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.unboxings-section__desc { max-width: 24rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }
.unboxings-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .unboxings-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.unboxing-tile { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--color-secondary); display: block; width: 100%; text-align: left; }
@media (min-width: 768px) { .unboxing-tile { aspect-ratio: 4/5; } }
.unboxing-tile__img { transition: transform 1.2s ease; }
.unboxing-tile:hover .unboxing-tile__img { transform: scale(1.04); }
.unboxing-tile__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), rgba(0,0,0,0.1)); }
.unboxing-tile__play {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.unboxing-tile__play svg {
	width: 4rem; height: 4rem; border-radius: 50%; padding: 1.25rem;
	background: rgba(247,243,236,0.9); color: var(--color-foreground);
	transition: transform 0.3s ease;
}
.unboxing-tile:hover .unboxing-tile__play svg { transform: scale(1.1); }
.unboxing-tile__content { position: absolute; inset-inline: 0; bottom: 0; padding: 1.25rem 1.5rem; color: var(--color-background); }
.unboxing-tile__eyebrow { display: block; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.85); margin-bottom: 0.5rem; }
.unboxing-tile__title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .unboxing-tile__title { font-size: 1.5rem; } }
.unboxings-section__footer { margin-top: 2.5rem; text-align: center; }
.unboxings-section__link {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
	border-bottom: 1px solid var(--color-foreground); padding-bottom: 0.25rem;
	transition: color 0.3s ease, border-color 0.3s ease;
}
.unboxings-section__link:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* ==========================================================================
   About section
   ========================================================================== */

.about-section__grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.about-section__media { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .about-section__media { min-height: 100%; order: 1; } }
.about-section__content { display: flex; flex-direction: column; justify-content: center; padding: 5rem 2rem; order: 1; }
@media (min-width: 768px) { .about-section__content { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .about-section__content { padding: 5rem 5rem; order: 2; } }
.about-section .label-eyebrow { margin-bottom: 1.5rem; }
.about-section__title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .about-section__title { font-size: 3rem; } }
.about-section__text { display: flex; flex-direction: column; gap: 1rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; margin-bottom: 2.5rem; }
.about-section__quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.35; border-top: 1px solid var(--color-border); padding-top: 2rem; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }

/* ==========================================================================
   Brand / Our story / Founder / What We Make
   ========================================================================== */

.brand-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0 7rem; }
.brand-story {
	position: relative; width: 100%; min-height: 80vh; overflow: hidden;
	margin-top: -5rem; margin-bottom: 0;
	display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .brand-story { min-height: 90vh; } }
@media (min-width: 1024px) { .brand-story { margin-top: -7rem; } }
.brand-story__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand-story__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.brand-story__overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2), rgba(0,0,0,0.4)); }
.brand-story__container { position: relative; z-index: 1; width: 100%; }
.brand-story__content { max-width: 48rem; margin: 0 auto; text-align: center; padding: 4rem 1.5rem 6rem; }
@media (min-width: 768px) { .brand-story__content { padding: 6rem 1.5rem; } }
.brand-story__since { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.8); margin-bottom: 1.5rem; }
.brand-story__title { font-family: var(--font-display); color: var(--color-background); font-size: 2.25rem; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 2rem; text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .brand-story__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .brand-story__title { font-size: 4.5rem; } }
.brand-story__text { color: var(--color-background); font-size: 1rem; line-height: 1.8; text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
@media (min-width: 768px) { .brand-story__text { font-size: 1.125rem; } }

.brand-meaning { margin-bottom: 5rem; }
@media (min-width: 1024px) { .brand-meaning { margin-bottom: 7rem; } }
.brand-meaning__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .brand-meaning__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.brand-meaning__content { padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .brand-meaning__content { padding: 6rem 5rem; } }
.brand-meaning__title { font-family: var(--font-display); line-height: 0.95; letter-spacing: -0.01em; font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 2.5rem; }
.brand-meaning__text { display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 15px; line-height: 1.6; max-width: 36rem; }
.brand-meaning__quote { font-family: var(--font-display); font-size: 1.5rem; padding-top: 1rem; }
@media (min-width: 1024px) { .brand-meaning__quote { font-size: 1.875rem; } }
.brand-meaning__media { position: relative; min-height: 400px; }
@media (min-width: 1024px) { .brand-meaning__media { min-height: 700px; } }

.brand-palette { text-align: center; }
.brand-palette__head { margin-bottom: 1rem; }
.brand-palette__text { color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 15px; line-height: 1.6; max-width: 42rem; margin: 0 auto 2.5rem; }
.brand-palette__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .brand-palette__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.brand-palette__card { background: var(--color-background); padding: 1.5rem; border: 1px solid var(--color-border); text-align: center; }
.brand-palette__card-label { font-family: var(--font-display); font-size: 1.25rem; }
.brand-palette__card-sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.5rem; }

/* ==========================================================================
   FAQ + Contact
   ========================================================================== */

.resources-section { padding: 5rem 0; }
@media (min-width: 1024px) { .resources-section { padding: 7rem 0; } }
.faq-section { padding-top: 0; }
.faq-section__title { font-size: 3rem; letter-spacing: -0.01em; margin-bottom: 4rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1rem; }
@media (min-width: 768px) { .faq-section__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .faq-section__title { font-size: 4.5rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.faq-section__side-inner { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .faq-section__side-inner { position: sticky; top: 11rem; } }
.faq-section__side-eyebrow { color: var(--color-accent); }
.faq-section__side-title { font-size: 1.875rem; line-height: 1.1; }
@media (min-width: 768px) { .faq-section__side-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .faq-section__side-title { font-size: 3rem; } }
.faq-section__side-text { font-size: 1.125rem; line-height: 1.6; }
@media (min-width: 768px) { .faq-section__side-text { font-size: 1.25rem; } }
.faq-section__side-text--muted { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.faq-section__side-cta {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.75rem 2rem; border: 1px solid var(--color-foreground); border-radius: 999px;
	font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
	transition: background-color 0.3s ease, color 0.3s ease; align-self: flex-start;
}
.faq-section__side-cta:hover { background: var(--color-foreground); color: var(--color-background); }
.faq-section__list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item__question span:first-child { font-size: 15px; line-height: 1.4; padding-right: 1rem; transition: color 0.3s ease; }
.faq-item__question:hover span:first-child { color: var(--color-accent); }
.faq-item__icon { flex-shrink: 0; margin-top: 0.125rem; opacity: 0.7; transition: color 0.3s ease; }
.faq-item__question:hover .faq-item__icon { color: var(--color-accent); }
.faq-item__icon-minus { display: none; }
.faq-item__question[aria-expanded="true"] .faq-item__icon-plus { display: none; }
.faq-item__question[aria-expanded="true"] .faq-item__icon-minus { display: block; }
.faq-item__answer { overflow: hidden; }
.faq-item[data-state="closed"] .faq-item__answer { height: 0; opacity: 0; }
.faq-item[data-state="open"] .faq-item__answer { height: auto; opacity: 1; }
.faq-item__answer p { padding-bottom: 1.5rem; padding-right: 3rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }

.contact-section { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; border-radius: 2px; }
@media (min-width: 1024px) { .contact-section { margin-bottom: -7rem; } }
.contact-section__bg { position: absolute; inset: 0; }
.contact-section__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.contact-section__inner { position: relative; text-align: center; padding: 6rem 0 8rem; }
@media (min-width: 768px) { .contact-section__inner { padding: 8rem 0; } }
.contact-section .label-eyebrow { color: rgba(247,243,236,0.8); margin-bottom: 1.25rem; }
.contact-section__title { font-family: var(--font-display); color: var(--color-background); font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .contact-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__title { font-size: 3.75rem; } }
.contact-section__text { max-width: 32rem; margin: 0 auto 2.5rem; color: rgba(247,243,236,0.85); font-size: 15px; line-height: 1.6; }
.contact-section__actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .contact-section__actions { flex-direction: row; } }
.contact-section__btn {
	display: inline-flex; align-items: center; justify-content: center;
	height: 3.5rem; min-width: 220px; padding: 0 2rem;
	font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
	border: 1px solid transparent; transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-section__btn--accent { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); }
.contact-section__btn--accent:hover { opacity: 0.9; }
.contact-section__btn--outline { background: var(--color-background); color: var(--color-foreground); border-color: var(--color-foreground); }
.contact-section__btn--outline:hover { background: var(--color-foreground); color: var(--color-background); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--color-foreground); color: var(--color-background); }
.site-footer__inner { padding: 4rem 0 5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.site-footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__logo-link { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__logo-link .site-logo-img { margin: -0.5rem 0; filter: brightness(0) invert(1); }
.site-footer__logo-img { height: 5rem; width: auto; filter: brightness(0) invert(1); }
.site-footer__brand-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.6); }
.site-footer__about { font-size: 14px; line-height: 1.6; color: rgba(247,243,236,0.7); }
.site-footer__nav h4, .site-footer__contact h4 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.6); margin-bottom: 1.25rem; }
.site-footer__nav { padding-left: 0; }
@media (min-width: 768px) { .site-footer__nav { padding-left: 2rem; } }
@media (min-width: 1024px) { .site-footer__nav { padding-left: 3rem; } }
.theme-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list a { font-size: 14px; color: rgba(247,243,236,0.8); transition: color 0.3s ease; }
.theme-footer-nav-list a:hover { color: var(--color-background); }
.site-footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.site-footer__contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 14px; color: rgba(247,243,236,0.8); }
.site-footer__contact-list li a:hover { color: var(--color-background); }
.site-footer__social { display: flex; align-items: center; gap: 1rem; }
.site-footer__social-link { color: rgba(247,243,236,0.7); transition: color 0.3s ease; }
.site-footer__social-link:hover { color: var(--color-background); }
.site-footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,243,236,0.15); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__credit { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: rgba(247,243,236,0.55); }
.site-footer__credit a:hover { color: var(--color-background); }

/* ==========================================================================
   Cart drawer + overlay
   ========================================================================== */

#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 95;
	background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; animation: fadeIn 0.8s var(--transition-smooth) forwards; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 32rem;
	background: var(--color-background); z-index: 96;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.4s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.25rem; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); }
.theme-cart-drawer__continue { border: 1px solid var(--color-border); padding: 0.75rem 1.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
.theme-cart-item__image { width: 6rem; height: 8rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; position: relative; }
.theme-cart-item__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__name { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; transition: opacity 0.3s ease; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.375rem; font-style: italic; }
.theme-cart-item__price { font-size: 14px; margin-top: 0.375rem; }
.theme-cart-item__controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-item__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-item__qty-btn { padding: 0.375rem 0.625rem; transition: background-color 0.3s ease; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty-value { padding: 0 0.75rem; font-size: 14px; min-width: 28px; text-align: center; }
.theme-cart-item__remove { font-size: 12px; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__cross-sell { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__cross-sell-title { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 1rem; }
.theme-cart-drawer__cross-sell-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.theme-cart-cross-sell-item { text-align: left; }
.theme-cart-cross-sell-item__image { display: block; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; margin-bottom: 0.5rem; position: relative; }
.theme-cart-cross-sell-item__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.theme-cart-cross-sell-item:hover .theme-cart-cross-sell-item__image img { transform: scale(1.05); }
.theme-cart-cross-sell-item__name { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.3; }
.theme-cart-cross-sell-item__price { display: block; font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 12px; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 3rem;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
	transition: opacity 0.3s ease;
}
.theme-cart-drawer__checkout:hover { opacity: 0.9; }

/* ==========================================================================
   WooCommerce: Add-to-cart button style overrides (Section 11.4.1)
   ========================================================================== */

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_add_to_cart_button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease, opacity 0.2s ease !important;
}
.single-product .single_add_to_cart_button.button,
.single-product button.single_add_to_cart_button {
	width: 100% !important;
	min-height: 3.5rem !important;
	height: 3.5rem !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	opacity: 1 !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
}
.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Section 11.4.2 — hide WooCommerce's injected "View cart" link */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward {
	display: none !important;
}

.theme-attr-select-hidden { display: none !important; }

/* ==========================================================================
   Single product page
   ========================================================================== */

.single-product-main { padding-top: calc(var(--announcement-height, 0px) + 10rem); }
@media (min-width: 1024px) { .single-product-main { padding-top: calc(var(--announcement-height, 0px) + 12rem); } }
.theme-product-layout { display: grid; grid-template-columns: 1fr; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 440px; } }
@media (min-width: 1280px) { .theme-product-layout { grid-template-columns: 1fr 500px; } }
.theme-product-gallery-col,
.theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery-col { position: relative; background: var(--color-background); }
@media (min-width: 1024px) {
	.theme-product-gallery-col {
		position: sticky;
		top: var(--theme-top-offset, 112px);
		align-self: start;
	}
}
.theme-product-gallery__row { display: flex; flex-direction: column; }
@media (min-width: 768px) { .theme-product-gallery__row { flex-direction: row; } }
.theme-product-thumbnails { display: flex; flex-direction: row; gap: 0.5rem; padding: 1rem; overflow-x: auto; flex-wrap: nowrap; max-width: 100%; }
.theme-product-thumbnails--desktop { display: none; }
.theme-product-thumbnails--mobile { display: flex; }
@media (min-width: 768px) {
	.theme-product-thumbnails--desktop {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		padding: 1rem 1.5rem;
		flex-wrap: wrap;
		overflow-x: visible;
		background: color-mix(in srgb, var(--color-background) 40%, transparent);
		flex-shrink: 0;
	}
	.theme-product-thumbnails--mobile { display: none; }
}
.theme-product-thumb { width: 4rem; height: 4rem; overflow: hidden; border: 1px solid transparent; opacity: 0.6; flex-shrink: 0; position: relative; transition: opacity 0.3s ease, border-color 0.3s ease; }
@media (min-width: 768px) { .theme-product-thumb { width: 3.5rem; height: 3.5rem; } }
@media (min-width: 1024px) { .theme-product-thumb { width: 4rem; height: 4rem; } }
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active { border-color: var(--color-foreground); opacity: 1; }
.theme-product-main-image { position: relative; flex: 1; min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
@media (min-width: 768px) { .theme-product-main-image { min-height: 78vh; padding: 2rem; } }
@media (min-width: 1024px) { .theme-product-main-image { min-height: 88vh; } }
.theme-product-main-image__img { width: 100%; height: auto; max-height: 88vh; object-fit: contain; }

.theme-product-info { padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .theme-product-info { padding: 2.5rem 2.5rem; } }
@media (min-width: 1024px) { .theme-product-info { padding: 4rem 3rem; } }
.theme-product-breadcrumb { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb span { margin: 0 0.5rem; }
.theme-product-info__categories.posted_in { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.5rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__categories a { text-decoration: underline; text-underline-offset: 3px; }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.5; }
@media (min-width: 768px) { .product-title { font-size: 16px; } }
.theme-product-info__sku { margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-info__rule { height: 1px; background: var(--color-border); margin: 1.75rem 0; }
.theme-product-info__price { font-size: 1.125rem; font-family: var(--font-body); }
.theme-product-info__price .woocommerce-Price-amount { font-weight: 400; }
.theme-product-info__currency { font-weight: 400; }
.theme-product-info__stock { margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.theme-product-info__stock.is-out-of-stock { color: var(--color-primary); }
.theme-product-info__note { margin-top: 1.75rem; background: color-mix(in srgb, var(--color-secondary) 70%, transparent); padding: 1rem 1.25rem; font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }

.theme-attribute-block { margin-top: 1.75rem; }
.theme-attribute-block__label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; }
.theme-attribute-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attribute-pill { min-width: 56px; padding: 0.625rem 1rem; font-size: 12px; letter-spacing: 0.05em; border: 1px solid var(--color-border); transition: all 0.2s ease; }
.theme-attribute-pill:hover { border-color: var(--color-foreground); }
.theme-attribute-pill.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.single-product .theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	margin-top: 2rem;
	width: 100%;
}
.single-product .variations_form .theme-add-to-cart-area {
	display: flex !important;
}
.single-product .variations_form .single_variation_wrap {
	display: none !important;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 0; width: 100%; }
.single-product .theme-quantity-wrapper { display: none !important; }
.single-product .woocommerce-variation-price,
.single-product .woocommerce-variation-availability,
.single-product .single_variation .price {
	display: none !important;
}
.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: var(--btn-height); font-size: 1rem; transition: background-color 0.3s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-product-details { margin-top: 3rem; }
.theme-product-details__heading { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 600; }
.theme-product-details__description,
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in {
	overflow-wrap: break-word;
	word-break: break-word;
}
.theme-product-details__description { font-family: var(--font-display); font-size: 19px; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.theme-product-details__description p { margin-bottom: 1rem; }
.theme-product-details__list { margin-top: 1.5rem; }
.theme-product-details__list ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-details__list li { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-size: 14px; line-height: 1.6; }
.theme-product-details__list li::marker { color: var(--color-primary); }

/* Variations table layout (Section 11.5.1) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
	display: block;
	width: 100%;
}
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations_form.cart { margin-top: 0; }

.related-products-section {
	margin-top: 3rem;
	padding: 6rem 0;
	border-top: 1px solid var(--color-border);
}
.related-products-section__title { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; margin-bottom: 3rem; }
.related-products-section__title em { font-style: italic; }
.related-products-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem 2rem;
}
@media (min-width: 640px) {
	.related-products-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
	.related-products-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }

/* ==========================================================================
   Shop archive
   ========================================================================== */

.woocommerce-archive-main { padding-top: var(--theme-top-offset, 112px); padding-bottom: 5rem; }
.theme-page-container { padding-top: var(--theme-top-offset, 112px); padding-bottom: 5rem; }
body.woocommerce-checkout .theme-page-container { padding-top: calc(var(--theme-top-offset, 112px) + 1rem); }
body.woocommerce-cart .theme-page-container { padding-top: calc(var(--theme-top-offset, 112px) + 1rem); }
.theme-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.theme-pagination .page-numbers { display: flex; gap: 0.5rem; list-style: none; }
.theme-pagination .page-numbers li a,
.theme-pagination .page-numbers li span { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border: 1px solid var(--color-border); }
.theme-pagination .page-numbers li .current { background: var(--color-foreground); color: var(--color-background); }

.page-title { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.1; margin-bottom: 2rem; }

/* 404 */
.theme-404 { padding: 12rem 0 8rem; }
.theme-404__inner { text-align: center; }
.theme-404__title { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__text { color: var(--color-muted-foreground); margin-bottom: 2rem; }

/* ==========================================================================
   WooCommerce notices (Section 14.1)
   ========================================================================== */

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	font-family: var(--font-body);
	border-top-color: var(--color-primary);
	font-size: 14px;
	border-radius: 0;
}

/* ==========================================================================
   Checkout Block (Section 13)
   ========================================================================== */

body.woocommerce-checkout .site-main { padding-top: 0; padding-bottom: 4rem; }
body.woocommerce-checkout .theme-page-container,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .entry-content {
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .page-title { text-align: left; }

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap);
		align-items: stretch;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notice-banner,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notice-banner {
		grid-column: 1 / -1;
		order: 1;
	}

	body.woocommerce-checkout .wc-block-checkout__main {
		order: 2;
		min-width: 0;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar {
		order: 3;
		min-width: 360px;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	width: 100%;
	min-width: 0;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-primary);
	outline: none;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border-radius: 0 !important;
	font-family: var(--font-body);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	min-height: 100%;
	background-color: color-mix(in srgb, var(--color-secondary) 70%, transparent);
	border: 1px solid var(--color-border);
	border-radius: 0.25rem;
	padding: var(--section-padding);
	width: 100%;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary {
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
	min-height: 100%;
	margin: 0;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-order-summary__content {
	flex: 1;
}
body.woocommerce-checkout .wc-block-components-totals-wrapper {
	margin-top: auto;
	border-top: 1px solid var(--color-border);
	padding-top: 1.5rem;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__image,
body.woocommerce-checkout .wc-block-cart-items__image {
	width: 5rem;
	height: 6rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__image img,
body.woocommerce-checkout .wc-block-cart-items__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0;
	font-family: var(--font-body);
}

/* Classic shortcode selectors kept in sync for compatibility */
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
	border: 1px solid var(--color-border);
	border-radius: 0;
	font-family: var(--font-body);
}

/* ==========================================================================
   Cart / Account / Thank you page width parity (Section 13.7)
   ========================================================================== */

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: var(--theme-top-offset, 112px);
	padding-bottom: 4rem;
}

/* Thank you page */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--theme-top-offset, 112px); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details {
	font-family: var(--font-body);
}
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 1.5rem;
	background: color-mix(in srgb, var(--color-secondary) 60%, transparent);
	margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	padding: 0.75rem;
	border-bottom: 1px solid var(--color-border);
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px;
	overflow-wrap: break-word;
	border: 1px solid var(--color-border);
	padding: 1.25rem;
	font-style: normal;
}

/* ==========================================================================
   Home hero full-bleed under transparent fixed header (Section 22.7)
   ========================================================================== */

body.theme-no-hero .site-main { padding-top: var(--theme-top-offset, 112px); }
body.theme-no-hero .site-main.single-product-main { padding-top: calc(var(--announcement-height, 0px) + 10rem); }
@media (min-width: 1024px) {
	body.theme-no-hero .site-main.single-product-main { padding-top: calc(var(--announcement-height, 0px) + 12rem); }
}
