/* =========================================================================
   Generational Drip — theme.css
   Theme by The Free Website Guys.
   ========================================================================= */

:root {
	--color-background: #ffffff;
	--color-foreground: #141414;
	--color-primary: #d51515;
	--color-secondary: #f2f2f2;
	--color-muted: #ebebeb;
	--color-border: #e0e0e0;
	--color-button-text: #ffffff;

	--font-display: 'Barlow Condensed', 'Inter', 'Helvetica Neue', sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;

	--logo-height: 60px;
	--header-height: 84px;
	--header-height-lg: 104px;

	--btn-radius: 0;
	--btn-height: 48px;
	--btn-padding: 0 2rem;
	--btn-font-size: 0.72rem;
	--btn-font-weight: 700;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;

	--card-radius: 0;
	--section-padding: 2rem;

	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
	--shadow-elevated: 0 14px 40px -12px rgba(0, 0, 0, 0.18);
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
* { 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;
}
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; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

img:not(.cover-img):not(.theme-product-card__img):not(.highlight-card__img):not(.about-section__img):not(.promo-section__img):not(.connect-section__img):not(.theme-product-gallery__main-img):not(.theme-cart-item__image img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__img,
.highlight-card__img,
.about-section__img,
.promo-section__img,
.connect-section__img,
.theme-product-gallery__main-img,
.theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.container-editorial { width: 100%; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) {
	.container-wide, .container-editorial, .container-narrow { padding: 0 2.5rem; }
}

.label-eyebrow {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-family: var(--font-display);
	font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	display: block;
}

.section-heading { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; letter-spacing: -0.01em; }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
/* Homepage / marketing CTAs — red primary (matches Lovable bg-primary) */
.theme-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	background: var(--color-primary);
	color: var(--color-button-text);
	font-size: var(--btn-font-size);
	letter-spacing: 0.32em;
	text-transform: var(--btn-text-transform);
	font-family: var(--font-display);
	font-weight: var(--btn-font-weight);
	border: 1px solid var(--color-primary);
	border-radius: var(--btn-radius);
	transition: background-color 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.theme-btn-primary:hover { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-btn-hero { width: 240px; }
/* Product page ATC — black with red hover (matches Lovable ProductDetail) */
.theme-btn-atc,
.single_add_to_cart_button.theme-btn-atc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	height: 3.5rem;
	padding: 0 2rem;
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-display);
	font-weight: 700;
	border: 1px solid var(--color-foreground) !important;
	border-radius: 0;
	transition: background-color 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.theme-btn-atc:hover,
.single_add_to_cart_button.theme-btn-atc:hover {
	background: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border-color: var(--color-primary) !important;
}
.connect-section .theme-btn-primary {
	letter-spacing: 0.18em;
	font-size: 0.875rem;
	padding: 1rem 2rem;
	height: auto;
	width: auto;
	box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--color-primary) 60%, transparent);
}
.connect-section .theme-btn-primary:hover {
	background: color-mix(in srgb, var(--color-primary) 90%, black);
	border-color: var(--color-primary);
	color: var(--color-button-text);
}
.theme-btn-outline {
	display: inline-flex; align-items: center; justify-content: center;
	height: 48px; padding: 0 2rem; border: 1px solid var(--color-border);
	font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--font-body);
	transition: background-color 0.3s ease, color 0.3s ease;
}
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-button-text); }
.theme-btn-outline-inverse {
	display: inline-flex; align-items: center; justify-content: center; height: var(--btn-height); padding: 0 2rem;
	background: transparent; color: #fff; border: 1px solid #fff;
	font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.theme-btn-outline-inverse:hover { background: #fff; color: var(--color-foreground); }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem; transition: opacity 0.3s ease; }
.icon-btn:hover { opacity: 0.7; }

/* ---------------------------------------------------------------------
   ANIMATIONS (Section 2.1)
   --------------------------------------------------------------------- */
@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; }

.reveal-item, .theme-product-card-wrap.reveal-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .theme-product-card-wrap.reveal-item, .animate-fade-in, .animate-slide-up {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ---------------------------------------------------------------------
   ANNOUNCEMENT BAR
   --------------------------------------------------------------------- */
.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: 32px; padding: 6px 2rem; position: relative; }
.theme-announcement__text { font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; text-align: center; }
.theme-announcement__close { position: absolute; right: 8px; padding: 4px; color: inherit; opacity: 0.85; }
.theme-announcement__close:hover { opacity: 0.6; }
body.announcement-hidden .theme-announcement { display: none; }

/* ---------------------------------------------------------------------
   HEADER
   --------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: top 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}
body.announcement-visible .site-header { top: 32px; }
.site-header.is-solid,
.site-header.is-scrolled {
	border-bottom-color: var(--color-border);
}
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
@media (min-width: 1024px) { .site-nav { height: var(--header-height-lg); } }

.site-logo { display: flex; align-items: center; }
.site-header .site-logo { position: absolute; left: 50%; transform: translateX(-50%); z-index: 1; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; object-fit: contain; }
.site-logo-text { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.4rem; line-height: var(--logo-height); display: block; }

.site-nav__mobile-toggle { display: flex; align-items: center; flex: 1; }
.mobile-menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.mobile-menu-toggle__bar { display: block; height: 2.5px; width: 20px; background: var(--color-foreground); border-radius: 1px; transition: all 0.3s ease; transform-origin: center; }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar--1 { width: 28px; transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar--2 { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar--3 { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1024px) { .site-nav__mobile-toggle { display: none; } }

.site-nav__links { display: none; }
@media (min-width: 1024px) {
	.site-header .site-logo {
		position: static;
		transform: none;
		flex: 1;
		justify-content: flex-start;
	}
	.site-nav__links {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 2.25rem;
		flex: 0 1 auto;
	}
}
.theme-nav-list, .mobile-menu__list { display: flex; align-items: center; gap: 2.25rem; }
.mobile-menu__list { flex-direction: column; align-items: stretch; gap: 0; }
.nav-link, .theme-nav-list a, .theme-mega-trigger {
	font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600;
	transition: color 0.3s ease; color: var(--color-foreground);
	display: inline-flex; align-items: center; gap: 0.25rem; cursor: pointer; background: none; border: none; padding: 0;
}
.nav-link:hover, .theme-nav-list a:hover, .theme-mega-trigger:hover,
.theme-mega-item.is-open .theme-mega-trigger { color: var(--color-primary); }
.theme-mega-chevron { width: 12px; height: 12px; flex-shrink: 0; }

/* Mega menu (Lovable MegaMenu parity) */
.theme-mega-item { position: static; }
.theme-mega-menu {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	width: 100vw; z-index: 40; display: none;
}
.theme-mega-item.is-open > .theme-mega-menu { display: block; animation: fadeIn 0.35s var(--transition-smooth); }
.theme-mega-menu[hidden] { display: none !important; }
.theme-mega-item.is-open > .theme-mega-menu[hidden] { display: block !important; }
.theme-mega-menu__inner {
	background: var(--color-background);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
}
.theme-mega-menu__content { padding-top: 3rem; padding-bottom: 3rem; }
.theme-mega-menu__grid {
	display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 1024px) {
	.theme-mega-menu__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2.5rem; align-items: stretch; }
}
.theme-mega-menu__columns {
	grid-column: 1 / -1;
	display: grid; gap: 2.5rem;
	grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr));
}
@media (min-width: 1024px) {
	.theme-mega-menu__columns--with-feature { grid-column: span 8; }
	.theme-mega-menu__columns:not(.theme-mega-menu__columns--with-feature) { grid-column: 1 / -1; }
}
.theme-mega-col__title {
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
	font-family: var(--font-display); font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin: 0 0 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border);
}
.theme-mega-col__list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega-col__link {
	text-align: left; font-size: 0.875rem; font-family: var(--font-display); font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-foreground);
	transition: color 0.3s ease; background: none; border: none; padding: 0; cursor: pointer;
}
.theme-mega-col__link:hover { color: var(--color-primary); }
.theme-mega-col__shop-all {
	margin-top: 2rem; align-self: flex-start; font-size: 11px; letter-spacing: 0.3em;
	text-transform: uppercase; font-family: var(--font-display); font-weight: 600;
	color: var(--color-foreground); border: none; border-bottom: 1px solid var(--color-foreground);
	padding: 0 0 0.25rem; background: none; cursor: pointer; transition: color 0.3s ease, border-color 0.3s ease;
}
.theme-mega-col__shop-all:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-mega-feature {
	display: none; text-align: left; background: none; border: none; padding: 0; cursor: pointer;
}
@media (min-width: 1024px) {
	.theme-mega-feature { display: flex; flex-direction: column; height: 100%; grid-column: span 4; position: relative; overflow: hidden; }
}
.theme-mega-feature__media { position: relative; width: 100%; overflow: hidden; flex: 1; height: 100%; min-height: 0; }
.theme-mega-feature__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition-smooth); }
.theme-mega-feature:hover .theme-mega-feature__img { transform: scale(1.05); }
.theme-mega-feature__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2));
	pointer-events: none;
}
.theme-mega-feature__eyebrow {
	position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
	font-family: var(--font-display); font-weight: 600; color: rgba(255,255,255,0.95); margin: 0;
}
.theme-mega-feature__footer { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: #fff; }
.theme-mega-feature__title {
	font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
	font-size: 1.5rem; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 0.75rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.theme-mega-feature__cta {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
	font-family: var(--font-display); font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,0.8); padding-bottom: 0.25rem;
}

.site-nav__actions { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: flex-end; }
.theme-cart-btn { position: relative; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 4px;
	display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600;
	background: var(--color-primary); color: #fff; border-radius: 999px; font-family: var(--font-display);
}
.theme-cart-count:empty { display: none; }

/* ---------------------------------------------------------------------
   MOBILE MENU
   --------------------------------------------------------------------- */
.mobile-menu { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu::before {
	content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35);
	opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu.is-open::before { opacity: 1; }
.mobile-menu__panel {
	position: absolute; top: 0; left: 0; height: 100%; width: 88vw; max-width: 380px;
	background: var(--color-background); border-right: 1px solid var(--color-border);
	display: flex; flex-direction: column; transform: translateX(-100%); transition: transform 0.35s var(--transition-smooth);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 84px; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); flex-shrink: 0; }
.mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.mobile-menu__list li { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.mobile-menu__list a { display: block; padding: 1rem 0.75rem; font-family: var(--font-display); font-size: 1.1rem; text-transform: none; letter-spacing: normal; }
.mobile-mega-item__trigger,
.mobile-mega-item__link {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 0.75rem; text-align: left; background: none; border: none; cursor: pointer;
	font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground);
}
.mobile-mega-chevron { transition: transform 0.3s ease; flex-shrink: 0; }
.mobile-mega-item.is-open .mobile-mega-chevron { transform: rotate(180deg); }
.mobile-mega-item__panel { padding: 0 0.75rem 0.75rem; }
.mobile-mega-item__panel[hidden] { display: none !important; }
.mobile-mega-col { margin-bottom: 1rem; }
.mobile-mega-col__title {
	font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
	font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin: 0 0 0.5rem;
}
.mobile-mega-col ul { display: flex; flex-direction: column; }
.mobile-mega-col button {
	width: 100%; text-align: left; padding: 0.625rem 0; background: none; border: none; cursor: pointer;
	font-size: 0.875rem; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.3s ease;
}
.mobile-mega-col button:hover { color: var(--color-primary); }
.mobile-mega-col__shop-all {
	font-size: 0.7rem !important; letter-spacing: 0.24em; text-transform: uppercase;
	color: var(--color-primary) !important; text-decoration: underline; text-underline-offset: 4px;
}
.mobile-menu__footer { border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); padding: 1rem 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; flex-shrink: 0; }
.mobile-menu__action-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.75rem; border: 1px solid var(--color-border); font-size: 0.7rem;
	letter-spacing: 0.24em; text-transform: uppercase; text-align: center; font-family: var(--font-body);
	transition: background-color 0.3s ease, color 0.3s ease;
}
.mobile-menu__action-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.mobile-menu__action-btn--primary { grid-column: span 2; background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.mobile-menu__action-btn--primary:hover { opacity: 0.9; }

/* ---------------------------------------------------------------------
   SEARCH DIALOG
   --------------------------------------------------------------------- */
.search-dialog { position: fixed; inset: 0; z-index: 95; visibility: hidden; pointer-events: none; }
.search-dialog.is-open { visibility: visible; pointer-events: auto; }
.search-dialog__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); border: none; opacity: 0; transition: opacity 0.3s ease; }
.search-dialog.is-open .search-dialog__overlay { opacity: 1; }
.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 var(--transition-smooth), opacity 0.3s ease;
}
.search-dialog.is-open .search-dialog__panel { transform: translateY(0); opacity: 1; }
.search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2; }
@media (min-width: 1024px) { .search-dialog__close { top: 1.75rem; right: 2rem; } }
.search-dialog__inner { padding-block: 2.5rem 3.5rem; }
@media (min-width: 1024px) { .search-dialog__inner { padding-block: 3.5rem; } }
.search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.search-dialog__aside-title,
.search-dialog__categories h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 700; text-transform: none; letter-spacing: 0.005em; }
.search-dialog__categories ul { display: flex; flex-direction: column; gap: 0.9rem; }
.search-dialog__categories button { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--font-body); opacity: 0.85; transition: color 0.3s ease; background: none; border: none; padding: 0; cursor: pointer; text-align: left; }
.search-dialog__categories button:hover { color: var(--color-primary); }
.search-dialog__results { min-width: 0; }
@media (min-width: 1024px) { .search-dialog__results { padding-right: 4rem; } }
.search-dialog__field { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); padding-bottom: 0.75rem; }
.search-dialog__field input { flex: 1; border: none; outline: none; background: transparent; font-family: var(--font-display); font-size: 1.5rem; }
.search-dialog__field input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.search-dialog__results-body { margin-top: 2.5rem; }
.search-dialog__results-heading { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 700; text-transform: none; letter-spacing: 0.005em; }
.search-dialog__results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .search-dialog__results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .search-dialog__results-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.search-dialog__no-results { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.search-result-card { display: block; text-align: left; background: none; border: none; padding: 0; cursor: pointer; width: 100%; }
.search-result-card__img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--color-secondary); position: relative; }
.search-result-card__img-wrap img { transition: transform 0.7s var(--transition-smooth); }
.search-result-card:hover .search-result-card__img-wrap img { transform: scale(1.05); }
.search-result-card__title { margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--font-body); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-result-card__price { margin-top: 0.25rem; font-size: 12px; opacity: 0.7; font-family: var(--font-body); }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero-section { position: relative; width: 100%; height: 100vh; height: 100svh; min-height: 100vh; min-height: 100svh; overflow: hidden; }
body.theme-no-hero .hero-section { display: none; }
.hero-section__slides { position: absolute; inset: 0; }
.hero-section__slide {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
	opacity: 0; transform: scale(1.04); transition: opacity 1.4s var(--transition-smooth), transform 1.4s var(--transition-smooth);
}
.hero-section__slide.is-active { opacity: 1; transform: scale(1); }
.hero-section__scrim { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent); }
.hero-section__content { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.hero-section__copy { max-width: 640px; padding-bottom: 6rem; }
@media (min-width: 768px) { .hero-section__copy { padding-bottom: 7rem; } }
.hero-section__eyebrow { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.hero-section__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 2.5rem; line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 1.5rem; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
@media (min-width: 768px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__subtitle { color: rgba(255,255,255,0.9); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; margin-bottom: 2rem; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.hero-section__dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 0.5rem; }
.hero-section__dot { height: 2px; width: 24px; background: rgba(255,255,255,0.4); transition: all 0.5s ease; }
.hero-section__dot.is-active { width: 48px; background: #fff; }

/* ---------------------------------------------------------------------
   SHOP BY COLLECTION
   --------------------------------------------------------------------- */
.collections-section { padding: 4rem 0 3rem; background: var(--color-background); }
@media (min-width: 1024px) { .collections-section { padding: 5rem 0 4rem; } }
.collections-section__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.collections-section__heading { color: var(--color-foreground); font-size: 1.5rem; }
@media (min-width: 768px) { .collections-section__heading { font-size: 1.875rem; } }
.collections-section__clear { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: var(--color-primary); }
.collections-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 768px) { .collections-section__grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (min-width: 1024px) { .collections-section__grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }
.collection-tile { position: relative; aspect-ratio: 25/33; overflow: hidden; background: var(--color-secondary); display: block; width: 100%; text-align: left; }
.collection-tile__img { transition: transform 1.2s ease-out; }
.collection-tile:hover .collection-tile__img { transform: scale(1.05); }
.collection-tile__scrim { position: absolute; inset-inline: 0; bottom: 0; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); pointer-events: none; }
.collection-tile__label { position: absolute; bottom: 1rem; left: 1rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 0.85rem; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
@media (min-width: 1024px) { .collection-tile__label { font-size: 1.05rem; } }
.collection-tile__arrow { position: absolute; bottom: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--color-foreground); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.collection-tile:hover .collection-tile__arrow { transform: translateX(4px); }
.collection-tile.is-active { box-shadow: inset 0 0 0 2px var(--color-primary); }

/* ---------------------------------------------------------------------
   HIGHLIGHTS
   --------------------------------------------------------------------- */
.highlights-section { padding: 5rem 0; background: var(--color-foreground); }
@media (min-width: 1024px) { .highlights-section { padding: 6rem 0; } }
.highlights-section__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .highlights-section__header { margin-bottom: 3rem; } }
.highlights-section__heading { color: var(--color-background); font-size: 1.5rem; }
@media (min-width: 768px) { .highlights-section__heading { font-size: 1.875rem; } }
.highlights-section__eyebrow { color: color-mix(in srgb, var(--color-background) 60%, transparent); }
.highlights-section__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: start;
}
@media (min-width: 768px) { .highlights-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .highlights-section__grid { gap: 2rem; } }
.highlight-card { display: block; }
.highlight-card__image-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--color-background); }
.highlight-card__img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.highlight-card__img { transition: transform 1.2s ease-out; }
.highlight-card:hover .highlight-card__img { transform: scale(1.03); }
.highlight-card__title { margin-top: 1.25rem; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; color: var(--color-background); transition: color 0.3s ease; }
.highlight-card:hover .highlight-card__title { color: var(--color-primary); }
.highlight-card__cta { margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: color-mix(in srgb, var(--color-background) 70%, transparent); transition: color 0.3s ease; }
.highlight-card:hover .highlight-card__cta { color: var(--color-primary); }

/* ---------------------------------------------------------------------
   PRODUCT GRIDS + CARDS
   --------------------------------------------------------------------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	align-items: stretch;
	gap: 0.75rem;
}
.theme-product-grid--3 { grid-template-columns: repeat(1, minmax(0,1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .theme-product-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--3 { gap: 2rem; } }
.theme-product-grid--shop { grid-template-columns: 1fr; gap: 0.75rem 0.5rem; min-width: 0; }
@media (min-width: 640px) { .theme-product-grid--shop { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--shop { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; min-width: 0; max-width: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; min-width: 0; max-width: 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__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--color-muted); height: 100%; min-height: 0; flex: 1 1 auto; }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.03); }
.theme-product-card__img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 0.7s ease; }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.6rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; min-width: 0; }
.theme-product-card__title { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; font-size: 15px; color: var(--color-foreground); transition: color 0.3s ease; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; white-space: normal; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--color-foreground); }
.theme-product-card__price .price del { text-decoration: line-through; opacity: 0.6; font-weight: 400; margin-right: 0.4em; }
.theme-product-card__price .price ins { text-decoration: none; color: var(--color-primary); }

/* ---------------------------------------------------------------------
   SHOP SECTION
   --------------------------------------------------------------------- */
.shop-section { background: var(--color-background); position: relative; z-index: 1; isolation: isolate; min-width: 0; overflow-x: clip; }
.shop-section__intro { text-align: center; padding-top: 5rem; padding-bottom: 1rem; }
@media (min-width: 1024px) { .shop-section__intro { padding-top: 7rem; } }
.shop-heading { font-family: var(--font-display); font-weight: inherit; 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: 7rem; min-width: 0; overflow-x: clip; }
@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 { position: relative; flex: 1; max-width: 20rem; }
.shop-filter__trigger { 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__trigger:hover { border-color: var(--color-primary); }
.shop-filter__labels { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.shop-filter__label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.5; }
.shop-filter__value { font-size: 0.875rem; margin-top: 0.1rem; }
.shop-filter__trigger svg { transition: transform 0.3s ease; flex-shrink: 0; }
.shop-filter.is-open .shop-filter__trigger svg { transform: rotate(180deg); }
.shop-filter__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; }
.shop-filter__list button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.65rem 1rem; font-size: 0.875rem; text-align: left; }
.shop-filter__list button:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.shop-filter__list button.is-active { color: var(--color-primary); }
.shop-filters__clear-all { align-self: center; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-primary); }
.shop-filters__clear-all:hover { opacity: 0.7; }

.shop-section__no-match, .shop-section__empty { text-align: center; padding: 5rem 0; 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: 0.875rem; opacity: 0.65; }

/* ---------------------------------------------------------------------
   PROMO BANNER
   --------------------------------------------------------------------- */
.promo-section { position: relative; z-index: 0; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .promo-section { height: 70vh; } }
.promo-section__media { position: absolute; inset: 0; }
.promo-section__img { will-change: transform; }
.promo-section__scrim { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.25), transparent); }
.promo-section__content { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.promo-section__copy { max-width: 560px; padding-bottom: 3rem; }
@media (min-width: 768px) { .promo-section__copy { padding-bottom: 4rem; } }
.promo-section__eyebrow { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1rem; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.promo-section__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 1.9rem; line-height: 0.95; margin-bottom: 2rem; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
@media (min-width: 768px) { .promo-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .promo-section__title { font-size: 3.75rem; } }

/* ---------------------------------------------------------------------
   ABOUT
   --------------------------------------------------------------------- */
.about-section { background: var(--color-background); color: var(--color-foreground); scroll-margin-top: 6rem; }
.about-section__grid { display: grid; grid-template-columns: 1fr; min-height: 85vh; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 1fr 1fr; } }
.about-section__media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--color-muted); }
@media (min-width: 1024px) { .about-section__media { aspect-ratio: auto; } }
.about-section__copy-wrap { display: flex; align-items: center; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .about-section__copy-wrap { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .about-section__copy-wrap { padding: 7rem 5rem; } }
.about-section__copy { max-width: 36rem; width: 100%; display: flex; flex-direction: column; gap: 2rem; }
.about-section__eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); font-family: var(--font-body); }
.about-section__heading { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.05; font-weight: inherit; text-transform: none; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.75rem; } }
.about-section__paragraphs { display: flex; flex-direction: column; gap: 1.25rem; font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-family: var(--font-body); line-height: 1.6; }
.about-section__signature { padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.about-section__signature img { width: 100%; max-width: 280px; object-fit: contain; }

/* ---------------------------------------------------------------------
   SERVICES
   --------------------------------------------------------------------- */
.services-section { padding: 5rem 0 7rem; background: var(--color-foreground); color: var(--color-background); }
@media (min-width: 1024px) { .services-section { padding: 7rem 0; } }
.services-section__header { text-align: center; margin-bottom: 4rem; }
.services-section__eyebrow { color: color-mix(in srgb, var(--color-background) 60%, transparent); text-align: center; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 400; }
.services-section__heading { color: var(--color-background); font-size: 2.25rem; line-height: 1.05; font-weight: 700; text-transform: uppercase; }
@media (min-width: 768px) { .services-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__heading { font-size: 3.75rem; } }
.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: color-mix(in srgb, var(--color-background) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); }
@media (min-width: 768px) { .services-section__grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--color-foreground); padding: 2.5rem; transition: background-color 0.3s ease; }
@media (min-width: 1024px) { .service-card { padding: 4rem; } }
.service-card:hover { background: color-mix(in srgb, var(--color-background) 5%, var(--color-foreground)); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 3.5rem; }
.service-card__code { font-size: 11px; color: color-mix(in srgb, var(--color-background) 50%, transparent); letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--font-body); }
.service-card__icon { width: 20px; height: 20px; color: color-mix(in srgb, var(--color-background) 60%, transparent); transition: color 0.3s ease; flex-shrink: 0; }
.service-card:hover .service-card__icon { color: var(--color-primary); }
.service-card__title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.875rem; line-height: 0.95; color: var(--color-background); margin-bottom: 0.75rem; font-weight: 700; }
@media (min-width: 768px) { .service-card__title { font-size: 2.25rem; } }
.service-card__tag { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; font-family: var(--font-body); }
.service-card__desc { font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-background) 70%, transparent); font-family: var(--font-body); }
@media (min-width: 768px) { .service-card__desc { font-size: 0.9375rem; } }

/* ---------------------------------------------------------------------
   RESOURCES / FAQ
   --------------------------------------------------------------------- */
.resources-section { padding: 5rem 0; }
@media (min-width: 1024px) { .resources-section { padding: 7rem 0; } }
.faq-heading { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.01em; font-size: 2.75rem; text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 4.5rem; } }
.faq-intro { max-width: 56rem; margin: 0 auto 3rem; text-align: center; }
.faq-intro p { font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .faq-intro p { font-size: 1.125rem; } }
.faq-intro__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: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; transition: background-color 0.3s ease, color 0.3s ease; }
.faq-intro__cta:hover { background: var(--color-foreground); color: var(--color-background); }
.faq-list { border-top: 1px solid var(--color-border); max-width: 56rem; margin: 0 auto; }
.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-weight: 600; font-size: 15px; line-height: 1.4; transition: color 0.3s ease; }
.faq-item:hover .faq-item__question span:first-child { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; margin-top: 2px; transition: color 0.3s ease; }
.faq-item .icon-minus { display: none; }
.faq-item.is-open .icon-plus { display: none; }
.faq-item.is-open .icon-minus { display: block; }
.faq-item__answer { height: 0; opacity: 0; overflow: hidden; transition: height 0.4s var(--transition-smooth), opacity 0.4s var(--transition-smooth); }
.faq-item.is-open .faq-item__answer { opacity: 1; }
.faq-item__answer p { padding-bottom: 1.5rem; padding-right: 3rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 15px; line-height: 1.6; }

/* Connect / contact */
.connect-section { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; background: var(--color-foreground); border-radius: 2px; }
@media (min-width: 1024px) { .connect-section { margin-bottom: -7rem; } }
.connect-section__media { position: absolute; inset: 0; }
.connect-section__img,
.connect-section__video { opacity: 0.5; width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.connect-section__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.connect-section__content { position: relative; text-align: center; padding-block: 6rem; }
@media (min-width: 768px) { .connect-section__content { padding-block: 8rem; } }
.connect-section__eyebrow { color: rgba(255,255,255,0.8); text-align: center; margin-bottom: 1.25rem; }
.connect-section__heading { color: #fff; font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; font-weight: 700; text-transform: uppercase; }
@media (min-width: 768px) { .connect-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .connect-section__heading { font-size: 3.75rem; } }
.connect-section__text { max-width: 32rem; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; }
.connect-section__ctas { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .connect-section__ctas { flex-direction: row; } }

/* Shop view more */
.shop-section__view-more-wrap { display: flex; justify-content: center; margin-top: 3rem; }
.shop-section__view-more {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 200px; height: 48px; padding: 0 2rem;
	border: 1px solid var(--color-foreground); background: transparent; color: var(--color-foreground);
	font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.28em; text-transform: uppercase; cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.shop-section__view-more:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-product-card-wrap.is-shop-overflow[hidden] { display: none !important; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer { background: var(--color-foreground); color: var(--color-background); margin-top: 0; }
.site-footer__newsletter { border-bottom: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent); }
.site-footer__newsletter-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .site-footer__newsletter-inner { grid-template-columns: 1fr 1fr; padding-block: 4rem; } }
.site-footer__newsletter-eyebrow { color: var(--color-primary); margin-bottom: 0.75rem; }
.site-footer__newsletter-heading { font-size: 1.75rem; line-height: 1.05; }
@media (min-width: 1024px) { .site-footer__newsletter-heading { font-size: 2.25rem; } }
.site-footer__newsletter-form { display: flex; width: 100%; }
.site-footer__newsletter-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid color-mix(in srgb, var(--color-background) 40%, transparent); padding: 0.75rem 0.25rem; font-size: 0.9rem; color: var(--color-background); }
.site-footer__newsletter-input::placeholder { color: color-mix(in srgb, var(--color-background) 50%, transparent); }
.site-footer__newsletter-input:focus { outline: none; border-color: var(--color-background); }
.site-footer__newsletter-btn { margin-left: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.5rem; height: 48px; background: var(--color-primary); color: #fff; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; transition: background-color 0.3s ease, color 0.3s ease; }
.site-footer__newsletter-btn:hover { background: var(--color-background); color: var(--color-foreground); }
.site-footer__newsletter-feedback { margin-top: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.site-footer__newsletter-feedback.is-success { color: var(--color-primary); }
.site-footer__newsletter-feedback.is-error { color: #f87171; }
.site-footer__newsletter-embed { width: 100%; }
.site-footer__newsletter-embed iframe { width: 100%; min-height: 120px; border: 0; }
.site-footer__main { padding-block: 4rem 5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; } }
.site-footer__brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .site-footer__brand { grid-column: span 4; } }
.site-footer__logo-img { height: 64px !important; }
.site-footer__tagline { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.24em; font-size: 10px; font-weight: 600; color: color-mix(in srgb, var(--color-background) 60%, transparent); margin-top: 0.75rem; }
.site-footer__description { margin-top: 1.5rem; font-size: 0.9rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); max-width: 24rem; line-height: 1.6; }
.site-footer__social { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.site-footer__social a { color: color-mix(in srgb, var(--color-background) 70%, transparent); transition: color 0.3s ease; }
.site-footer__social a:hover { color: var(--color-primary); }
.site-footer__col { grid-column: span 1; }
@media (min-width: 1024px) { .site-footer__col { grid-column: span 2; } }
.site-footer__col-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: color-mix(in srgb, var(--color-background) 60%, transparent); margin-bottom: 1.25rem; }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list a { font-size: 0.9rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); transition: color 0.3s ease; }
.footer-nav-list a:hover { color: var(--color-primary); }
.footer-nav-list--contact li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.footer-nav-list--contact svg { flex-shrink: 0; }
.site-footer__bottom { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent); 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: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: color-mix(in srgb, var(--color-background) 55%, transparent); }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 4px; transition: color 0.3s ease; }
.site-footer__credit a:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------------
   CONTACT MODAL
   --------------------------------------------------------------------- */
.theme-modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; pointer-events: none; }
.theme-modal.is-open { visibility: visible; pointer-events: auto; }
.theme-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); border: none; opacity: 0; transition: opacity 0.3s ease; }
.theme-modal.is-open .theme-modal__overlay { opacity: 1; }
.theme-modal__panel {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(0.96); width: 90%; max-width: 32rem;
	max-height: 90vh; overflow-y: auto; background: var(--color-background); border: 1px solid var(--color-border); padding: 2rem;
	opacity: 0; transition: opacity 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}
.theme-modal.is-open .theme-modal__panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; }
.theme-modal__title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; margin-top: 0.25rem; }
.theme-modal__desc { margin-top: 0.75rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-modal__contacts { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.5rem; }
.theme-modal__contacts a:hover { color: var(--color-foreground); }
.theme-modal__form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.theme-modal__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-modal__form-row { grid-template-columns: 1fr 1fr; } }
.theme-modal__form input, .theme-modal__form textarea { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid var(--color-border); background: var(--color-background); font-size: 0.9rem; }
.theme-modal__form input:focus, .theme-modal__form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-modal__form textarea { resize: none; }
.theme-modal__form-footer { display: flex; justify-content: flex-end; }
.theme-modal__form label { margin-bottom: 0.4rem; }
.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal__success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal__success p { font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ---------------------------------------------------------------------
   CART DRAWER + OVERLAY
   --------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 105; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 32rem; background: var(--color-background);
	z-index: 106; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.35s 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); flex-shrink: 0; }
.theme-cart-drawer__title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; text-transform: none; font-weight: 400; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1.25rem; }
.theme-cart-drawer__empty svg { opacity: 0.4; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
.theme-cart-item__image { position: relative; width: 96px; height: 128px; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__image img { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover !important; max-width: none !important; }
.theme-cart-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__title { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.theme-cart-item__title:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 12px; font-style: italic; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.35rem; }
.theme-cart-item__price { font-size: 0.9rem; margin-top: 0.35rem; }
.theme-cart-item__row { 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 button { padding: 0.4rem 0.6rem; transition: background-color 0.3s ease; }
.theme-cart-item__qty button:hover { background: var(--color-secondary); }
.theme-cart-item__qty span { padding: 0 0.6rem; font-size: 0.9rem; min-width: 28px; text-align: center; }
.theme-cart-item__remove { font-size: 12px; text-decoration: underline; text-underline-offset: 4px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.3s ease; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; text-transform: none; }
.theme-cart-drawer__note { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout { width: 100%; }

/* ---------------------------------------------------------------------
   SINGLE PRODUCT PAGE
   --------------------------------------------------------------------- */
.single-product-page { padding-top: 7rem; padding-bottom: 4rem; min-width: 0; overflow-x: clip; }
@media (min-width: 1024px) { .single-product-page { padding-top: 8rem; padding-bottom: 5rem; } }
.single-product__breadcrumb { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1.5rem; }
.single-product__breadcrumb a:hover { color: var(--color-foreground); }
.single-product__breadcrumb span { margin: 0 0.5rem; }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; width: 100%; max-width: 100%; aspect-ratio: 4/5; background: var(--color-muted); overflow: hidden; }
@media (min-width: 1024px) { .theme-product-gallery__main { min-height: 60vh; } }
.theme-product-gallery__main-img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 0.75rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; width: 64px; height: 64px; border: 1px solid transparent; opacity: 0.6; overflow: hidden; transition: all 0.3s ease; flex-shrink: 0; }
.theme-product-thumb img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover !important; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { border-color: var(--color-foreground); opacity: 1; }

.theme-product-info { padding: 1.5rem 0; }
.posted_in { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.posted_in a { color: inherit; }
.posted_in a:hover { color: var(--color-primary); }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.5; margin-top: 0.5rem; }
@media (min-width: 768px) { .product-title { font-size: 16px; } }
.single-product__sku { margin-top: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.single-product__divider { height: 1px; background: var(--color-border); margin: 1.5rem 0; }
.single-product__price { font-size: 1.125rem; }
.single-product__price .price del { text-decoration: line-through; opacity: 0.6; margin-right: 0.5em; }
.single-product__price .price ins { text-decoration: none; color: var(--color-primary); }
.stock.out-of-stock { margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); font-weight: 600; }
.single-product__note { margin-top: 1.5rem; 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); }
.single-product__sizes { margin-top: 1.75rem; }
.single-product__sizes h3 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; }
.size-pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-pill,
.variation-pill { min-width: 56px; padding: 0.6rem 1rem; font-size: 12px; letter-spacing: 0.05em; font-family: var(--font-body); border: 1px solid var(--color-border); transition: all 0.2s ease; background: transparent; cursor: pointer; }
.size-pill:hover,
.variation-pill:hover { border-color: var(--color-foreground); }
.size-pill.is-selected,
.variation-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.size-pill:disabled,
.variation-pill:disabled { opacity: 0.35; cursor: not-allowed; }
.theme-variations .variations { display: none !important; }
.theme-variation-attr { margin-top: 1.75rem; }
.theme-variation-attr__label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 400; }
.theme-add-to-cart-area { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; align-items: stretch; }
.theme-add-to-cart-area .theme-btn-atc,
.theme-add-to-cart-area .single_add_to_cart_button.theme-btn-atc {
	flex: none;
	width: 100%;
	min-width: 0;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center;
	line-height: 1;
}

.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); flex-shrink: 0; width: fit-content; align-self: flex-start; }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: var(--btn-height); display: flex; align-items: center; justify-content: center; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 48px; text-align: center; border: none; background: transparent; -moz-appearance: textfield; height: var(--btn-height); }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product__description { margin-top: 3rem; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); overflow-wrap: break-word; word-break: break-word; white-space: pre-line; }
.single-product__details { margin-top: 2rem; }
.single-product__details h2 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1rem; }
.single-product__details p { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 3rem; }
.related-products-section__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__heading { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.2; text-transform: none; font-weight: inherit; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.1rem; } }
.related-products-section__list { min-width: 0; overflow-x: clip; }
.related-products-section__list .theme-product-card__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}
@media (max-width: 767px) {
	.related-products-section .theme-product-card-wrap.reveal-item {
		transform: none;
	}
}

/* Add to cart button style overrides (Section 11.4.1) */
/* Loop / archive ATC stays primary red; single product uses .theme-btn-atc (black). */
.single_add_to_cart_button.button:not(.theme-btn-atc),
.add_to_cart_button.button:not(.theme-btn-atc),
a.single_add_to_cart_button:not(.theme-btn-atc),
a.add_to_cart_button:not(.theme-btn-atc) {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !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-display) !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: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single-product .single_add_to_cart_button.theme-btn-atc {
	flex: none !important;
	width: 100% !important;
	min-width: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center;
}
.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-primary) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart */
.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; }

.single-product .theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 0.75rem;
	margin-top: 2rem;
}
.single-product .theme-add-to-cart-area--simple .theme-btn-atc {
	width: 100%;
}
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* ---------------------------------------------------------------------
   SHOP ARCHIVE PAGE
   --------------------------------------------------------------------- */
.shop-archive-page { padding-top: 8rem; padding-bottom: 6rem; }
.shop-archive-page__header { text-align: center; margin-bottom: 3rem; }
.shop-archive-page .page-title { font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; }
.shop-archive-page__empty { text-align: center; padding: 4rem 0; }
.woocommerce-pagination { display: flex; justify-content: center; margin-top: 3rem; }
.woocommerce-pagination ul { display: flex; gap: 0.5rem; }
.woocommerce-pagination a, .woocommerce-pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--color-border); font-size: 0.85rem; }
.woocommerce-pagination .current { background: var(--color-foreground); color: var(--color-background); }

/* ---------------------------------------------------------------------
   WOOCOMMERCE NOTICES (scoped visibility — Section 14.1)
   --------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	padding: 1rem 1.25rem; border-radius: 0; font-size: 0.9rem; list-style: none; margin-bottom: 1.5rem;
	border-left: 3px solid var(--color-primary); background: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   GENERIC PAGE / 404
   --------------------------------------------------------------------- */
.generic-page { padding-top: 8rem; padding-bottom: 6rem; min-height: 50vh; }
.generic-page__inner .page-title { font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 2rem; }
.theme-404 { min-height: 70vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; width: 100%; }
.theme-404__code { font-family: var(--font-display); font-size: 6rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; margin-bottom: 2rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ---------------------------------------------------------------------
   CHECKOUT (Native WooCommerce Checkout Block)
   --------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .generic-page {
	padding-top: calc(var(--header-height, 84px) + 2.5rem);
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .site-main,
	body.woocommerce-checkout .generic-page {
		padding-top: calc(var(--header-height-lg, 104px) + 3rem);
	}
}
body.announcement-visible.woocommerce-checkout .site-main,
body.announcement-visible.woocommerce-checkout .generic-page {
	padding-top: calc(var(--header-height, 84px) + 32px + 2.5rem);
}
@media (min-width: 1024px) {
	body.announcement-visible.woocommerce-checkout .site-main,
	body.announcement-visible.woocommerce-checkout .generic-page {
		padding-top: calc(var(--header-height-lg, 104px) + 32px + 3rem);
	}
}
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .page-title { font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 2.5rem; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout { display: block; }
}
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 .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	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); }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: #fff !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-display) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0; }

/* ---------------------------------------------------------------------
   CART / ACCOUNT / THANK YOU — WIDTH PARITY (Section 13.7)
   --------------------------------------------------------------------- */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 8rem; padding-bottom: 6rem; }
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 2rem; }

/* ---------------------------------------------------------------------
   THANK YOU PAGE (Section 22.8)
   --------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; padding-top: 8rem; }
body.theme-thankyou-page .woocommerce-order { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem 6rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.75rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; margin: 1.5rem 0; background: var(--color-secondary); }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.85rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-top: 1rem; }
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); text-align: left; }
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-size: 0.9rem; line-height: 1.6; }

/* ---------------------------------------------------------------------
   MISC UTILITIES
   --------------------------------------------------------------------- */
[hidden] { display: none !important; }
