/* =========================================================================
   LTP ARTWORKS — THEME STYLESHEET
   ========================================================================= */

@font-face {
	font-family: 'Photograph Signature';
	src: url('../fonts/Photograph_Signature.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-background: #faf6f0;
	--color-foreground: #2d1b21;
	--color-card: #fcfbf7;
	--color-primary: #bd284d;
	--color-primary-foreground: #fbf8f4;
	--color-secondary: #f0e6db;
	--color-secondary-foreground: #39222a;
	--color-muted: #f1ebe4;
	--color-muted-foreground: #6b575e;
	--color-accent: #22a09c;
	--color-accent-foreground: #fbf8f4;
	--color-border: #e0d7cc;
	--color-gold: #f4b625;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Playfair Display', serif;
	--font-body: 'Jost', sans-serif;
	--font-script: 'Photograph Signature', cursive;

	--radius: 1rem;
	--shadow-soft: 0 4px 20px -4px rgba(45, 27, 33, 0.08);
	--shadow-elevated: 0 8px 40px -8px rgba(45, 27, 33, 0.16);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--logo-height: 48px;
	--header-height: 84px;

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.9rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0.6rem;
	--card-radius: 1.5rem;
	--section-padding: 2rem;
	--checkout-gap: 2rem;
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

html, body { overflow-x: hidden; max-width: 100%; }

body {
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

img, video { max-width: 100%; display: block; }

img:not(.cover-img):not(.hero-slide):not(.theme-product-card__image):not(.about-portrait-img):not(.about-logo-badge__img):not(.site-logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-slide, .theme-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
dl, dt, dd { margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

a, button {
	transition: color 0.25s var(--transition-smooth),
		background-color 0.3s var(--transition-smooth),
		border-color 0.3s var(--transition-smooth),
		opacity 0.25s var(--transition-smooth),
		transform 0.3s var(--transition-smooth),
		box-shadow 0.3s var(--transition-smooth);
}
button:not(:disabled):active { transform: translateY(1px) scale(0.99); }

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.container-wide { padding-inline: 2rem; }
}

.text-primary { color: var(--color-primary); }
.heading-emphasis { font-style: italic; }
.scroll-mt { scroll-margin-top: 6rem; }

body.theme-no-hero .site-main { padding-top: var(--header-height); }

/* Admin bar: keep fixed header below WP toolbar in preview / logged-in views */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
body.admin-bar.theme-no-hero .site-main,
body.admin-bar.woocommerce-checkout .site-main,
body.admin-bar.woocommerce-cart .site-main,
body.admin-bar.woocommerce-account .site-main,
body.admin-bar.theme-thankyou-page .site-main {
	padding-top: calc(var(--header-height) + 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero .site-main,
	body.admin-bar.woocommerce-checkout .site-main,
	body.admin-bar.woocommerce-cart .site-main,
	body.admin-bar.woocommerce-account .site-main,
	body.admin-bar.theme-thankyou-page .site-main {
		padding-top: calc(var(--header-height) + 46px);
	}
}
body.admin-bar .hero-section { padding-top: calc(5rem + 32px); }
@media (min-width: 640px) {
	body.admin-bar .hero-section { padding-top: calc(6rem + 32px); }
}
@media screen and (max-width: 782px) {
	body.admin-bar .hero-section { padding-top: calc(5rem + 46px); }
}
body.admin-bar .theme-404 { padding-top: calc(var(--header-height) + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar .theme-404 { padding-top: calc(var(--header-height) + 46px); }
}

/* =========================================================================
   SCROLL REVEAL (Section 2.1)
   ========================================================================= */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
	will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal.reveal-left { transform: translateX(-40px); }
.reveal.reveal-left.is-visible { transform: translateX(0); }

.reveal.reveal-scale { transform: scale(0.94); }
.reveal.reveal-scale.is-visible { transform: scale(1); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

body.is-customizer .reveal,
body.is-customizer .reveal-left,
body.is-customizer .reveal-scale {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-left, .reveal-scale {
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn-hero-primary, .btn-hero-outline, .btn-about-primary, .btn-about-outline,
.btn-cta, .btn-contact-submit, .btn-primary, .btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	height: var(--btn-height);
	padding: var(--btn-padding);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	text-transform: none;
	white-space: nowrap;
}

.btn-hero-primary, .btn-about-primary, .btn-primary {
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
}
.btn-hero-primary:hover, .btn-about-primary:hover, .btn-primary:hover { background-color: var(--color-accent); opacity: 0.9; }
.btn-about-primary { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.btn-about-primary:hover { background-color: var(--color-primary); opacity: 0.9; }

.btn-hero-outline {
	border: 1px solid rgba(255,255,255,0.8);
	color: var(--color-background);
	background: transparent;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); }

.btn-about-outline {
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	background: transparent;
	color: var(--color-foreground);
}
.btn-about-outline:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }

.btn-outline {
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
}
.btn-outline:hover { background: rgba(45,27,33,0.05); }

.btn-cta {
	background-color: var(--color-background);
	color: var(--color-foreground);
}
.btn-cta:hover { background-color: var(--color-background); opacity: 0.9; }
.btn-cta__icon { width: 16px; height: 16px; transition: transform 0.3s var(--transition-smooth); }
.btn-cta:hover .btn-cta__icon { transform: translateX(4px); }

.btn-contact-submit {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 0 1.75rem;
}
.btn-contact-submit:hover { opacity: 0.9; }
.btn-contact-submit:disabled { opacity: 0.6; cursor: wait; }

/* =========================================================================
   BADGES
   ========================================================================= */

.badge {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	font-size: 0.625rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-family: var(--font-body);
}
.badge--sold-out { background: var(--color-foreground); color: var(--color-background); }
.badge--coming-soon { background: var(--color-accent); color: #fff; }
.badge--ready { background: color-mix(in srgb, var(--color-background) 90%, transparent); color: var(--color-accent); border: 1px solid var(--color-border); }
.badge--art-not-final { background: color-mix(in srgb, var(--color-background) 90%, transparent); color: var(--color-foreground); border: 1px solid var(--color-border); }

/* =========================================================================
   HEADER
   ========================================================================= */

.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	animation: slideDown 0.5s var(--transition-smooth) forwards;
	padding: 0.5rem 0.75rem 0;
}
@media (min-width: 640px) { .site-header { padding: 0.5rem 1.5rem 0; } }

.site-header__bar {
	max-width: 1400px;
	margin: 0 auto;
	border: 1px solid var(--color-border);
	background: color-mix(in srgb, var(--color-card) 95%, transparent);
	backdrop-filter: blur(12px);
	border-radius: 999px;
	box-shadow: 0 4px 20px -8px rgba(45,27,33,0.12);
	transition: box-shadow 0.3s var(--transition-smooth), border-radius 0.3s var(--transition-smooth);
}
.site-header.is-scrolled .site-header__bar { box-shadow: 0 8px 30px -12px rgba(45,27,33,0.2); }
.site-header.is-mobile-open .site-header__bar { border-radius: 1.5rem; }

.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	height: 56px;
	padding: 0 0.75rem 0 1rem;
}
@media (min-width: 640px) { .site-header__nav { height: 72px; gap: 1.5rem; padding: 0 0.75rem 0 1.25rem; } }

.site-header__brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
/* Logo size controlled by Customizer (--logo-height). Exclude from img height:auto reset. */
img.site-logo-img,
.site-logo-img {
	height: var(--logo-height, 48px);
	max-height: var(--logo-height, 48px);
	width: auto !important;
	max-width: none;
	display: block;
	object-fit: contain;
}
.site-logo-text { font-family: var(--font-display); font-size: 1.25rem; }

.site-header__links { display: none; align-items: center; gap: 1.5rem; margin-left: auto; }
@media (min-width: 768px) { .site-header__links { display: flex; } }
.site-header__links .theme-nav-list { display: flex; align-items: center; gap: 1.5rem; }
.site-header__links .theme-nav-list a { font-size: 0.9rem; }
.site-header__links .theme-nav-list a:hover { color: var(--color-primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.site-header__cart-btn {
	position: relative;
	display: flex;
	padding: 0.6rem;
	border-radius: 999px;
}
.site-header__cart-btn:hover { background: color-mix(in srgb, var(--color-secondary) 70%, transparent); }
.site-header__cart-icon { width: 20px; height: 20px; }
.theme-cart-count {
	position: absolute;
	top: 0; right: 0;
	width: 16px; height: 16px;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 500;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

.site-header__menu-toggle { display: flex; padding: 0.6rem; border-radius: 999px; }
.site-header__menu-toggle:hover { background: color-mix(in srgb, var(--color-secondary) 70%, transparent); }
@media (min-width: 768px) { .site-header__menu-toggle { display: none; } }
.icon-menu-open, .icon-menu-close { width: 20px; height: 20px; }
.icon-menu-close { display: none; }
.site-header.is-mobile-open .icon-menu-open { display: none; }
.site-header.is-mobile-open .icon-menu-close { display: block; }

.site-header__mobile-panel {
	display: grid;
	grid-template-rows: 0fr;
	border-top: 1px solid transparent;
	opacity: 0;
	visibility: hidden;
	transition:
		grid-template-rows 0.4s var(--transition-smooth),
		opacity 0.3s var(--transition-smooth),
		visibility 0.3s var(--transition-smooth),
		border-color 0.3s var(--transition-smooth);
}
.site-header__mobile-panel-inner {
	overflow: hidden;
	min-height: 0;
}
.site-header.is-mobile-open .site-header__mobile-panel {
	grid-template-rows: 1fr;
	opacity: 1;
	visibility: visible;
	border-top-color: var(--color-border);
}
.theme-nav-list--mobile {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.75rem 1.5rem 1.15rem;
}
.theme-nav-list--mobile a,
.theme-nav-list--mobile li {
	display: block;
	opacity: 0;
	transform: translateY(-8px);
	transition:
		opacity 0.35s var(--transition-smooth),
		transform 0.35s var(--transition-smooth),
		color 0.25s var(--transition-smooth);
}
.theme-nav-list--mobile a {
	padding: 0.65rem 0;
	font-size: 0.95rem;
}
.theme-nav-list--mobile a:hover { color: var(--color-primary); }
.site-header.is-mobile-open .theme-nav-list--mobile a,
.site-header.is-mobile-open .theme-nav-list--mobile > li {
	opacity: 1;
	transform: translateY(0);
}
.site-header.is-mobile-open .theme-nav-list--mobile > li:nth-child(1),
.site-header.is-mobile-open .theme-nav-list--mobile > a:nth-child(1) { transition-delay: 0.05s; }
.site-header.is-mobile-open .theme-nav-list--mobile > li:nth-child(2),
.site-header.is-mobile-open .theme-nav-list--mobile > a:nth-child(2) { transition-delay: 0.1s; }
.site-header.is-mobile-open .theme-nav-list--mobile > li:nth-child(3),
.site-header.is-mobile-open .theme-nav-list--mobile > a:nth-child(3) { transition-delay: 0.15s; }
.site-header.is-mobile-open .theme-nav-list--mobile > li:nth-child(4),
.site-header.is-mobile-open .theme-nav-list--mobile > a:nth-child(4) { transition-delay: 0.2s; }
.site-header.is-mobile-open .theme-nav-list--mobile > li:nth-child(5),
.site-header.is-mobile-open .theme-nav-list--mobile > a:nth-child(5) { transition-delay: 0.25s; }
.site-header.is-mobile-open .theme-nav-list--mobile > li:nth-child(6),
.site-header.is-mobile-open .theme-nav-list--mobile > a:nth-child(6) { transition-delay: 0.3s; }

html.theme-mobile-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	.site-header__mobile-panel,
	.theme-nav-list--mobile a,
	.theme-nav-list--mobile li {
		transition: none !important;
	}
	.site-header.is-mobile-open .theme-nav-list--mobile a,
	.site-header.is-mobile-open .theme-nav-list--mobile > li {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================================
   HERO
   ========================================================================= */

.hero-section { position: relative; width: 100%; height: 100vh; display: flex; flex-direction: column; padding: 5rem 0.75rem 0.75rem; }
@media (min-width: 640px) { .hero-section { padding: 6rem 1.5rem 1.25rem; } }

.hero-frame {
	position: relative;
	width: 100%;
	flex: 1;
	min-height: 0;
	border-radius: 2rem;
	overflow: hidden;
	background: var(--color-secondary);
	box-shadow: 0 20px 60px -20px rgba(45,27,33,0.3);
	transition: transform 0.1s linear;
	transform-origin: center;
}
@media (min-width: 640px) { .hero-frame { border-radius: 2.5rem; } }

.hero-slides { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.4s var(--transition-smooth); }
.hero-slide.is-active { opacity: 1; }

.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom right,
		color-mix(in srgb, var(--color-foreground) 55%, transparent),
		color-mix(in srgb, var(--color-foreground) 40%, transparent) 45%,
		color-mix(in srgb, var(--color-foreground) 80%, transparent));
}

.hero-content-wrap { position: relative; z-index: 10; display: flex; height: 100%; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 1.5rem; max-width: 48rem; }
@media (min-width: 640px) { .hero-content { padding: 3.5rem 2.5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 3.5rem 3.5rem; } }

.hero-tagline { font-family: var(--font-script); font-size: 1.5rem; line-height: 1; color: var(--color-accent); }
@media (min-width: 640px) { .hero-tagline { font-size: 1.875rem; } }

.hero-heading {
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1.02;
	color: var(--color-background);
	margin-top: 1rem;
	text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
@media (min-width: 640px) { .hero-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-heading { font-size: 6rem; } }

.hero-heading-highlight {
	background: linear-gradient(to right, #f5d78e, #f0c294, #e79aa8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-description {
	margin-top: 1.25rem;
	max-width: 36rem;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-background) 90%, transparent);
	line-height: 1.6;
}
@media (min-width: 640px) { .hero-description { margin-top: 1.5rem; font-size: 1rem; } }

.hero-ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 640px) { .hero-ctas { margin-top: 2.25rem; } }

/* =========================================================================
   SECTION HEADINGS (Section 2.2.5 — per-section scales)
   ========================================================================= */

.section-heading { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.01em; }

/* Keep post-hero sections from collapsing under WP/Woo base styles */
main > section {
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.offerings-section { background: var(--color-background); }
/* Lovable: container-wide py-16 md:py-24 */
.offerings-inner {
	padding-block: 4rem;
}
@media (min-width: 768px) {
	.offerings-inner { padding-block: 6rem; }
}
/* Lovable: mb-16 md:mb-20 */
.offerings-header-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.offerings-header-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		margin-bottom: 5rem;
	}
}
.offerings-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .offerings-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .offerings-heading { font-size: 3.75rem; } }
.offerings-description { color: var(--color-muted-foreground); line-height: 1.6; font-size: 1rem; max-width: 36rem; }
@media (min-width: 768px) { .offerings-description { font-size: 1.125rem; padding-top: 0.75rem; } }

/* Lovable: gap-8 md:gap-10 pt-8 */
.offerings-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-top: 2rem;
}
@media (min-width: 640px) { .offerings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .offerings-grid { gap: 2.5rem; } }
@media (min-width: 1024px) { .offerings-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.offering-card {
	position: relative;
	background: var(--color-card);
	padding: 2rem;
	border-radius: 2.5rem;
	box-shadow: 0 10px 40px -15px rgba(45,27,33,0.1);
	transition: all 0.5s var(--transition-smooth);
}
.offering-card:hover { transform: translateY(-8px); }
.offering-card__badge {
	position: absolute;
	top: -1.75rem; left: -0.75rem;
	width: 4rem; height: 4rem;
	border-radius: 1rem;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-elevated);
	transition: transform 0.5s var(--transition-smooth);
}
.offering-card__icon { width: 28px; height: 28px; }
.offering-card--style-0 .offering-card__badge, .offering-card--style-2 .offering-card__badge { background: var(--color-accent); color: #fff; transform: rotate(12deg); }
.offering-card--style-1 .offering-card__badge, .offering-card--style-3 .offering-card__badge { background: var(--color-primary); color: var(--color-primary-foreground); transform: rotate(-6deg); }
.offering-card:hover .offering-card__badge { transform: rotate(0); }
.offering-card__body { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.offering-card__title { font-size: 1.875rem; line-height: 1.15; }
.offering-card__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; }
.offering-card__underline-wrap { padding-top: 0.5rem; opacity: 0; transition: opacity 0.5s var(--transition-smooth); }
.offering-card:hover .offering-card__underline-wrap { opacity: 1; }
.offering-card__underline { display: block; height: 2px; width: 4rem; background: var(--color-accent); }
.offering-card--style-1 .offering-card__underline, .offering-card--style-3 .offering-card__underline { background: var(--color-primary); }

/* =========================================================================
   ABOUT — match Lovable Index.tsx #about exactly
   ========================================================================= */

.about-section {
	position: relative;
	background: var(--color-secondary);
	overflow: hidden;
}

/* Lovable: container-wide relative py-20 md:py-28 */
.about-inner {
	position: relative;
	z-index: 1;
	padding-block: 5rem;
}
@media (min-width: 768px) {
	.about-inner { padding-block: 7rem; }
}

.about-blob {
	position: absolute;
	border-radius: 999px;
	filter: blur(64px);
	pointer-events: none;
	z-index: 0;
}
.about-blob--1 {
	top: -6rem;
	left: -6rem;
	width: 28rem;
	height: 28rem;
	background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}
.about-blob--2 {
	bottom: -8rem;
	right: -5rem;
	width: 32rem;
	height: 32rem;
	background: color-mix(in srgb, var(--color-accent) 10%, transparent);
}

/* Lovable: grid grid-cols-1 lg:grid-cols-12 gap-10 lg:gap-16 items-center max-w-6xl mx-auto */
.about-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
	max-width: 72rem;
	margin-inline: auto;
}
@media (min-width: 1024px) {
	.about-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 4rem;
	}
}

/* Lovable: lg:col-span-5 relative */
.about-portrait-col {
	position: relative;
	min-width: 0;
}
@media (min-width: 1024px) {
	.about-portrait-col { grid-column: span 5 / span 5; }
}

/* Lovable: relative aspect-[4/5] w-full max-w-[440px] mx-auto lg:mx-0 */
.about-portrait-frame-wrap {
	position: relative;
	aspect-ratio: 4 / 5;
	width: 100%;
	max-width: 440px;
	margin-inline: auto;
}
@media (min-width: 1024px) {
	.about-portrait-frame-wrap { margin-inline: 0; }
}

/* Lovable: absolute -inset-3 rounded-[2rem] border border-primary/30 */
.about-portrait-border {
	position: absolute;
	inset: -0.75rem;
	border-radius: 2rem;
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	pointer-events: none;
}

/* Lovable: absolute -bottom-4 -right-4 w-24 h-24 rounded-full bg-accent/90 hidden sm:block */
.about-portrait-dot {
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	width: 6rem;
	height: 6rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-accent) 90%, transparent);
	display: none;
	pointer-events: none;
}
@media (min-width: 640px) {
	.about-portrait-dot { display: block; }
}

/* Lovable: relative w-full h-full overflow-hidden rounded-[2rem] shadow-[...] */
.about-portrait-frame {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 2rem;
	box-shadow: 0 30px 80px -30px rgba(45, 27, 33, 0.35);
}

/* Lovable: w-full h-full object-cover — absolute fill keeps the 4/5 crop stable */
.about-portrait-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Lovable: -top-5 -left-5 sm:-top-6 sm:-left-6 w-20/24 rounded-2xl p-3 rotate-[-6deg] */
.about-logo-badge {
	position: absolute;
	top: -1.25rem;
	left: -1.25rem;
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: var(--color-background);
	box-shadow: 0 12px 30px -10px rgba(45, 27, 33, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	transform: rotate(-6deg);
	z-index: 2;
}
@media (min-width: 640px) {
	.about-logo-badge {
		top: -1.5rem;
		left: -1.5rem;
		width: 6rem;
		height: 6rem;
	}
}
.about-logo-badge__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Lovable: -bottom-3 left-4 sm:left-6 bg-background/95 backdrop-blur px-4 py-2 rounded-full shadow-md */
.about-signature-caption {
	position: absolute;
	bottom: -0.75rem;
	left: 1rem;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	z-index: 2;
}
@media (min-width: 640px) {
	.about-signature-caption { left: 1.5rem; }
}
.about-signature-caption span {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.875rem;
	color: var(--color-foreground);
	line-height: 1.25;
}

/* Lovable: lg:col-span-7 */
.about-copy-col { min-width: 0; }
@media (min-width: 1024px) {
	.about-copy-col { grid-column: span 7 / span 7; }
}

/* Lovable: inline-flex items-center gap-3 text-2xl md:text-3xl leading-none text-primary font-script */
.about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--color-primary);
	font-family: var(--font-script);
}
@media (min-width: 768px) {
	.about-eyebrow { font-size: 1.875rem; }
}
.about-eyebrow__line {
	width: 2rem;
	height: 1px;
	background: var(--color-primary);
	flex-shrink: 0;
}

/* Lovable: font-display text-4xl md:text-5xl lg:text-6xl leading-[1.05] mt-5 */
.about-heading {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.05;
	margin: 1.25rem 0 0;
	color: var(--color-foreground);
	letter-spacing: -0.01em;
}
@media (min-width: 768px) { .about-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-heading { font-size: 3.75rem; } }
.about-heading__name {
	font-style: italic;
	color: var(--color-primary);
}
/* Lovable: block text-accent font-display text-2xl md:text-3xl mt-3 not-italic */
.about-heading__sub {
	display: block;
	color: var(--color-accent);
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-top: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.about-heading__sub { font-size: 1.875rem; }
}

/* Lovable: mt-7 space-y-4 text-base md:text-lg leading-relaxed text-muted-foreground font-body max-w-2xl */
.about-paragraphs {
	margin-top: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 1rem;
	line-height: 1.625;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	max-width: 42rem;
}
.about-paragraphs p { margin: 0; }
@media (min-width: 768px) {
	.about-paragraphs { font-size: 1.125rem; }
}

/* Lovable: mt-9 grid grid-cols-3 gap-3 sm:gap-4 max-w-xl */
.about-stats {
	margin: 2.25rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	max-width: 36rem;
}
@media (min-width: 640px) {
	.about-stats { gap: 1rem; }
}
/* Lovable: rounded-2xl bg-background border border-border px-4 py-4 */
.about-stat {
	border-radius: 1rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	padding: 1rem;
	min-width: 0;
}
.about-stat dt {
	margin: 0;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	line-height: 1.25;
}
.about-stat dd {
	margin: 0.25rem 0 0;
	padding: 0;
	font-family: var(--font-display);
	font-size: 0.875rem;
	line-height: 1.375;
	color: var(--color-foreground);
}
@media (min-width: 768px) {
	.about-stat dd { font-size: 1rem; }
}

/* Lovable: mt-9 flex flex-wrap gap-3 */
.about-ctas {
	margin-top: 2.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.about-ctas .btn-about-primary,
.about-ctas .btn-about-outline {
	height: 2.75rem;
	padding-inline: 1.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	font-family: var(--font-body);
}

/* =========================================================================
   SHOP / GALLERY
   ========================================================================= */

/* Lovable: container-wide py-16 md:py-20 — vertical only here; horizontal via .container-wide */
.shop-section { padding-block: 4rem; }
@media (min-width: 768px) { .shop-section { padding-block: 5rem; } }
.shop-section.container-wide,
.shop-section .container-wide,
.shop-inner {
	/* ensure horizontal gutters always apply even if combined with section padding */
	padding-inline: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.shop-section.container-wide,
	.shop-section .container-wide,
	.shop-inner { padding-inline: 2rem; }
}
.shop-inner {
	width: 100%;
	max-width: 1400px;
	margin-inline: auto;
}
.shop-section--archive { padding-block: 4rem; }
@media (min-width: 768px) { .shop-section--archive { padding-block: 5rem; } }

.shop-header { text-align: center; margin-bottom: 3rem; }
.shop-eyebrow { display: block; font-size: 1.5rem; line-height: 1; color: var(--color-primary); font-family: var(--font-script); }
@media (min-width: 768px) { .shop-eyebrow { font-size: 1.875rem; } }
.shop-heading { font-size: 2.25rem; margin-top: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }
.shop-description { max-width: 36rem; margin: 0 auto 2rem; font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; }
@media (min-width: 768px) { .shop-description { font-size: 1rem; } }

.shop-filters { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; margin-bottom: 1rem; padding: 0 0.5rem; }
.theme-cat-filter, .shop-price-toggle {
	flex-shrink: 0;
	padding: 0.6rem 1.1rem;
	font-size: 0.875rem;
	border-radius: 999px;
	background: var(--color-secondary);
	color: var(--color-secondary-foreground);
	transition: all 0.3s var(--transition-smooth);
}
.theme-cat-filter.is-active { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-cat-filter:hover:not(.is-active) { background: var(--color-muted); }
.shop-price-toggle { display: flex; align-items: center; gap: 0.5rem; }
.shop-price-toggle:hover { background: var(--color-muted); }
.shop-price-toggle__chevron { width: 16px; height: 16px; transition: transform 0.3s var(--transition-smooth); }
.shop-price-toggle.is-open .shop-price-toggle__chevron { transform: rotate(180deg); }

.shop-price-panel { max-width: 24rem; margin: 0 auto; overflow: hidden; height: 0; opacity: 0; transition: height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth); }
.shop-price-panel.is-open { height: auto; opacity: 1; padding: 0.5rem 0; }
.shop-price-panel--static { height: auto; opacity: 1; padding: 0.5rem 0 1.5rem; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--color-muted-foreground); }

.price-range-wrapper { position: relative; height: 1.5rem; margin-bottom: 0.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-secondary); }
.range-track-fill { background: var(--color-primary); }
.range-input {
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; margin: 0;
	-webkit-appearance: none; appearance: none;
	background: transparent;
	pointer-events: none;
}
.range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: auto;
	width: 20px; height: 20px;
	border-radius: 999px;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	cursor: pointer;
	margin-top: 0;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 20px; height: 20px;
	border-radius: 999px;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	cursor: pointer;
}
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.theme-product-grid--related {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 1.5rem;
}
@media (min-width: 1024px) {
	.theme-product-grid--related {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		gap: 2rem;
	}
}

.theme-product-card-wrap { display: flex; width: 100%; min-width: 0; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	border-radius: 1rem;
	overflow: hidden;
	transition: box-shadow 0.3s var(--transition-smooth);
}
.theme-product-card:hover { box-shadow: 0 20px 40px -12px rgba(45,27,33,0.1); }
.theme-product-card--coming-soon { cursor: default; }

.theme-product-card__badge-topleft { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; }
.theme-product-card__badge-topright { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; }
.theme-product-card__image { transition: transform 0.6s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.06); }
.theme-product-card__image.is-faded { opacity: 0.7; }
.theme-product-card__image-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--color-muted); }
.theme-product-card__image-placeholder span { font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-muted-foreground) 40%, transparent); }

.theme-product-card__info { flex: 1; display: flex; flex-direction: column; padding: 1rem 1.1rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.theme-product-card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; min-width: 0; }
.theme-product-card__title { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.4; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 0.85rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-accent); }
.theme-product-card__price { font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
@media (min-width: 768px) { .theme-product-card__price { font-size: 1rem; } }
.theme-product-card__price .price del { opacity: 0.5; margin-right: 0.35rem; font-weight: 400; }

.shop-empty-message { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }

.shop-note { margin-top: 4rem; max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; }
@media (min-width: 768px) { .shop-note { margin-top: 5rem; } }
.shop-note__heading { display: block; font-family: var(--font-script); font-size: 1.875rem; color: var(--color-primary); line-height: 1; margin-bottom: 1rem; }
@media (min-width: 768px) { .shop-note__heading { font-size: 2.25rem; } }
.shop-note__text { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
@media (min-width: 768px) { .shop-note__text { font-size: 1.125rem; } }
.shop-note__cta { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); padding: 0.65rem 1.5rem; font-size: 0.875rem; font-weight: 500; box-shadow: var(--shadow-soft); transition: all 0.3s var(--transition-smooth); }
.shop-note__cta:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); opacity: 0.95; }
.shop-note__cta-icon { width: 16px; height: 16px; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */

.testimonials-section { position: relative; overflow: hidden; }
/* Lovable: pt-20 md:pt-28 pb-10 md:pb-14 */
.testimonials-inner {
	padding-top: 5rem;
	padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
	.testimonials-inner {
		padding-top: 7rem;
		padding-bottom: 3.5rem;
	}
}
.testimonials-header { margin-bottom: 3.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-header { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 5rem; } }
.testimonials-eyebrow { display: block; font-size: 1.5rem; color: var(--color-primary); font-family: var(--font-script); line-height: 1; }
@media (min-width: 768px) { .testimonials-eyebrow { font-size: 1.875rem; } }
.testimonials-heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .testimonials-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .testimonials-heading { font-size: 3.75rem; } }
.testimonials-rating { display: none; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .testimonials-rating { display: flex; } }
.testimonials-rating__stars { display: flex; gap: 0.15rem; }
.testimonials-star { width: 16px; height: 16px; color: var(--color-gold); fill: var(--color-gold); }
.testimonials-star--sm { width: 14px; height: 14px; }

.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
	display: flex;
	margin-left: -1.5rem;
	transition: transform 0.5s var(--transition-smooth);
}
@media (min-width: 768px) { .testimonial-track { margin-left: -2rem; } }
.testimonial-slide { flex: 0 0 100%; min-width: 0; padding-left: 1.5rem; box-sizing: border-box; }
@media (min-width: 768px) { .testimonial-slide { flex: 0 0 50%; padding-left: 2rem; } }

.testimonial-card-outer { padding: 1px; border-radius: 1rem; background: linear-gradient(to bottom right, color-mix(in srgb, var(--color-primary) 30%, transparent), color-mix(in srgb, var(--color-secondary) 30%, transparent), color-mix(in srgb, var(--color-primary) 10%, transparent)); height: 100%; transition: all 0.5s var(--transition-smooth); }
.testimonial-card-outer:hover { background: linear-gradient(to bottom right, color-mix(in srgb, var(--color-primary) 60%, transparent), color-mix(in srgb, var(--color-secondary) 50%, transparent), color-mix(in srgb, var(--color-primary) 30%, transparent)); }
.testimonial-card { position: relative; height: 100%; display: flex; flex-direction: column; padding: 2rem; border-radius: 1rem; overflow: hidden; background: linear-gradient(to bottom right, var(--color-background), var(--color-background), color-mix(in srgb, var(--color-secondary) 20%, transparent)); transition: all 0.5s var(--transition-smooth); }
@media (min-width: 768px) { .testimonial-card { padding: 2.5rem; } }
.testimonial-card-outer:hover .testimonial-card { transform: translateY(-4px); box-shadow: 0 18px 50px -12px rgba(0,0,0,0.18); }
.testimonial-card__blob { position: absolute; top: -6rem; right: -6rem; width: 16rem; height: 16rem; border-radius: 999px; background: radial-gradient(circle, color-mix(in srgb, var(--color-primary) 20%, transparent), transparent); filter: blur(48px); opacity: 0.6; pointer-events: none; }
.testimonial-card__quote-icon { width: 32px; height: 32px; color: color-mix(in srgb, var(--color-primary) 30%, transparent); margin-bottom: 1.25rem; position: relative; }
.testimonial-card__stars { display: flex; gap: 0.15rem; margin-bottom: 1.25rem; position: relative; }
.testimonial-card__quote { font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); flex: 1; position: relative; }
@media (min-width: 768px) { .testimonial-card__quote { font-size: 1.125rem; } }
.testimonial-card__footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); position: relative; display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(to bottom right, color-mix(in srgb, var(--color-primary) 20%, transparent), color-mix(in srgb, var(--color-secondary) 30%, transparent)); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.9rem; border: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent); }
.testimonial-card__name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; }
.testimonial-card__role { font-size: 0.75rem; letter-spacing: 0.02em; color: var(--color-muted-foreground); }

.testimonial-carousel__nav { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; margin-top: 2.5rem; }
.testimonial-carousel__btn { width: 44px; height: 44px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--transition-smooth); }
.testimonial-carousel__btn:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.testimonial-carousel__btn svg { width: 16px; height: 16px; }

/* =========================================================================
   FAQ
   ========================================================================= */

.faq-section { position: relative; overflow: hidden; }
.faq-blob { position: absolute; top: -5rem; right: -5rem; width: 24rem; height: 24rem; border-radius: 999px; background: color-mix(in srgb, var(--color-accent) 10%, transparent); filter: blur(60px); pointer-events: none; }
/* Lovable: container-wide py-16 md:py-20 */
.faq-inner { padding-block: 4rem; }
@media (min-width: 768px) { .faq-inner { padding-block: 5rem; } }
.faq-wrap { max-width: 56rem; margin-inline: auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .faq-header { margin-bottom: 4rem; } }
.faq-eyebrow { display: block; font-size: 1.5rem; color: var(--color-primary); font-family: var(--font-script); line-height: 1; }
@media (min-width: 768px) { .faq-eyebrow { font-size: 1.875rem; } }
.faq-heading { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 3.75rem; } }
.faq-description { margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; font-size: 1rem; color: var(--color-muted-foreground); line-height: 1.6; }

.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question { width: 100%; padding: 1.5rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; text-align: left; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.3; transition: color 0.3s var(--transition-smooth); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__question:hover span:first-child { color: var(--color-primary); }
.faq-item__icon-wrap { flex-shrink: 0; margin-top: 0.25rem; width: 2rem; height: 2rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); transition: all 0.3s var(--transition-smooth); }
.faq-item__icon-plus, .faq-item__icon-minus { width: 14px; height: 14px; }
.faq-item__icon-minus { display: none; }
.faq-item.is-open .faq-item__icon-wrap { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-primary-foreground); }
.faq-item.is-open .faq-item__icon-plus { display: none; }
.faq-item.is-open .faq-item__icon-minus { display: block; }
.faq-item:not(.is-open) .faq-item__question:hover .faq-item__icon-wrap { border-color: var(--color-primary); color: var(--color-primary); }
.faq-item__answer-wrap { height: 0; overflow: hidden; transition: height 0.35s var(--transition-smooth); }
.faq-item__answer { padding-bottom: 1.5rem; font-size: 1rem; color: var(--color-muted-foreground); line-height: 1.6; max-width: 48rem; }
@media (min-width: 768px) { .faq-item__answer { font-size: 1.125rem; } }

/* =========================================================================
   CTA BAND
   ========================================================================= */

.cta-band { position: relative; width: 100%; overflow: hidden; }
.cta-band__frame { position: relative; height: 80vh; min-height: 520px; width: 100%; }
.cta-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band__overlay-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 40%, transparent), color-mix(in srgb, var(--color-foreground) 30%, transparent), color-mix(in srgb, var(--color-foreground) 70%, transparent)); }
.cta-band__overlay-2 { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, color-mix(in srgb, var(--color-foreground) 35%, transparent) 100%); }
.cta-band__content-wrap {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 4rem;
	box-sizing: border-box;
}
@media (min-width: 768px) { .cta-band__content-wrap { padding-bottom: 6rem; } }
.cta-band__content { max-width: 48rem; }
.cta-band__eyebrow { display: block; font-size: 1.5rem; color: color-mix(in srgb, var(--color-background) 90%, transparent); font-family: var(--font-script); line-height: 1; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .cta-band__eyebrow { font-size: 1.875rem; } }
.cta-band__title { font-size: 2.25rem; color: var(--color-background); line-height: 1.05; }
@media (min-width: 768px) { .cta-band__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 4.5rem; } }
.cta-band__title-highlight { font-style: italic; color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); }
.cta-band__description { margin-top: 1.5rem; max-width: 36rem; color: color-mix(in srgb, var(--color-background) 85%, transparent); font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .cta-band__description { font-size: 1.125rem; } }
.cta-band__cta-wrap { margin-top: 2rem; }

/* =========================================================================
   CONTACT — match Lovable ContactSection.tsx exactly
   ========================================================================= */

.contact-section {
	position: relative;
	background: var(--color-background);
	overflow: hidden;
}
.contact-blob {
	position: absolute;
	border-radius: 999px;
	filter: blur(64px);
	pointer-events: none;
	z-index: 0;
}
/* Lovable: -top-32 -left-32 w-96 h-96 bg-primary/10 */
.contact-blob--1 {
	top: -8rem;
	left: -8rem;
	width: 24rem;
	height: 24rem;
	background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}
/* Lovable: -bottom-32 -right-32 w-[28rem] h-[28rem] bg-accent/15 */
.contact-blob--2 {
	bottom: -8rem;
	right: -8rem;
	width: 28rem;
	height: 28rem;
	background: color-mix(in srgb, var(--color-accent) 15%, transparent);
}

/* Lovable: container-wide py-24 md:py-32 relative */
.contact-inner {
	position: relative;
	z-index: 1;
	padding-block: 6rem;
}
@media (min-width: 768px) {
	.contact-inner { padding-block: 8rem; }
}

/* Lovable: text-center mb-14 md:mb-20 max-w-2xl mx-auto */
.contact-header {
	text-align: center;
	margin: 0 auto 3.5rem;
	max-width: 42rem;
}
@media (min-width: 768px) {
	.contact-header { margin-bottom: 5rem; }
}
.contact-eyebrow {
	display: block;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--color-primary);
	font-family: var(--font-script);
}
@media (min-width: 768px) {
	.contact-eyebrow { font-size: 1.875rem; }
}
/* Lovable: text-4xl md:text-5xl lg:text-6xl mt-4 leading-[1.05] tracking-tight */
.contact-title {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 400;
	margin: 1rem 0 0;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.75rem; } }
.contact-title__hello { font-style: italic; color: var(--color-primary); }
.contact-title__accent { color: var(--color-accent); }

/* Lovable: grid-cols-1 lg:grid-cols-12 gap-8 lg:gap-12 items-stretch */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: stretch;
}
@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 3rem;
	}
}

/* Lovable: lg:col-span-4 h-full flex flex-col space-y-6 */
.contact-info-panel {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
	min-width: 0;
}
@media (min-width: 1024px) {
	.contact-info-panel { grid-column: span 4 / span 4; }
}

/* Lovable: rounded-3xl border bg-secondary/40 p-7 backdrop-blur-sm */
.contact-quote-box {
	border-radius: 1.5rem;
	border: 1px solid var(--color-border);
	background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 1.75rem;
}
.contact-quote-box__text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.375;
	margin: 0 0 0.5rem;
	color: var(--color-foreground);
}
.contact-quote-box__author {
	margin: 0;
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
}

/* Lovable: flex-1 flex flex-col gap-3 */
.contact-info-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
	min-height: 0;
}
.contact-info-list__full { flex: 1; min-height: 0; }
.contact-info-list__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	flex: 1;
	min-height: 0;
}

/* Lovable: rounded-2xl border bg-background p-4 */
.contact-info-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 100%;
	border-radius: 1rem;
	border: 1px solid var(--color-border);
	background: var(--color-background);
	padding: 1rem;
	transition: border-color 0.3s var(--transition-smooth), background-color 0.3s var(--transition-smooth);
}
.contact-info-card:hover {
	border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
	background: color-mix(in srgb, var(--color-secondary) 30%, transparent);
}
.contact-info-card--stack,
.contact-info-card--dashed {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}
.contact-info-card--dashed { border-style: dashed; }
.contact-info-card--dashed:hover {
	border-color: var(--color-border);
	background: var(--color-background);
}

/* Lovable: w-11 h-11 rounded-xl */
.contact-info-card__icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: color-mix(in srgb, var(--color-primary) 10%, transparent);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s var(--transition-smooth);
}
.contact-info-card:hover .contact-info-card__icon { transform: scale(1.1); }
.contact-info-card__icon svg { width: 1.25rem; height: 1.25rem; }
.contact-info-card__icon-standalone {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--color-primary);
	flex-shrink: 0;
}
.contact-info-card__icon-standalone--accent { color: var(--color-accent); }
.contact-info-card__text { min-width: 0; }
.contact-info-card__label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	line-height: 1.25;
}
.contact-info-card__value {
	display: block;
	font-size: 0.875rem;
	font-family: var(--font-body);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
}
.contact-info-card--stack > span {
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
}
.contact-info-card--dashed > span {
	font-size: 0.75rem;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	line-height: 1.4;
}
.contact-info-card__strong { color: var(--color-foreground); }

/* Lovable: lg:col-span-8 h-full flex flex-col */
.contact-form-panel {
	height: 100%;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
@media (min-width: 1024px) {
	.contact-form-panel { grid-column: span 8 / span 8; }
}

/* Critical: author `display:flex` must not override HTML [hidden] */
.contact-form-success[hidden],
.contact-form-success[hidden][aria-hidden="true"] {
	display: none !important;
}
.contact-form-success {
	flex: 1;
	border-radius: 1.5rem;
	border: 1px solid var(--color-border);
	background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
	padding: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contact-form-success__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.contact-form-success__icon svg { width: 2rem; height: 2rem; }
.contact-form-success h3 {
	font-family: var(--font-display);
	font-size: 1.875rem;
	margin: 0 0 0.5rem;
	color: var(--color-foreground);
}
.contact-form-success p {
	margin: 0;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}

/* Lovable: rounded-3xl border bg-secondary/30 p-6 md:p-10 backdrop-blur-sm */
.contact-form {
	position: relative;
	flex: 1;
	border-radius: 1.5rem;
	border: 1px solid var(--color-border);
	background: color-mix(in srgb, var(--color-secondary) 30%, transparent);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 1.5rem;
	margin: 0;
}
@media (min-width: 768px) {
	.contact-form { padding: 2.5rem; }
}

.contact-form__subjects { margin-bottom: 2rem; }
.contact-form__subjects-label {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	margin: 0 0 0.75rem;
}
.contact-form__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
/* Lovable: text-xs md:text-sm px-4 py-2 rounded-full */
.contact-form__chip {
	font-size: 0.75rem;
	font-family: var(--font-body);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: var(--color-background);
	color: var(--color-muted-foreground);
	line-height: 1.25;
	transition: border-color 0.25s var(--transition-smooth), color 0.25s var(--transition-smooth), background-color 0.25s var(--transition-smooth);
}
@media (min-width: 768px) {
	.contact-form__chip { font-size: 0.875rem; }
}
.contact-form__chip.is-active {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.contact-form__chip:hover:not(.is-active) {
	border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
	color: var(--color-foreground);
}

/* Lovable: grid-cols-1 md:grid-cols-2 gap-5 mb-5 */
.contact-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
	.contact-form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.contact-form__field label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	margin: 0 0 0.5rem;
}
.contact-form__field input,
.contact-form__field textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.75rem 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 1rem;
	font-family: var(--font-body);
	line-height: 1.5;
	color: var(--color-foreground);
	resize: none;
	appearance: none;
	-webkit-appearance: none;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-bottom-color: var(--color-primary);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
	color: color-mix(in srgb, var(--color-muted-foreground) 60%, transparent);
}
/* Lovable: mb-8 on message block */
.contact-form__field--full { margin-bottom: 2rem; }

/* Lovable: flex-col-reverse sm:flex-row sm:items-center sm:justify-between gap-4 */
.contact-form__footer {
	display: flex;
	flex-direction: column-reverse;
	align-items: stretch;
	justify-content: space-between;
	gap: 1rem;
}
@media (min-width: 640px) {
	.contact-form__footer {
		flex-direction: row;
		align-items: center;
	}
}
.contact-form__direct-email {
	margin: 0;
	font-size: 0.75rem;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	line-height: 1.4;
}
.contact-form__direct-email a {
	color: var(--color-primary);
	text-underline-offset: 4px;
}
.contact-form__direct-email a:hover { text-decoration: underline; }

.contact-form .btn-contact-submit {
	flex-shrink: 0;
	align-self: stretch;
}
@media (min-width: 640px) {
	.contact-form .btn-contact-submit { align-self: center; }
}
.btn-contact-submit__icon {
	width: 1rem;
	height: 1rem;
	margin-left: 0.5rem;
	transition: transform 0.3s var(--transition-smooth);
}
.btn-contact-submit:hover .btn-contact-submit__icon {
	transform: translate(2px, -2px);
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer { border-top: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
/* Lovable: container-wide py-8 lg:py-10 */
.site-footer__inner { padding-block: 2rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 2.5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; } }
.site-footer__brand { display: flex; align-items: center; gap: 0.75rem; }
.site-footer__description { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); max-width: 24rem; line-height: 1.6; }
.site-footer__socials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.site-footer__social-btn { width: 36px; height: 36px; border-radius: 999px; background: var(--color-background); display: flex; align-items: center; justify-content: center; color: var(--color-muted-foreground); }
.site-footer__social-btn svg { width: 16px; height: 16px; }
.site-footer__social-btn:hover { color: var(--color-primary); }
.site-footer__heading { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.site-footer__nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__nav-list a, .site-footer__mailto { font-size: 0.875rem; color: var(--color-muted-foreground); }
.site-footer__nav-list a:hover, .site-footer__mailto:hover { color: var(--color-primary); }
.site-footer__email-item { display: flex; align-items: center; gap: 0.5rem; }
.site-footer__email-item svg { width: 16px; height: 16px; }
.site-footer__bottom { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright, .site-footer__built-by { font-size: 0.75rem; color: var(--color-muted-foreground); }
.site-footer__built-by a { font-weight: 500; color: var(--color-foreground); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__built-by a:hover { color: var(--color-primary); }

/* =========================================================================
   SIDE CART DRAWER (Section 12)
   ========================================================================= */

#theme-cart-overlay {
	position: fixed; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--transition-smooth);
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%;
	width: 100%; max-width: 28rem;
	background: var(--color-background);
	z-index: 91;
	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: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__close svg { width: 20px; height: 20px; }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon { width: 48px; height: 48px; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { width: 80px; height: 96px; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { display: block; font-size: 0.9rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-drawer__item-variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 0.25rem; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty-btn svg { width: 12px; height: 12px; }
.theme-cart-drawer__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal span:first-child { color: var(--color-muted-foreground); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { display: flex; align-items: center; justify-content: center; width: 100%; }

/* =========================================================================
   WOOCOMMERCE: ADD-TO-CART BUTTON OVERRIDE (Section 11.4.1)
   ========================================================================= */

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: 0.375rem !important;
	min-height: 2.75rem !important;
	padding: 0 1.75rem !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	letter-spacing: normal !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-button-text) !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_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart (Section 11.4.2) */
.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; }

/* =========================================================================
   WOOCOMMERCE: NOTICES (Section 14.1)
   ========================================================================= */

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	font-family: var(--font-body);
	border-radius: 0.75rem;
	border: 1px solid var(--color-border);
	background: var(--color-secondary);
	color: var(--color-foreground);
	padding: 1rem 1.5rem;
}

/* =========================================================================
   SINGLE PRODUCT — match Lovable ProductDetail.tsx
   ========================================================================= */

/* Lovable: main pt-24 lg:pt-28 — clears fixed header */
body.theme-no-hero .single-product-main {
	padding-top: 6rem;
	padding-bottom: 0;
}
@media (min-width: 1024px) {
	body.theme-no-hero .single-product-main { padding-top: 7rem; }
}
body.admin-bar.theme-no-hero .single-product-main {
	padding-top: calc(6rem + 32px);
}
@media (min-width: 1024px) {
	body.admin-bar.theme-no-hero .single-product-main { padding-top: calc(7rem + 32px); }
}
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero .single-product-main { padding-top: calc(6rem + 46px); }
}

/* Lovable: py-6 back link row */
.single-product-back-link-wrap { padding-block: 1.5rem; }
.single-product-back-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	transition: color 0.25s var(--transition-smooth);
}
.single-product-back-link:hover { color: var(--color-foreground); }
.single-product-back-link__icon {
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
	flex-shrink: 0;
}

/* Lovable: grid-cols-1 lg:grid-cols-2 gap-10 lg:gap-16 pb-20 */
.single-product-main .product.theme-product-layout,
.theme-product-layout {
	display: grid !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-bottom: 5rem;
	min-width: 0;
	margin: 0 !important;
}
@media (min-width: 1024px) {
	.single-product-main .product.theme-product-layout,
	.theme-product-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4rem;
	}
}

.theme-product-gallery,
.theme-product-info {
	min-width: 0;
	max-width: 100%;
}

/* Lovable: aspect-[3/4] bg-secondary overflow-hidden mb-4 */
.theme-product-gallery__main {
	position: relative;
	aspect-ratio: 3 / 4;
	background: var(--color-secondary);
	overflow: hidden;
	margin-bottom: 1rem;
}
.theme-product-gallery__main .cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Lovable: grid grid-cols-5 gap-2 */
.theme-product-thumbnails {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.5rem;
	max-width: 100%;
}
.theme-product-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	opacity: 0.6;
	background: var(--color-secondary);
	cursor: pointer;
	transition: opacity 0.25s var(--transition-smooth), border-color 0.25s var(--transition-smooth);
}
.theme-product-thumb.is-active {
	border-color: var(--color-primary);
	opacity: 1;
}
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb .cover-img,
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Lovable: lg:py-10 on info column */
@media (min-width: 1024px) {
	.theme-product-info { padding-block: 2.5rem; }
}

.theme-product-info__category {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	line-height: 1.25;
}

/* Lovable: font-display text-2xl md:text-3xl font-bold mt-2 mb-4 */
.theme-product-info__title {
	font-family: var(--font-display) !important;
	font-weight: 700 !important;
	font-size: 1.5rem !important;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0.5rem 0 1rem !important;
	color: var(--color-foreground);
}
@media (min-width: 768px) {
	.theme-product-info__title { font-size: 1.875rem !important; }
}

/* Lovable: text-2xl mb-6 font-body font-semibold */
.theme-product-info__price {
	font-family: var(--font-body);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
	color: var(--color-foreground);
	line-height: 1.3;
}
.theme-product-info__price del {
	opacity: 0.5;
	font-weight: 400;
	margin-right: 0.35rem;
}
.theme-product-info__price .woocommerce-Price-amount { font-weight: inherit; }

.theme-product-info__stock.is-out-of-stock {
	color: var(--color-primary);
	font-weight: 600;
	font-family: var(--font-body);
	margin: 0 0 1rem;
}

/* Lovable: text-muted-foreground leading-relaxed mb-8 font-body */
.theme-product-info__description {
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	line-height: 1.625;
	margin: 0 0 2rem;
	overflow-wrap: break-word;
}
.theme-product-info__description p {
	margin: 0 0 0.75rem;
}
.theme-product-info__description p:last-child { margin-bottom: 0; }

/* ---- Variation chips (Lovable Size / Color selectors) ---- */
.theme-variation-group { margin-bottom: 1.5rem; }
.theme-variation-group__label {
	font-size: 0.875rem;
	font-weight: 600;
	font-family: var(--font-body);
	margin: 0 0 0.75rem;
	color: var(--color-foreground);
}
.theme-variation-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.theme-variation-group--color .theme-variation-chips { gap: 0.75rem; }

.theme-variation-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-family: var(--font-body);
	line-height: 1.25;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
	cursor: pointer;
	transition: border-color 0.25s var(--transition-smooth), background-color 0.25s var(--transition-smooth), color 0.25s var(--transition-smooth);
}
.theme-variation-chip:hover {
	border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
}
.theme-variation-chip.is-active {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.theme-variation-chip--color.is-active {
	background: color-mix(in srgb, var(--color-primary) 5%, transparent);
	color: var(--color-foreground);
	border-color: var(--color-primary);
}
.theme-variation-chip__swatch {
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	flex-shrink: 0;
	background: var(--color-muted);
}

/* Native select kept for WC variation JS — visually hidden */
.variations {
	position: relative;
	display: block;
	width: 100%;
	border: 0;
	margin: 0;
	padding: 0;
}
.variations .theme-variation-select,
.theme-variation-select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.theme-product-form { position: relative; margin: 0; border: 0; padding: 0; }
.theme-product-form .woocommerce-variation-description,
.theme-product-form .woocommerce-variation-availability { display: none; }
.theme-product-form .woocommerce-variation-price {
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.theme-product-form .woocommerce-variation { margin: 0; }
.single_variation_wrap { margin: 0; }

/* Lovable: flex gap-4 mb-8 — square qty, flex-1 ATC */
.theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 1rem;
	margin: 0 0 2rem;
}
@media (max-width: 400px) {
	.theme-add-to-cart-area { flex-wrap: wrap; }
	.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 100%; }
}
.quantity.theme-quantity-wrapper,
.theme-quantity-wrapper {
	display: flex !important;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: 0;
	overflow: hidden;
	flex-shrink: 0;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	background: transparent;
}
.theme-qty-minus,
.theme-qty-plus {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	height: auto;
	min-height: 2.75rem;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: background-color 0.25s var(--transition-smooth);
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-minus svg,
.theme-qty-plus svg { width: 1rem; height: 1rem; }
.theme-qty-input {
	width: 3rem;
	min-width: 48px;
	text-align: center;
	border: 0;
	background: transparent;
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.75rem 0;
	height: auto;
	min-height: 2.75rem;
	-moz-appearance: textfield;
	color: var(--color-foreground);
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.theme-add-to-cart-area .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 0;
	border-radius: 0.375rem !important;
}

/* Lovable: border-t pt-8 Details */
.theme-product-info__details {
	border-top: 1px solid var(--color-border);
	padding-top: 2rem;
	margin-top: 0;
}
.theme-product-info__details h3 {
	font-size: 0.875rem;
	font-weight: 600;
	font-family: var(--font-body);
	margin: 0 0 1rem;
	color: var(--color-foreground);
}
.theme-product-info__details-content ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-product-info__details-content li,
.theme-product-info__details-content p {
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	display: flex;
	align-items: flex-start;
	margin: 0;
	overflow-wrap: break-word;
	line-height: 1.5;
}
.theme-product-info__details-content li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--color-primary);
	border-radius: 999px;
	margin: 0.5rem 0.75rem 0 0;
	flex-shrink: 0;
}

/* Lovable: py-20 border-t related */
.related-products-section {
	padding-block: 5rem;
	border-top: 1px solid var(--color-border);
}
.related-products-heading {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 2.5rem;
	color: var(--color-foreground);
	line-height: 1.2;
}
@media (min-width: 768px) {
	.related-products-heading { font-size: 1.5rem; }
}

/* Neutralize leftover WooCommerce structural styles on this page */
.single-product-main .product::before,
.single-product-main .product::after,
.theme-product-layout::before,
.theme-product-layout::after { content: none !important; display: none !important; clear: none !important; }
.single-product-main .product .images,
.single-product-main .product .summary,
.single-product-main .product .quantity,
.single-product-main .woocommerce-product-gallery {
	float: none !important;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
}
.single-product-main .theme-product-gallery,
.single-product-main .theme-product-info {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
}
.single-product-main table.variations { display: none !important; }
.single-product-main .related-products-section .reveal {
	opacity: 1 !important;
	transform: none !important;
}
.theme-product-card-wrap {
	display: flex;
	width: 100%;
	min-width: 0;
}

/* =========================================================================
   CHECKOUT BLOCK (Section 13)
   ========================================================================= */

body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { max-width: 1400px; margin: 0 auto 2rem; padding: 0 1.5rem; font-size: 2rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title { padding: 0 2rem; } }

body.woocommerce-checkout .wc-block-checkout { display: block; }

@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);
		align-items: start;
	}
}

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);
	border-radius: 0.5rem;
	background-color: var(--color-background);
	color: var(--color-foreground);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-primary);
	outline: none;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.75rem;
	font-family: var(--font-body);
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

body.woocommerce-checkout .wc-block-cart-items { font-family: var(--font-body); }

/* =========================================================================
   THANK YOU PAGE (Section 22.8)
   ========================================================================= */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.9rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
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;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: 0.75rem; padding: 1.25rem; font-style: normal; }

/* =========================================================================
   OTHER WOOCOMMERCE PAGES (Section 13.7)
   ========================================================================= */

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { max-width: 1400px; margin: 0 auto 2rem; padding: 0 1.5rem; }

/* =========================================================================
   404
   ========================================================================= */

.theme-404 { padding-top: var(--header-height); min-height: 70vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; }
.theme-404__code { display: block; font-family: var(--font-display); font-size: 4rem; font-weight: 700; margin-bottom: 1rem; }
.theme-404__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-404__description { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-404__cta { color: var(--color-primary); text-decoration: underline; }

/* =========================================================================
   GENERIC PAGE TEMPLATE
   ========================================================================= */

.page-title { font-family: var(--font-display); font-size: 2rem; margin: 6rem 0 2rem; }
.entry-content { padding-bottom: 4rem; line-height: 1.7; }
