/* ==========================================================================
   Christina's Creations — theme stylesheet
   Theme by The Free Website Guys.
   ========================================================================== */

:root {
	--color-background: #fdf9f1;
	--color-foreground: #241f2b;
	--color-primary: #e8577f;
	--color-primary-foreground: #fdf9f1;
	--color-secondary: #f6e6db;
	--color-muted: #f0e6d3;
	--color-accent: #eec267;
	--color-border: #e6dcc9;

	--font-display: 'Fraunces', 'Cormorant Garamond', serif;
	--font-body: 'Quicksand', 'Nunito', 'Inter', sans-serif;

	--shadow-soft: 0 6px 24px -8px rgba(36, 31, 43, 0.10);
	--shadow-elevated: 0 14px 40px -12px rgba(36, 31, 43, 0.18);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);

	--header-height: 96px;
	--header-height-lg: 112px;
	--logo-height: 48px;

	--btn-radius: 2px;
	--btn-height: 48px;
	--btn-padding: 0 2.5rem;
	--btn-font-size: 0.72rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.24em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0 0.75rem;

	--card-radius: 8px;
	--checkout-gap: 2rem;
}

/* ------------------------------------------------------------------------ *
 * RESET / BASE
 * ------------------------------------------------------------------------ */

*, *::before, *::after { 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.02;
	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;
}

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

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.category-tile-img):not(.theme-product-img):not(.site-logo-img):not(.footer-logo-img):not(.mobile-menu-logo-img):not(.brand-palette-card-image) {
	max-width: 100%;
	height: auto;
	display: block;
}
.cover-img, .hero-bg-img, .product-card-img, .category-tile-img, .theme-product-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.theme-product-card__image-wrapper img,
.theme-cart-item-img img,
.theme-product-main-image-wrap img,
.theme-product-thumb img {
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
}

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

.italic { font-style: italic; }

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

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.scroll-mt { scroll-margin-top: 6rem; }

/* ------------------------------------------------------------------------ *
 * SCROLL REVEAL ANIMATIONS
 * ------------------------------------------------------------------------ */

.reveal-item {
	opacity: 0;
	transform: translateY(40px);
	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 {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; }
}

@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; }

/* ------------------------------------------------------------------------ *
 * BUTTONS
 * ------------------------------------------------------------------------ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	border: 1px solid transparent;
	white-space: nowrap;
}
.btn-primary, .btn-contact-primary {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
	text-transform: none;
}
.btn-hero-primary {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.75rem;
	font-weight: 500;
	height: 3rem;
	padding: 0 2.5rem;
	box-shadow: 0 14px 40px -12px rgba(36, 31, 43, 0.18);
}
.btn-contact-lg {
	height: 3rem;
	padding: 0 2rem;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
}
.btn-primary:hover, .btn-hero-primary:hover, .btn-contact-primary:hover { opacity: 0.88; }
.btn-outline {
	background: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-contact-outline {
	background: transparent;
	color: var(--color-background);
	border-color: var(--color-background);
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.75rem;
	font-weight: 600;
}
.btn-contact-outline:hover { background: var(--color-background); color: var(--color-foreground); }
.btn-contact-primary, .single_add_to_cart_button { text-transform: none; }
.contact-buttons .btn-contact-primary,
.contact-buttons .btn-contact-lg.btn-contact-primary {
	text-transform: uppercase;
	font-weight: 600;
}
.btn-icon-bounce {
	display: inline-flex;
	animation: heroArrowBounce 1.8s ease-in-out infinite;
}
@keyframes heroArrowBounce {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
	.btn-icon-bounce { animation: none; }
}

/* ------------------------------------------------------------------------ *
 * HEADER
 * ------------------------------------------------------------------------ */

.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 500;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.4s ease, border-color 0.4s ease;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	border-bottom-color: var(--color-border);
}
.scroll-progress-bar {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 2px;
	z-index: 700;
	pointer-events: none;
	background: var(--color-primary);
	transform-origin: 0 50%;
	transform: scaleX(0);
	transition: transform 0.1s linear;
}
.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); }
}
@media (max-width: 1023px) {
	.site-nav {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 0.25rem;
	}

	.mobile-menu-toggle-wrap {
		grid-column: 1;
		grid-row: 1;
		z-index: 3;
	}

	.site-logo-link {
		grid-column: 2;
		grid-row: 1;
		position: static;
		left: auto;
		transform: none;
		justify-self: center;
		max-width: 100%;
		min-width: 0;
		z-index: 1;
	}

	.site-header .site-logo-text {
		font-size: clamp(0.875rem, 3.5vw, 1rem);
		line-height: 1.2;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
		display: block;
	}

	.header-actions {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}
}
@media (min-width: 1024px) {
	.site-logo-link {
		display: flex;
		align-items: center;
		gap: 0.6rem;
		position: relative;
		left: auto;
		transform: none;
	}
}
@media (max-width: 1023px) {
	.site-logo-link {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.6rem;
	}
}
.site-logo-img,
.footer-logo-img {
	height: var(--logo-height, 48px) !important;
	width: auto !important;
	display: block;
}
@media (max-width: 1023px) {
	.site-header .site-logo-img {
		height: 2.5rem !important;
		max-height: 2.5rem !important;
	}
}
@media (min-width: 1024px) {
	.site-header .site-logo-img {
		height: var(--logo-height, 48px) !important;
	}
}
.mobile-menu-logo-img {
	height: 2rem !important;
	max-height: 2rem !important;
	width: auto !important;
	display: block;
}
.site-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: inherit; }
.site-brand-name { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; }

.primary-nav-wrap { display: none; }
@media (min-width: 1024px) {
	.primary-nav-wrap {
		display: flex;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
}
.theme-nav-list, .mobile-nav-list { display: flex; gap: 2.25rem; align-items: center; list-style: none; margin: 0; padding: 0; }
@media (min-width: 1024px) { .theme-nav-list { gap: 2.25rem; } }
.mobile-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
.nav-link, .nav-link-btn {
	font-family: var(--font-body);
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
	transition: color 0.3s ease, opacity 0.3s ease;
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0;
}
.nav-link:hover, .theme-nav-list a:hover, .nav-link-btn:hover { color: var(--color-primary); opacity: 0.8; }
.nav-link-btn.is-active, .nav-link-btn[aria-expanded="true"] { color: var(--color-primary); }
.nav-chevron { width: 12px; height: 12px; }

/* Mega menu */
.mega-menu-panel {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	z-index: 40;
}
.mega-menu-panel[hidden] { display: none !important; }
.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);
	animation: fadeIn 0.3s ease;
}
.mega-menu-container { padding: 3rem 0; }
.mega-menu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 1024px) {
	.mega-menu-grid.has-feature { grid-template-columns: 2fr 1fr; }
}
.mega-menu-columns {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(var(--mega-cols, 2), minmax(0, 1fr));
}
.mega-menu-column-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1;
	margin: 0 0 1.75rem;
	color: var(--color-foreground);
}
.mega-menu-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}
.mega-menu-link {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.2s ease;
}
.mega-menu-link:hover { color: var(--color-primary); }
.mega-menu-shop-all {
	margin-top: 2.5rem;
	align-self: flex-start;
	background: none;
	border: none;
	border-bottom: 1px solid var(--color-foreground);
	padding: 0 0 0.25rem;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-foreground);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.mega-menu-shop-all:hover { color: var(--color-primary); border-color: var(--color-primary); }
.mega-menu-feature {
	display: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
}
@media (min-width: 1024px) { .mega-menu-feature { display: block; } }
.mega-menu-feature-image-wrap {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
}
.mega-menu-feature-img { transition: transform 1.2s ease; }
.mega-menu-feature:hover .mega-menu-feature-img { transform: scale(1.05); }
.mega-menu-feature-gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.2));
}
.mega-menu-feature-top { position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem; }
.mega-menu-feature-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.95);
	margin: 0;
}
.mega-menu-feature-bottom { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: #fff; }
.mega-menu-feature-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.2;
	margin: 0 0 0.75rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.mega-menu-feature-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.8);
	padding-bottom: 0.25rem;
}
.mega-menu-feature-cta .icon-arrow-right { filter: brightness(0) invert(1); }

.header-actions { display: flex; align-items: center; gap: 0.25rem; position: relative; z-index: 2; }
.header-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0.5rem;
	transition: opacity 0.3s ease;
}
.header-icon-btn:hover { opacity: 0.7; }
.header-cart-btn { transition: opacity 0.3s ease, transform 0.3s ease; }
.header-cart-btn:hover { transform: rotate(-6deg); }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	width: 20px; height: 20px;
	display: flex; align-items: center; justify-content: center;
	font-size: 0.75rem; font-weight: 500;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle-wrap { display: flex; align-items: center; flex-shrink: 0; }
@media (min-width: 1024px) { .mobile-menu-toggle-wrap { display: none; } }
.mobile-menu-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.3s ease;
	flex-shrink: 0;
}
.mobile-menu-toggle:hover { opacity: 0.6; }
.mobile-menu-toggle-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.mobile-menu-toggle .mobile-menu-toggle-icon--close {
	display: none !important;
}
.mobile-menu-toggle .mobile-menu-toggle-icon--open {
	display: inline-block !important;
}
body.mobile-menu-open .mobile-menu-toggle .mobile-menu-toggle-icon--open {
	display: none !important;
}
body.mobile-menu-open .mobile-menu-toggle .mobile-menu-toggle-icon--close {
	display: inline-block !important;
}

.mobile-menu {
	position: fixed;
	top: 0; left: 0;
	width: 88vw; max-width: 24rem;
	height: 100vh;
	height: 100dvh;
	background: var(--color-background);
	border-right: 1px solid var(--color-border);
	z-index: 710;
	transform: translateX(-100%);
	transition: transform 0.4s var(--transition-smooth);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
body.mobile-menu-open { overflow: hidden; }
body.mobile-menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu-logo {
	display: flex;
	align-items: center;
	min-width: 0;
}
.mobile-menu-logo .site-logo-text {
	font-size: 1.125rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.25rem;
	height: 5rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	flex-shrink: 0;
}
.mobile-menu-close {
	padding: 0.25rem;
	background: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.3s ease;
}
.mobile-menu-close:hover { opacity: 0.6; }
.mobile-menu-nav {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0.75rem 0.5rem;
}
.mobile-nav-item { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.mobile-nav-toggle, .mobile-nav-link {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0.75rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.4;
	color: var(--color-foreground);
}
.mobile-nav-submenu {
	padding: 0 0.75rem 0.75rem;
	animation: fadeIn 0.3s ease;
}
.mobile-nav-column { margin-bottom: 1rem; }
.mobile-nav-column:last-child { margin-bottom: 0.5rem; }
.mobile-nav-column-title {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
	margin: 0 0 0.5rem;
}
.mobile-nav-sublinks { list-style: none; margin: 0; padding: 0; }
.mobile-nav-sublink, .mobile-nav-shop-all {
	width: 100%;
	text-align: left;
	padding: 0.625rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.2s ease;
}
.mobile-nav-sublink:hover { color: var(--color-primary); }
.mobile-nav-shop-all {
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.mobile-nav-chevron { width: 16px; height: 16px; transition: transform 0.3s ease; }
.mobile-nav-item.is-expanded .mobile-nav-chevron { transform: rotate(180deg); }
.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-footer-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem;
	border: 1px solid var(--color-border);
	background: none;
	cursor: pointer;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.mobile-menu-footer-btn:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.mobile-menu-footer-cart {
	grid-column: span 2;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.mobile-menu-footer-cart:hover { opacity: 0.9; background: var(--color-primary); color: var(--color-primary-foreground); }
.mobile-menu-overlay {
	position: fixed; inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 650;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
body.mobile-menu-open .mobile-menu-overlay { opacity: 1; pointer-events: auto; }

/* ------------------------------------------------------------------------ *
 * ICONS — Lucide parity (stroke 1.5 default, sizes per context)
 * ------------------------------------------------------------------------ */

.icon-menu, .icon-close, .icon-search, .icon-bag, .icon-arrow-left, .icon-arrow-right,
.icon-chevron-down, .icon-check, .icon-bag-lg, .icon-mail, .icon-phone, .icon-send,
.icon-minus, .icon-plus, .icon-palette {
	display: inline-block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* Header / dialogs — 20px (w-5 h-5) */
.icon-menu { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='12' x2='20' y2='12'/%3E%3Cline x1='4' y1='6' x2='20' y2='6'/%3E%3Cline x1='4' y1='18' x2='20' y2='18'/%3E%3C/svg%3E"); }
.icon-close { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E"); }
.icon-search { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E"); }
.icon-bag { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E"); }
.icon-bag-lg {
	width: 48px;
	height: 48px;
	opacity: 0.4;
	margin: 0 auto 1.25rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E");
}

/* Arrows */
.icon-arrow-left { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fdf9f1' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 19-7-7 7-7'/%3E%3Cpath d='M19 12H5'/%3E%3C/svg%3E"); }
.icon-arrow-right { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E"); width: 16px; height: 16px; }
.hero-arrow .icon-arrow-left,
.hero-arrow .icon-arrow-right { width: 20px; height: 20px; }
.hero-arrow .icon-arrow-right { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fdf9f1' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E"); }
.btn-hero-primary .icon-arrow-right { width: 16px; height: 16px; stroke-width: 1.5; }
.highlight-card-link .icon-arrow-right { width: 14px; height: 14px; }
.theme-product-card__arrow .icon-arrow-right {
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}
.mega-menu-feature-cta .icon-arrow-right { width: 12px; height: 12px; filter: brightness(0) invert(1); }

/* Chevrons — 16px in filters, 12px in nav */
.icon-chevron-down { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); width: 16px; height: 16px; transition: transform 0.3s ease; }
.nav-chevron.icon-chevron-down { width: 12px; height: 12px; }
.mobile-nav-chevron.icon-chevron-down { width: 16px; height: 16px; }

/* Check, mail, phone, send */
.icon-check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fdf9f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); width: 28px; height: 28px; }
.icon-mail { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E"); width: 16px; height: 16px; }
.icon-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); width: 16px; height: 16px; }
.icon-send { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E"); width: 14px; height: 14px; }
.icon-minus { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E"); width: 12px; height: 12px; }
.icon-plus { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f2b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E"); width: 12px; height: 12px; }
.icon-palette {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8577f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13.5' cy='6.5' r='.5' fill='%23e8577f'/%3E%3Ccircle cx='17.5' cy='10.5' r='.5' fill='%23e8577f'/%3E%3Ccircle cx='8.5' cy='7.5' r='.5' fill='%23e8577f'/%3E%3Ccircle cx='6.5' cy='12.5' r='.5' fill='%23e8577f'/%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z'/%3E%3C/svg%3E");
	width: 16px;
	height: 16px;
}

/* Contextual icon colors */
.site-footer .icon-mail,
.site-footer .icon-phone { filter: brightness(0) invert(1); opacity: 0.85; }
.contact-modal-direct .icon-mail,
.contact-modal-direct .icon-phone { opacity: 0.7; }
.search-dialog-input-icon.icon-search { width: 16px; height: 16px; opacity: 0.6; }
.contact-modal-close .icon-close { width: 16px; height: 16px; }
.search-dialog-close .icon-close,
.theme-cart-drawer-header .icon-close { width: 20px; height: 20px; }
.mobile-menu-footer-btn .icon-search,
.mobile-menu-footer-btn .icon-bag { width: 16px; height: 16px; }
.mobile-menu-footer-cart .icon-bag { filter: brightness(0) invert(1); }

/* Shop filter active check — Lucide Check w-4 h-4 */
.shop-filter-option.is-active::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8577f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.shop-filter-color-wheel.is-active::after { display: none; }


/* ------------------------------------------------------------------------ *
 * HERO
 * ------------------------------------------------------------------------ */

.hero-carousel { position: relative; width: 100%; height: 100svh; overflow: hidden; }
/* Inner pages use .site-main, which always carries its own top padding
   (see the per-template rules below). The homepage <main> has no top
   padding so the full-bleed hero sits directly under the fixed header. */
.site-main { padding-top: var(--header-height); }
@media (min-width: 1024px) {
	.site-main { padding-top: var(--header-height-lg); }
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--transition-smooth); }
.hero-slide.is-active { opacity: 1; }
.hero-gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent 40%, rgba(0,0,0,0.55));
}
.hero-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	z-index: 20; padding: 0.75rem;
	transition: opacity 0.3s ease;
}
.hero-arrow-prev { left: 1rem; }
.hero-arrow-next { right: 1rem; }
@media (min-width: 768px) { .hero-arrow-prev { left: 2rem; } .hero-arrow-next { right: 2rem; } }
.hero-arrow:hover { opacity: 0.7; }
.hero-content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; }
@media (min-width: 768px) { .hero-content-wrap { align-items: center; } }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 5rem; }
@media (min-width: 768px) { .hero-content { padding-bottom: 0; } }
.hero-title {
	color: var(--color-background);
	font-size: 3rem; line-height: 1.02; margin-bottom: 2rem;
	text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 0.5rem; }
.hero-dot { height: 2px; width: 20px; background: color-mix(in srgb, var(--color-background) 40%, transparent); transition: all 0.5s ease; }
.hero-dot.is-active { width: 40px; background: var(--color-background); }

/* ------------------------------------------------------------------------ *
 * HIGHLIGHTS
 * ------------------------------------------------------------------------ */

.highlights-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
.highlights-heading-row { margin-bottom: 3rem; }
.highlights-heading-row .label-eyebrow { display: block; margin-top: 0.5rem; }
@media (min-width: 1024px) {
	.highlights-heading-row .label-eyebrow { margin-top: 1rem; }
}
.highlights-heading {
	font-size: clamp(3.25rem, 11vw, 10rem);
	line-height: 0.95;
	padding-bottom: 1rem;
}
@media (min-width: 1024px) { .highlights-heading { padding-bottom: 2rem; } }
.highlights-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 768px) { .highlights-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.highlight-card { display: block; }
.highlight-card.offset-mid { margin-top: 0; }
.highlight-card.highlight-aspect-tall .highlight-card-img-wrap { aspect-ratio: 3/4.4; }
@media (min-width: 1024px) { .highlight-card.offset-mid { margin-top: 4rem; } .highlight-card.offset-high { margin-top: 8rem; } }
.highlight-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--color-background); }
.highlight-card-img-wrap img { transition: transform 1.2s ease-out; }
.highlight-card:hover .highlight-card-img-wrap img { transform: scale(1.03); }
.highlight-card-caption { margin-top: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.4; max-width: 20rem; }
.highlight-card-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; transition: color 0.3s ease; }
.highlight-card:hover .highlight-card-link { color: var(--color-primary); }

/* ------------------------------------------------------------------------ *
 * SECTION HEADINGS (per-section scale — Section 2.2 rule 5)
 * ------------------------------------------------------------------------ */

.section-heading { font-family: var(--font-display); font-weight: 500; }
.categories-heading { font-size: 1.5rem; line-height: 1.25; }
@media (min-width: 768px) { .categories-heading { font-size: 1.875rem; } }
.process-heading { font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .process-heading { font-size: 3rem; } }
.shop-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }
.brand-story-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .brand-story-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .brand-story-heading { font-size: 3.75rem; } }
.brand-meaning-heading { font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 1024px) { .brand-meaning-heading { font-size: 3rem; } }
.brand-palette-heading { font-size: 1.875rem; line-height: 1.1; }
@media (min-width: 768px) { .brand-palette-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .brand-palette-heading { font-size: 3rem; } }
.faq-heading { font-size: 3rem; line-height: 1.05; letter-spacing: -0.01em; }
@media (min-width: 768px) { .faq-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 4.5rem; } }
.contact-title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.75rem; } }

/* ------------------------------------------------------------------------ *
 * CATEGORY GRID
 * ------------------------------------------------------------------------ */

.categories-section { padding: 0; }
.categories-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 4rem 0 1.5rem; }
@media (min-width: 1024px) {
	.categories-heading-row { padding-top: 5rem; }
}
.categories-heading-row .label-eyebrow { display: block; margin-bottom: 0.5rem; }
.categories-grid-wrap { padding-bottom: 4rem; }
@media (min-width: 1024px) {
	.categories-grid-wrap { padding-bottom: 5rem; }
}
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; } }
.category-tile { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.category-tile.is-active { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.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: 0; background: linear-gradient(to top, rgba(36,31,43,0.9), rgba(36,31,43,0.5) 55%, rgba(36,31,43,0.15)); }
.category-tile-label {
	position: absolute; left: 0; right: 0; bottom: 1.25rem;
	text-align: center; padding: 0 0.75rem;
	font-family: var(--font-body); font-weight: 700; color: #fff;
	font-size: 0.85rem; letter-spacing: 0.28em; text-transform: uppercase;
	text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}
.category-tile-badge {
	position: absolute; top: 0.75rem; left: 0.75rem;
	font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
	color: rgba(255,255,255,0.9); background: rgba(36,31,43,0.4);
	backdrop-filter: blur(4px); padding: 0.25rem 0.5rem;
}
.clear-filter-btn, .clear-all-filters-btn {
	font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--color-primary);
}
.clear-filter-btn:hover, .clear-all-filters-btn:hover { opacity: 0.7; }
.shop-filter-option-divider { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.shop-filter-color-wheel {
	color: var(--color-primary);
}

/* ------------------------------------------------------------------------ *
 * SHOP
 * ------------------------------------------------------------------------ */

.shop-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
.shop-heading-wrap { text-align: center; padding-bottom: 3rem; }
.shop-heading-wrap .label-eyebrow { margin-bottom: 0.75rem; }
.shop-body { padding-bottom: 5rem; }

.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; align-items: flex-start; } }
.shop-filter-dropdown { position: relative; flex: 1; max-width: 20rem; }
.shop-filter-btn {
	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.2s ease;
}
.shop-filter-btn:hover { border-color: var(--color-primary); }
.shop-filter-dropdown.is-open .icon-chevron-down { transform: rotate(180deg); }
.shop-filter-btn-inner { display: flex; flex-direction: column; align-items: flex-start; }
.shop-filter-label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-filter-value { font-size: 0.85rem; margin-top: 0.15rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.color-swatch-dot { width: 0.85rem; height: 0.85rem; border-radius: 50%; display: inline-block; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.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;
	display: none;
}
.shop-filter-dropdown.is-open .shop-filter-list { display: block; }
.shop-filter-option {
	width: 100%; display: flex; align-items: center; gap: 0.6rem; justify-content: space-between;
	padding: 0.6rem 1rem; text-align: left; font-size: 0.85rem;
}
.shop-filter-option:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.shop-filter-option.is-active { color: var(--color-primary); }

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

.theme-product-card-wrap.is-extra-hidden { display: none; }
.theme-product-card-wrap { display: flex; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	border-radius: var(--card-radius);
	border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	background: var(--color-background);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: box-shadow 0.5s var(--transition-smooth);
}
.theme-product-card:hover { box-shadow: var(--shadow-elevated); }
.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: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-product-card__image-wrapper img { transition: transform 1s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.04); }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3;
	padding: 0.4rem 0.75rem; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
	background: var(--color-foreground); color: var(--color-background); border-radius: 999px;
}
.theme-product-card__info {
	flex: 1;
	display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
	padding: 1rem 1.1rem;
	border-top: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
}
.theme-product-card__title-row { min-width: 0; }
.theme-product-card__title {
	font-family: var(--font-body); font-weight: 600; font-size: 0.875rem; line-height: 1.3;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
	transition: color 0.3s ease;
}
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.25rem; font-size: 0.8rem; }
.theme-product-card__arrow {
	flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
	transition: all 0.3s ease;
	pointer-events: auto;
	z-index: 3;
}
.theme-product-card:hover .theme-product-card__arrow { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-primary-foreground); }

.shop-load-more-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }
.shop-empty-state { text-align: center; padding: 5rem 0; border: 1px dashed var(--color-border); }
.shop-empty-state[hidden] { display: none; }
.shop-empty-title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty-text { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ------------------------------------------------------------------------ *
 * PROCESS / ABOUT
 * ------------------------------------------------------------------------ */

.process-section { scroll-margin-top: 6rem; }
.process-grid { display: grid; grid-template-columns: 1fr; min-height: 60vh; }
.process-copy-col .label-eyebrow { display: block; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 1fr; min-height: 80vh; } }
.process-image-col { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
.process-cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
@media (min-width: 1024px) { .process-image-col { min-height: 100%; order: 1; } }
.process-copy-col { display: flex; flex-direction: column; justify-content: center; padding: 3rem 1.5rem; order: 1; }
@media (min-width: 768px) { .process-copy-col { padding: 3rem 3.5rem; } }
@media (min-width: 1024px) { .process-copy-col { padding: 3rem 5rem; order: 2; } }
.process-body { display: flex; flex-direction: column; gap: 1rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.625; margin-bottom: 2.5rem; }
.process-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; border-top: 1px solid var(--color-border); padding-top: 2rem; }

/* ------------------------------------------------------------------------ *
 * BRAND SECTIONS
 * ------------------------------------------------------------------------ */

.brand-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
.brand-story { margin-bottom: 6rem; overflow: visible; }
.brand-story-top { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .brand-story-top { flex-direction: row; align-items: flex-end; justify-content: space-between; } .brand-story-heading { text-align: right; } }
.brand-story-body { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; overflow: visible; }
@media (min-width: 1024px) { .brand-story-body { grid-template-columns: 2fr 1fr; align-items: start; gap: 2.5rem; } }
.brand-story-media { position: relative; }
@media (min-width: 1024px) { .brand-story-media { margin-left: 4rem; } }
.brand-story-glyph {
	display: none;
	position: absolute; top: -2.5rem; right: 0;
	font-family: var(--font-display); font-style: italic; font-size: 18rem; line-height: 1;
	color: color-mix(in srgb, var(--color-foreground) 4%, transparent);
	pointer-events: none; user-select: none;
}
@media (min-width: 1024px) { .brand-story-glyph { display: block; } }
.brand-story-image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--card-radius); }
@media (min-width: 1024px) { .brand-story-image-wrap { aspect-ratio: 5/4; } }
.brand-story-quote-card {
	display: none;
	position: absolute; top: 25%; left: -1.5rem; width: 260px; z-index: 2;
	background: var(--color-background); border: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated); padding: 1.75rem; border-radius: var(--card-radius);
}
@media (min-width: 768px) { .brand-story-quote-card { display: block; } }
@media (min-width: 1024px) { .brand-story-quote-card { left: -6rem; width: 300px; } }
.brand-story-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; }
.brand-story-quote-sub { margin-top: 1rem; font-size: 0.8rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
.brand-story-side { display: flex; flex-direction: column; gap: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.05rem; line-height: 1.75; }
.brand-story-side-closing { font-family: var(--font-display); font-size: 1.125rem; padding-top: 0.5rem; }

.brand-meaning { margin-bottom: 5rem; }
.brand-meaning-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; }
@media (min-width: 1024px) { .brand-meaning-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.brand-meaning-image-wrap { position: relative; aspect-ratio: 3/4; border-radius: var(--card-radius); overflow: hidden; }
@media (min-width: 1024px) { .brand-meaning-image-wrap { aspect-ratio: auto; } }
.brand-meaning-copy { padding-top: 0.5rem; }
@media (min-width: 1024px) { .brand-meaning-copy { padding-top: 1rem; } }
.brand-meaning-body { display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.75; max-width: 58ch; }
@media (min-width: 1024px) { .brand-meaning-body { font-size: 1.125rem; } }
.brand-meaning-facts { margin-top: 2rem; border-top: 1px solid var(--color-border); }
.brand-meaning-fact-row { display: grid; grid-template-columns: 4fr 8fr; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
.brand-meaning-fact-row dt { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.brand-meaning-fact-row dd { margin: 0; font-size: 1.05rem; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.brand-meaning-quote { font-family: var(--font-display); font-size: 1.5rem; margin-top: 2rem; }
@media (min-width: 1024px) { .brand-meaning-quote { font-size: 1.875rem; } }
.brand-meaning-thanks { margin-top: 0.75rem; font-size: 1.05rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.6; max-width: 58ch; }

.brand-palette-heading-wrap { text-align: center; margin-bottom: 2.5rem; }
.brand-palette-text { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 0.95rem; line-height: 1.65; }
.brand-palette-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .brand-palette-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-palette-card { background: var(--color-background); border: 1px solid var(--color-border); padding: 1.5rem; text-align: center; border-radius: var(--card-radius); overflow: hidden; }
.brand-palette-card-image-wrap { margin: -1.5rem -1.5rem 1rem; aspect-ratio: 4 / 3; overflow: hidden; }
.brand-palette-card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-palette-card-label { font-family: var(--font-display); font-size: 1.25rem; }
.brand-palette-card-sub { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-top: 0.5rem; }

/* ------------------------------------------------------------------------ *
 * FAQ
 * ------------------------------------------------------------------------ */

.faq-wrap { margin-bottom: 0; }
.faq-heading-wrap { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .faq-heading-wrap { margin-bottom: 4rem; } }
.faq-list { max-width: 56rem; margin: 0 auto; border-top: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); }
.faq-question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-question-text { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.4; transition: color 0.3s ease; }
.faq-item:hover .faq-question-text { color: var(--color-primary); }
.faq-toggle-icon { flex-shrink: 0; margin-top: 0.25rem; width: 20px; height: 20px; color: var(--color-primary); transition: opacity 0.3s ease; background-repeat: no-repeat; background-position: center; background-size: contain; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8577f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 7 10 10'/%3E%3Cpath d='M17 7v10H7'/%3E%3C/svg%3E"); }
.faq-item.is-open .faq-toggle-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8577f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m17 17-10-10'/%3E%3Cpath d='M7 7v10h10'/%3E%3C/svg%3E"); }
.faq-item:hover .faq-toggle-icon { color: var(--color-accent); }
.faq-answer-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition-smooth); }
.faq-item.is-open .faq-answer-wrap { max-height: 500px; }
.faq-answer-text { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 0.9rem; line-height: 1.65; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
body.is-customizer .faq-item.is-open .faq-answer-wrap { max-height: 500px; }
body.is-customizer .faq-question { cursor: pointer; }

/* ------------------------------------------------------------------------ *
 * RESOURCES
 * ------------------------------------------------------------------------ */

.resources-section {
	padding-top: 5rem;
	padding-bottom: 0;
	scroll-margin-top: 6rem;
}
@media (min-width: 1024px) {
	.resources-section { padding-top: 7rem; }
}

/* ------------------------------------------------------------------------ *
 * CONTACT SECTION
 * ------------------------------------------------------------------------ */

.contact-section { position: relative; margin-top: 6rem; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(36,31,43,0.55), rgba(36,31,43,0.7) 60%, rgba(36,31,43,0.8)); }
.contact-content { position: relative; z-index: 1; text-align: center; padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .contact-content { padding-top: 7rem; padding-bottom: 7rem; } }
.contact-eyebrow { color: var(--color-background); }
.contact-title { color: var(--color-background); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.contact-text { max-width: 32rem; margin: 0 auto 2.5rem; color: var(--color-background); font-size: 1rem; line-height: 1.6; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.contact-buttons { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .contact-buttons { flex-direction: row; } }
.contact-buttons .btn-contact-primary { background: var(--color-background); color: var(--color-foreground); }
.contact-buttons .btn-contact-primary:hover { background: color-mix(in srgb, var(--color-background) 90%, transparent); }

/* ------------------------------------------------------------------------ *
 * DIALOGS (search + contact modal)
 * ------------------------------------------------------------------------ */

.theme-dialog { position: fixed; inset: 0; z-index: 900; display: none; }
.theme-dialog.is-open { display: block; }
.theme-dialog-overlay {
	position: absolute; inset: 0; background: rgba(36,31,43,0.5);
	border: none; padding: 0; cursor: pointer;
}

/* Contact modal — centered like Lovable DialogContent (fixed 50%/50%) */
.contact-dialog .theme-dialog-overlay { backdrop-filter: blur(2px); }
.contact-dialog .theme-dialog-panel,
.contact-modal-panel {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	margin: 0;
	max-width: 32rem;
	width: calc(100% - 2rem);
	max-height: 90vh;
	overflow-y: auto;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: var(--card-radius);
	box-shadow: var(--shadow-elevated);
	padding: 1.5rem;
	animation: contactModalIn 0.2s var(--transition-smooth);
}
@keyframes contactModalIn {
	from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
	to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.contact-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; cursor: pointer; padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s ease; }
.contact-modal-close:hover { opacity: 1; }
.contact-modal-header { margin-bottom: 0; }
.contact-modal-eyebrow { display: block; margin-bottom: 0.5rem; }
.contact-modal-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.25;
	margin: 0 0 0.5rem;
}
.contact-modal-description {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	line-height: 1.625;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	margin: 0;
}
.contact-modal-direct {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.875rem;
	border-top: 1px solid var(--color-border);
	padding-top: 1rem;
	margin-top: 0.5rem;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}
.contact-modal-direct-row { display: flex; align-items: center; gap: 0.5rem; }
.contact-modal-mailto, .contact-modal-tel { color: inherit; transition: color 0.2s ease; word-break: break-all; }
.contact-modal-mailto:hover, .contact-modal-tel:hover { color: var(--color-foreground); }
.contact-modal-form { margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; margin-bottom: 0.375rem; }
.form-field input, .form-field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background);
	border: 1px solid var(--color-border); font-size: 0.875rem; font-family: var(--font-body);
	transition: border-color 0.2s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--color-primary); }
.form-field textarea { resize: none; }
.contact-form-footer { display: flex; justify-content: flex-end; }
.contact-form-footer .btn { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 2.75rem; padding: 0 1.5rem; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; }
.contact-form-status { font-size: 0.8rem; color: var(--color-primary); min-height: 1.2em; }
.contact-modal-success { text-align: center; padding: 2rem 0; }
.contact-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.contact-modal-success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.contact-modal-success p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* Search dialog — full-width panel like Lovable */
.search-dialog .search-dialog-overlay {
	position: absolute; inset: 0;
	background: rgba(36,31,43,0.4);
	backdrop-filter: blur(4px);
}
.search-dialog-panel {
	position: relative;
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
	background: var(--color-background);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
	animation: fadeIn 0.3s ease;
}
.search-dialog-close {
	position: absolute;
	top: 1.25rem; right: 1.25rem;
	z-index: 2;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}
@media (min-width: 1024px) { .search-dialog-close { top: 1.75rem; right: 2rem; } }
.search-dialog-close:hover { opacity: 1; }
.search-dialog-body { padding-block: 2.5rem; }
@media (min-width: 1024px) { .search-dialog-body { padding-block: 3.5rem; } }
.search-dialog-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 1024px) {
	.search-dialog-layout { grid-template-columns: 260px 1fr; gap: 4rem; }
}
.search-dialog-sidebar-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin: 0 0 1.5rem;
}
.search-dialog-categories { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.search-dialog-category-link {
	background: none; border: none; padding: 0; cursor: pointer; text-align: left;
	font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.2s ease;
}
.search-dialog-category-link:hover { color: var(--color-primary); }
.search-dialog-color-search { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.search-dialog-color-label { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin: 0 0 0.75rem; }
.search-dialog-color-btn {
	display: flex; align-items: center; gap: 0.75rem;
	background: none; border: none; padding: 0; cursor: pointer; text-align: left;
}
.search-color-wheel {
	width: 2.25rem; height: 2.25rem; border-radius: 50%; flex-shrink: 0;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background: conic-gradient(from 0deg, #c44569, #c9a24c, #9fae8c, #2a3a6b, #6b2c4a, #c44569);
}
.search-color-btn-title {
	display: block;
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
	transition: color 0.2s ease;
}
.search-dialog-color-btn:hover .search-color-btn-title { color: var(--color-primary); }
.search-color-btn-sub { display: block; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.125rem; }
.search-dialog-main { padding-right: 0; }
@media (min-width: 1024px) { .search-dialog-main { padding-right: 4rem; } }
.search-dialog-input-row {
	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-input-icon { opacity: 0.6; flex-shrink: 0; }
.search-dialog-input {
	flex: 1; border: none; background: transparent; outline: none;
	font-family: var(--font-display); font-size: 1.5rem;
}
.search-dialog-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.search-dialog-results-wrap { margin-top: 2.5rem; }
.search-dialog-results-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin: 0 0 1.5rem;
}
.search-dialog-results {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
@media (min-width: 768px) { .search-dialog-results { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .search-dialog-results { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.search-result-card {
	background: none; border: none; padding: 0; cursor: pointer; text-align: left;
}
.search-result-image-wrap { aspect-ratio: 1; overflow: hidden; background: var(--color-secondary); }
.search-result-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.search-result-card:hover .search-result-img { transform: scale(1.05); }
.search-result-title {
	margin: 0.75rem 0 0;
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
	line-height: 1.35;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.search-result-price { margin: 0.25rem 0 0; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.search-dialog-no-results { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

body.theme-dialog-open { overflow: hidden; }

/* ------------------------------------------------------------------------ *
 * FOOTER
 * ------------------------------------------------------------------------ */

.site-footer { background: var(--color-primary); color: var(--color-primary-foreground); border-top: 1px solid var(--color-primary); }
.footer-inner { padding-top: 4rem; padding-bottom: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; } }
.footer-logo-link { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo-img { filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.75rem; letter-spacing: 0.16em; opacity: 0.8; margin-top: 0.75rem; }
.footer-description { margin-top: 1.25rem; font-size: 0.875rem; max-width: 24rem; line-height: 1.6; opacity: 0.85; }
.footer-nav-list, .footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 { margin-bottom: 1.25rem; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); }
.footer-contact-list li { display: flex; align-items: center; gap: 0.5rem; }
.footer-nav-list a, .footer-contact-list a { font-size: 0.875rem; opacity: 0.85; transition: opacity 0.3s ease; }
.footer-nav-list a:hover, .footer-contact-list a:hover { opacity: 1; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copyright, .footer-credit { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.footer-credit a { text-decoration: underline; text-underline-offset: 4px; }

/* ------------------------------------------------------------------------ *
 * GENERIC PAGE
 * ------------------------------------------------------------------------ */

.generic-page, .notfound-page { padding-top: calc(var(--header-height) + 2rem); min-height: 60vh; }
.page-container { padding-bottom: 5rem; }
.page-title { font-size: 2.25rem; margin-bottom: 1.5rem; }
.notfound-container { text-align: center; padding: 6rem 0; }
.notfound-title { font-size: 4rem; margin-bottom: 1rem; }
.notfound-text { font-size: 1.1rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.notfound-cta { color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================================
   WOOCOMMERCE
   ========================================================================== */

.single-product .site-main { padding-top: calc(var(--header-height) + 1.5rem); }
@media (min-width: 1024px) {
	.single-product .site-main { padding-top: calc(var(--header-height-lg) + 1rem); }
}
.single-product-breadcrumb { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; }
.single-product-breadcrumb a:hover { color: var(--color-foreground); }
.breadcrumb-sep { margin: 0 0.5rem; }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; min-width: 0; margin-bottom: 4rem; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 420px; gap: 2.5rem; align-items: start; } }
@media (min-width: 1280px) { .theme-product-layout { grid-template-columns: 1fr 460px; } }
@media (min-width: 1024px) {
	.theme-product-gallery { position: sticky; top: calc(var(--header-height-lg) + 1rem); align-self: start; }
}
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery-inner { display: flex; flex-direction: row-reverse; gap: 1rem; }
.theme-product-thumbnails { display: flex; flex-direction: column; gap: 0.75rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { width: 4rem; height: 4rem; border: 2px solid transparent; opacity: 0.6; overflow: hidden; border-radius: 4px; transition: all 0.2s ease; position: relative; }
.theme-product-thumb img { position: relative; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-foreground); }
.theme-product-main-image-wrap { position: relative; flex: 1; aspect-ratio: 4/5; overflow: hidden; border-radius: 6px; background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }

.single-product-cats { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; }
.single-product-cats a { color: inherit; }
.single-product-cats a:hover { color: var(--color-primary); }
.product-title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.5;
	margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .product-title { font-size: 1rem; } }
.single-product-price { font-size: 1.25rem; margin-bottom: 1rem; }
.single-product-price .amount { color: var(--color-foreground); }
.stock.out-of-stock { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; }
.single-product-note { background: color-mix(in srgb, var(--color-secondary) 70%, transparent); padding: 1rem 1.25rem; border-radius: 6px; font-family: var(--font-body); font-size: 0.8125rem; line-height: 1.625; margin-bottom: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.single-product-description { margin-bottom: 1.5rem; font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); overflow-wrap: break-word; word-break: break-word; }
.single-product-details { margin-top: 2.5rem; }
.single-product-details-title { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.single-product-details-body { font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.contact-priced-note { margin-top: 0.75rem; font-size: 0.8rem; text-align: center; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 0.85rem; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: color-mix(in srgb, var(--color-secondary) 70%, transparent); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; -moz-appearance: textfield; }
.theme-qty-input::-webkit-inner-spin-button, .theme-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.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-primary) !important;
	color: var(--color-primary-foreground) !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: 0.8rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em !important;
	text-transform: none !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-primary-foreground) !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-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

.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 .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error { color: var(--color-primary); font-size: 0.85rem; }

/* Variation attributes */
.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.75rem;
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
.single-product .variations tbody td.label label { font: inherit; color: inherit; }
.single-product .variations_form .single_add_to_cart_button.disabled,
.single-product .variations_form .single_add_to_cart_button:disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single-product .variations tbody td.value { padding-top: 0; padding-bottom: 1rem; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill { padding: 0.5rem 1rem; border: 1px solid var(--color-border); font-size: 0.8rem; transition: all 0.2s ease; }
.theme-attr-pill.is-active, .theme-attr-pill:hover { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }

/* Card compact button (none currently used, reserved for future card add-to-cart variants) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: var(--btn-icon-padding) !important;
}

/* Related products */
.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } }

/* Shop archive */
.woocommerce-archive-main { padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 4rem; }
.archive-product-grid { margin-top: 2rem; }

/* ------------------------------------------------------------------------ *
 * SIDE CART DRAWER
 * ------------------------------------------------------------------------ */

#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 800;
	background: rgba(36,31,43,0.3);
	opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%;
	width: 100%; max-width: 32rem;
	background: var(--color-background);
	z-index: 850;
	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-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer-empty p { margin-bottom: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.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-img { width: 6rem; height: 8rem; flex-shrink: 0; overflow: hidden; background: color-mix(in srgb, var(--color-secondary) 60%, transparent); position: relative; border-radius: 4px; }
.theme-cart-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item-title { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.3rem; }
.theme-cart-item-title:hover { opacity: 0.7; }
.theme-cart-item-variation { font-size: 0.75rem; font-style: italic; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 0.3rem; }
.theme-cart-item-price { font-size: 0.9rem; }
.theme-cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-qty-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.4rem 0.6rem; min-width: 2rem; }
.theme-cart-qty-value { padding: 0 0.6rem; font-size: 0.85rem; min-width: 28px; text-align: center; }
.theme-cart-remove { font-size: 0.75rem; text-decoration: underline; text-underline-offset: 4px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-remove:hover { color: var(--color-foreground); }
.theme-cart-drawer-footer { padding: 1.5rem 2rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-shipping-note { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-checkout-btn { width: 100%; }

/* ==========================================================================
   CHECKOUT BLOCK, CART & ACCOUNT PAGES
   ========================================================================== */

body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: calc(var(--header-height) + 2rem);
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .site-main,
	body.woocommerce-cart .site-main,
	body.woocommerce-account .site-main {
		padding-top: calc(var(--header-height-lg) + 2rem);
	}
}

/* Flatten WC Blocks checkout to a single 2-column grid (matches Lovable layout). */
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
	display: block !important;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 3rem !important;
	align-items: start !important;
	width: 100% !important;
	max-width: none !important;
}

@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		grid-template-columns: 1fr 1fr !important;
		gap: 4rem !important;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	grid-column: auto !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
	background-color: color-mix(in srgb, var(--color-secondary) 60%, transparent) !important;
	border-radius: var(--card-radius) !important;
	padding: 2rem !important;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	grid-column: 1 / -1 !important;
}

/* Checkout form inputs — match Lovable (WC default padding preserved via component wrappers). */
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
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,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .woocommerce-checkout .form-row select {
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.375rem !important;
	width: 100% !important;
	max-width: none !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}

body.woocommerce-checkout input::placeholder,
body.woocommerce-checkout textarea::placeholder,
body.woocommerce-checkout .wc-block-components-text-input input::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 45%, transparent) !important;
	opacity: 1 !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	text-transform: none !important;
	width: 100% !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	opacity: 0.88 !important;
}

body.woocommerce-checkout h1,
body.woocommerce-checkout h2,
body.woocommerce-checkout .wc-block-components-title {
	font-family: var(--font-display) !important;
	font-weight: 700 !important;
	color: var(--color-foreground) !important;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
}
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 { margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem;
	padding: 1.5rem; background: color-mix(in srgb, var(--color-secondary) 50%, transparent); border-radius: var(--card-radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { list-style: none; font-size: 0.9rem; }
body.theme-thankyou-page h2, .theme-thankyou-content h1,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }
