/* =========================================================================
   RoadmapHeather theme stylesheet
   ========================================================================= */

:root {
	--background: 36 36% 97%;
	--foreground: 220 50% 15%;
	--primary: 220 55% 22%;
	--primary-foreground: 36 36% 97%;
	--secondary: 36 30% 93%;
	--secondary-foreground: 220 50% 15%;
	--accent: 42 75% 48%;
	--accent-foreground: 220 50% 15%;
	--muted: 38 24% 90%;
	--muted-foreground: 220 14% 38%;
	--border: 38 22% 86%;
	--card: 0 0% 100%;
	--rosa: 8 78% 65%;
	--marigold: 42 75% 48%;
	--gold-deep: 42 72% 38%;

	--background-hex: #faf8f5;
	--foreground-hex: #132039;
	--primary-hex: #192e57;
	--primary-foreground-hex: #faf8f5;
	--secondary-hex: #f3eee8;
	--accent-hex: #d69f1f;
	--muted-hex: #ece7df;
	--border-hex: #e3ddd3;

	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Inter', sans-serif;
	--font-cute: 'Lora', serif;
	--font-brand: 'Cinzel', serif;

	--radius: 0.5rem;
	--card-radius: 1rem;
	--shadow-soft: 0 4px 20px -8px hsl(220 50% 15% / 0.12);
	--shadow-elevated: 0 16px 40px -16px hsl(220 50% 15% / 0.18);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--header-height: 88px;
	--logo-height: 72px;

	--btn-radius: 999px;
	--btn-height: 48px;
	--btn-padding: 0.85rem 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.18em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;

	--color-primary: hsl(var(--primary));
	--color-button-text: hsl(var(--primary-foreground));
	--color-surface: hsl(var(--secondary));
	--section-padding: 2rem;
}

/* -------------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: hsl(var(--background));
	color: hsl(var(--foreground));
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-video):not(.product-card-img):not(.theme-single-product-img):not(.theme-thumb-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-video, .product-card-img, .theme-single-product-img, .theme-thumb-img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: inherit; font-size: inherit; letter-spacing: -0.005em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font-family: inherit; }

a[href],
button:not(:disabled),
[role="button"],
.label,
summary,
.theme-footer-link,
.theme-card-link,
.theme-nav-list a,
.theme-mobile-nav-list a,
.theme-cart-toggle,
.theme-header-cta,
.theme-mobile-menu-toggle,
.theme-announcement-close,
.theme-modal-close,
.theme-product-card__cta,
.theme-featured-card__cta,
.add_to_cart_button,
.shop-cat-btn,
.shop-price-toggle,
.faq-item-trigger,
.js-open-contact,
.js-scroll-section,
.js-mailto-link,
.js-tel-link,
input[type="submit"],
input[type="button"],
label[for] {
	cursor: pointer;
}
button:disabled,
[aria-disabled="true"],
.theme-product-card__cta--disabled:not(.js-open-contact),
.theme-featured-card__cta--disabled:not(.js-open-contact) {
	cursor: not-allowed;
}

.accent-text { color: hsl(var(--accent)); font-style: italic; font-weight: 500; }

.container-wide {
	width: 100%;
	max-width: 80rem; /* Lovable max-w-7xl */
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem; /* px-6 */
	padding-right: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.container-wide {
		padding-left: 2rem; /* lg:px-8 */
		padding-right: 2rem;
	}
}

.scroll-mt { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	border-radius: var(--btn-radius); font-size: var(--btn-font-size); font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing); text-transform: var(--btn-text-transform);
	padding: var(--btn-padding); transition: all 0.2s ease-out; white-space: nowrap;
}
.theme-btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.theme-btn-primary:hover { background: hsl(var(--primary) / 0.9); }
.theme-btn-outline { background: transparent; color: hsl(var(--foreground)); border: 1px solid hsl(var(--foreground) / 0.4); }
.theme-btn-outline:hover { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.theme-btn-hero-primary, .theme-btn-hero-outline { text-transform: none; }
.theme-btn-hero-primary {
	background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
	border-radius: 999px; padding: 0.85rem 1.75rem; box-shadow: var(--shadow-elevated);
	text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 700;
}
.theme-btn-hero-primary:hover { background: hsl(var(--background)); color: hsl(var(--primary)); transform: scale(1.02); }
.theme-btn-hero-outline {
	background: transparent; color: hsl(var(--primary-foreground)); text-transform: uppercase;
	letter-spacing: 0.18em; font-size: 12px; font-weight: 700; padding: 0.65rem 0;
	position: relative;
}
.theme-btn-hero-outline::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
	transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--transition-smooth);
}
.theme-btn-hero-outline:hover::after { transform: scaleX(1); }
.theme-btn-hero-outline:hover { color: hsl(var(--accent)); }

/* -------------------------------------------------------------------------
   Scroll reveal animations (Section 2.1)
   ------------------------------------------------------------------------- */
.reveal-item, .reveal-fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.25,0.4,0.25,1), transform 0.7s cubic-bezier(0.25,0.4,0.25,1);
}
.reveal-item.is-visible, .reveal-fade.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item, body.is-customizer .reveal-fade,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important; transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .reveal-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -------------------------------------------------------------------------
   Announcement bar
   ------------------------------------------------------------------------- */
.theme-announcement-bar { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); position: relative; }
.theme-announcement-inner { padding: 0.5rem 1.5rem; text-align: center; position: relative; }
.theme-announcement-text { font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.24em; font-size: 13px; margin: 0; }
.theme-twinkle { display: inline-block; animation: theme-twinkle 3.4s ease-in-out infinite; }
@keyframes theme-twinkle { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
.theme-announcement-close { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); opacity: 0.8; padding: 0.25rem; }
.theme-announcement-close:hover { opacity: 1; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50; width: 100%;
	background: hsl(var(--background) / 0.9); backdrop-filter: blur(6px);
	border-bottom: 1px solid hsl(var(--border) / 0.6);
	transition: all 0.3s ease;
}
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-header.is-solid, .site-header.is-scrolled { background: hsl(var(--background) / 0.95); border-bottom-color: hsl(var(--border)); box-shadow: var(--shadow-soft); }
.site-nav { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 80px; }
@media (min-width: 1024px) { .site-nav { min-height: 96px; } }
.site-brand { display: none; align-items: center; gap: 0.5rem; }
.site-brand--desktop { justify-self: start; }
@media (min-width: 1024px) { .site-brand--desktop { display: flex; } }
.site-brand--mobile { position: absolute; left: 0; top: 50%; transform: translateY(-50%); display: flex; }
@media (min-width: 1024px) { .site-brand--mobile { display: none; } }
.site-brand--footer { display: inline-flex; gap: 0.75rem; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; object-fit: contain; }
.site-brand--mobile .site-logo-img { height: 56px !important; }
.footer-logo-img { height: 5rem !important; }
@media (min-width: 640px) { .footer-logo-img { height: 6rem !important; } }
.site-logo-text { font-family: var(--font-brand); font-weight: 600; color: hsl(var(--primary)); letter-spacing: 0.08em; text-transform: uppercase; font-size: 18px; }
.site-brand-wordmark { display: none; flex-direction: column; justify-content: center; line-height: 1; margin-left: 0.125rem; }
.site-brand-wordmark--footer { display: flex; }
@media (min-width: 1280px) {
	.site-brand-wordmark--header { display: flex; }
}
.site-brand-wordmark__top {
	font-family: var(--font-brand); font-weight: 600; color: hsl(var(--primary));
	font-size: 13px; letter-spacing: 0.02em;
}
.site-brand-wordmark--footer .site-brand-wordmark__top { font-size: 18px; }
@media (min-width: 640px) { .site-brand-wordmark--footer .site-brand-wordmark__top { font-size: 20px; } }
.site-brand-wordmark__bottom {
	font-family: var(--font-brand); font-weight: 500; color: hsl(var(--gold-deep));
	font-size: 15px; letter-spacing: 0.24em; text-transform: uppercase;
}
.site-brand-wordmark--footer .site-brand-wordmark__bottom { font-size: 20px; }
@media (min-width: 640px) { .site-brand-wordmark--footer .site-brand-wordmark__bottom { font-size: 22px; } }

.site-nav-links { display: none; justify-self: center; }
@media (min-width: 1024px) { .site-nav-links { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-link {
	position: relative; font-size: 15px; font-weight: 500; letter-spacing: 0.07em; color: hsl(var(--foreground) / 0.75);
	padding: 0.5rem 0; white-space: nowrap; transition: color 0.2s ease;
}
.theme-nav-link:hover { color: hsl(var(--primary)); }
.theme-nav-link::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: hsl(var(--primary));
	transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.theme-nav-link:hover::after { transform: scaleX(1); }

.site-nav-actions { display: none; align-items: center; gap: 0.75rem; justify-self: end; }
@media (min-width: 1024px) { .site-nav-actions { display: flex; } }
.site-nav-mobile-actions { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .site-nav-mobile-actions { display: none; } }

.theme-cart-toggle {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 999px; border: 1px solid hsl(var(--border));
	transition: all 0.2s ease;
}
.theme-cart-toggle:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.theme-cart-count {
	position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
	font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-header-cta {
	display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
	background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); padding: 0.6rem 1.25rem;
	font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.theme-header-cta:hover { background: hsl(var(--gold-deep)); color: hsl(var(--primary-foreground)); }
.theme-header-cta--mobile { width: 100%; margin-top: 0.5rem; }

.theme-mobile-menu-toggle { padding: 0.5rem; }
.theme-mobile-menu { display: none; border-top: 1px solid hsl(var(--border)); padding: 0.75rem 0; }
.theme-mobile-menu.is-open { display: block; }
.theme-mobile-nav-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-mobile-nav-list > li { width: 100%; display: block; }
.theme-mobile-nav-list a,
.theme-mobile-nav-list .theme-mobile-nav-link,
.theme-mobile-nav-list .theme-nav-link,
.theme-mobile-nav-list button {
	display: block;
	width: 100%;
	text-align: left;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	padding: 0.75rem 0.25rem;
	color: hsl(var(--foreground));
}
.theme-mobile-nav-list a::after,
.theme-mobile-nav-list .theme-nav-link::after { display: none; }
.theme-mobile-nav-list a:hover,
.theme-mobile-nav-list .theme-mobile-nav-link:hover,
.theme-mobile-nav-list .theme-nav-link:hover,
.theme-mobile-nav-list button:hover { color: hsl(var(--primary)); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero-section { position: relative; width: 100%; min-height: 100vh; min-height: 100dvh; overflow: hidden; background: hsl(var(--background)); }
.hero-media { position: absolute; inset: 0; z-index: 0; animation: hero-ambient-zoom 26s ease-in-out infinite alternate; transform-origin: center center; will-change: transform; }
@keyframes hero-ambient-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.07); } }
.hero-overlay-1 { position: absolute; inset: 0; background: hsl(var(--primary) / 0.35); pointer-events: none; }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent, rgba(0,0,0,0.25)); pointer-events: none; }
.hero-atmosphere { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.hero-particle { position: absolute; border-radius: 999px; animation: hero-particle-rise linear infinite; }
@keyframes hero-particle-rise {
	0% { transform: translate3d(var(--drift-x-start,0),0,0); opacity: 0; }
	10% { opacity: var(--p-opacity,0.6); }
	50% { transform: translate3d(var(--drift-x-mid,0),-50vh,0); }
	90% { opacity: var(--p-opacity,0.6); }
	100% { transform: translate3d(var(--drift-x-end,0),-110vh,0); opacity: 0; }
}
.hero-fog { position: absolute; border-radius: 999px; filter: blur(70px); }
.hero-fog-a { animation: hero-fog-drift-a 14s ease-in-out infinite alternate; }
.hero-fog-b { animation: hero-fog-drift-b 18s ease-in-out infinite alternate; }
@keyframes hero-fog-drift-a { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(30px,-20px,0) scale(1.04); } }
@keyframes hero-fog-drift-b { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-25px,-28px,0) scale(1.03); } }

.hero-content { position: relative; z-index: 4; height: 100vh; height: 100dvh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero-content-inner { max-width: 760px; margin: 0 auto; }
.hero-badge {
	display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-cute); text-transform: uppercase;
	letter-spacing: 0.28em; font-size: 12px; color: hsl(var(--primary));
}
.hero-badge span { display: inline-block; border-radius: 999px; padding: 0.25rem 0.9rem; background: hsl(var(--background) / 0.9); backdrop-filter: blur(4px); border: 1px solid hsl(var(--accent) / 0.4); }
.hero-heading {
	font-family: var(--font-display); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; margin-top: 0.75rem;
	color: hsl(var(--background)); text-shadow: 0 2px 24px hsl(220 50% 15% / 0.35);
	font-size: 2.5rem;
}
@media (min-width: 768px) { .hero-heading { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 5rem; } }
.hero-heading-line1, .hero-heading-line2 { display: block; }
.hero-heading-line2 { font-style: italic; font-weight: 500; color: hsl(var(--accent)); }
.hero-subtext { margin-top: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; font-weight: 500; line-height: 1.6; color: hsl(var(--background)); font-size: 16px; text-shadow: 0 1px 14px hsl(220 50% 15% / 0.45); }
@media (min-width: 768px) { .hero-subtext { font-size: 20px; } }
.hero-subtext2 { margin-top: 0.65rem; max-width: 560px; margin-left: auto; margin-right: auto; font-family: var(--font-cute); font-style: italic; color: hsl(var(--background) / 0.9); font-size: 15px; text-shadow: 0 1px 12px hsl(220 50% 15% / 0.45); }
@media (min-width: 768px) { .hero-subtext2 { font-size: 18px; } }
.hero-cta-row { margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1.25rem; }

/* -------------------------------------------------------------------------
   Marquee
   ------------------------------------------------------------------------- */
.theme-marquee { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); overflow: hidden; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); height: 3rem; display: flex; align-items: center; }
@media (min-width: 768px) { .theme-marquee { height: 3.5rem; } }
.theme-marquee-track { display: flex; gap: 2.5rem; white-space: nowrap; animation: theme-marquee-x 28s linear infinite; will-change: transform; }
.theme-marquee:hover .theme-marquee-track { animation-play-state: paused; }
@keyframes theme-marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.theme-marquee-item { display: inline-flex; align-items: center; gap: 2.5rem; font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.32em; font-size: 14px; }
.theme-marquee-item svg { opacity: 0.6; }

/* -------------------------------------------------------------------------
   Section eyebrow / generic heading utilities
   ------------------------------------------------------------------------- */
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.22em; font-size: 14px; color: hsl(var(--primary)); margin-bottom: 0.75rem; }
.testimonials-section .section-eyebrow,
.resources-section .section-eyebrow,
.contact-section .section-eyebrow {
	color: hsl(var(--accent));
}
.eyebrow-rule { display: inline-block; width: 2.5rem; height: 1px; background: hsl(var(--accent) / 0.5); }

/* -------------------------------------------------------------------------
   Featured offerings
   ------------------------------------------------------------------------- */
.featured-section { border-top: 1px solid hsl(var(--border)); padding: 5rem 0; }
@media (min-width: 768px) { .featured-section { padding: 6rem 0; } }
.featured-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .featured-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.featured-heading { font-size: 2rem; line-height: 1.05; letter-spacing: -0.02em; }
@media (min-width: 768px) { .featured-heading { font-size: 2.5rem; } }
@media (min-width: 1024px) { .featured-heading { font-size: 3rem; } }
.featured-rule { margin-top: 1rem; width: 60px; border: 0; border-bottom: 1px solid hsl(var(--primary) / 0.3); }
.featured-cta-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: hsl(var(--primary)); }

.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
/* Shop: 1 col on phone so cards aren't cramped; 2 from sm, 3 md, 4 lg */
.theme-product-grid.theme-shop-grid { grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 480px) { .theme-product-grid.theme-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }
/* Lovable featured: grid-cols-2 gap-6, lg:grid-cols-4 lg:gap-8 */
.theme-product-grid.theme-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .theme-product-grid.theme-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }
@media (min-width: 1024px) {
	.theme-product-grid.theme-shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
	.theme-product-grid.theme-featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
}

.theme-product-card-wrap { display: flex; width: 100%; min-width: 0; height: 100%; }
.theme-featured-card-wrap { width: 100%; min-width: 0; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; width: 100%; transition: transform 0.3s ease; }
.theme-product-card:hover { transform: translateY(-4px); }
.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 .theme-product-card__cta { position: relative; z-index: 3; pointer-events: auto; cursor: pointer; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden; margin-bottom: 1.25rem; border: 1px solid hsl(var(--border)); background: hsl(var(--secondary)); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.theme-product-card:hover .theme-product-card__image-wrapper { border-color: hsl(var(--marigold) / 0.4); box-shadow: 0 22px 44px -22px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,169,106,0.18); }
.theme-product-card__image-main, .theme-product-card__image-alt { transition: opacity 0.3s ease; }
.theme-product-card__image-alt { opacity: 0; }
@media (min-width: 768px) { .theme-product-card:hover .theme-product-card__image-main { opacity: 0; } .theme-product-card:hover .theme-product-card__image-alt { opacity: 1; } }
.theme-product-card.is-sold-out .theme-product-card__image-main { opacity: 0.6; }
.theme-badge { position: absolute; top: 1rem; z-index: 4; padding: 0.35rem 1rem; border-radius: 999px; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; }
.theme-badge--soldout { right: 1rem; background: hsl(var(--foreground)); color: hsl(var(--background)); }

.theme-product-card__info { display: flex; flex-direction: column; flex: 1; padding: 0 0.25rem; }
.theme-product-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.2; color: hsl(var(--foreground)); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.6rem; } }
.theme-product-card:hover .theme-product-card__title { color: hsl(var(--marigold)); }
.theme-product-card__category { margin-top: 0.5rem; margin-bottom: 1rem; font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.24em; font-size: 13px; color: hsl(var(--marigold) / 0.8); }
.theme-product-card__cta {
	margin-top: auto; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
	padding: 0.75rem 1rem; border-radius: 999px; border: 1px solid hsl(var(--border)); background: transparent;
	color: hsl(var(--foreground)); font-size: 1rem; font-weight: 500; letter-spacing: 0.01em;
	transition: all 0.3s ease; text-align: center;
}
.theme-product-card__cta:hover { background: hsl(var(--marigold)); color: hsl(var(--background)); border-color: hsl(var(--marigold)); }
.theme-product-card__cta--disabled { opacity: 0.5; cursor: not-allowed; }
.theme-product-card__price .woocommerce-Price-amount { font-weight: inherit; }

.theme-featured-card-wrap .theme-featured-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: 1rem; /* rounded-2xl */
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 280ms ease-out, box-shadow 280ms ease-out;
}
.theme-featured-card:hover { transform: translateY(-6px); /* -translate-y-1.5 */ box-shadow: var(--shadow-elevated); }
.theme-featured-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; }
.theme-featured-card *:not(.theme-card-link) { pointer-events: none; }
.theme-featured-card .theme-featured-card__cta { pointer-events: auto; position: relative; z-index: 3; cursor: pointer; }
.theme-featured-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; width: 100%; overflow: hidden; background: hsl(var(--muted)); flex-shrink: 0; }
.theme-featured-card__image-wrapper .theme-product-card-img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	transition: opacity 300ms ease-out;
}
.theme-featured-card__image-wrapper .theme-product-card__image-alt { display: none; opacity: 0; }
@media (min-width: 768px) {
	.theme-featured-card__image-wrapper .theme-product-card__image-alt { display: block; }
	.theme-featured-card:hover .theme-product-card__image-main { opacity: 0; }
	.theme-featured-card:hover .theme-product-card__image-alt { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.theme-featured-card:hover .theme-product-card__image-main { opacity: 1; }
	.theme-featured-card:hover .theme-product-card__image-alt { opacity: 0; }
}
/* Lovable: px-5 pt-4 pb-5 */
.theme-featured-card__info { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; min-height: 0; }
.theme-featured-card__category { font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.18em; font-size: 16px; color: hsl(var(--primary)); margin-bottom: 0.375rem; /* mb-1.5 */ }
.theme-featured-card__title { font-family: var(--font-display); font-size: 13px; font-weight: 500; line-height: 1.375; margin-bottom: 0.5rem; /* mb-2 */ flex: 1; color: hsl(var(--foreground)); }
.theme-featured-card__price { font-size: 14px; font-weight: 600; margin-bottom: 0.75rem; /* mb-3 */ font-family: var(--font-body); color: hsl(var(--foreground)); }
.theme-featured-card__cta {
	width: 100%; display: inline-flex; align-items: center; justify-content: center;
	padding: 0.625rem 1rem; /* py-2.5 */
	border-radius: 999px; border: 1px solid hsl(var(--border));
	font-size: 13px; letter-spacing: 0.01em; font-family: var(--font-body);
	background: transparent; color: hsl(var(--foreground)); transition: all 0.3s ease;
	margin-top: auto; box-sizing: border-box; text-decoration: none;
}
.theme-featured-card__cta:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); }
.theme-featured-card__cta--disabled { opacity: 0.5; cursor: not-allowed; }
.theme-featured-card__cta.js-open-contact { opacity: 1; cursor: pointer; }

/* -------------------------------------------------------------------------
   About section
   ------------------------------------------------------------------------- */
.about-section { padding: 5rem 0; }
@media (min-width: 768px) { .about-section { padding: 7rem 0; } }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-photo-col { position: relative; }
.about-photo-frame { position: relative; aspect-ratio: 4/5; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s ease; }
.about-badge { position: absolute; bottom: -1rem; right: -1rem; z-index: 2; }
@media (min-width: 768px) { .about-badge { bottom: 1.5rem; right: 1.5rem; } }
.about-badge span { display: inline-block; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); padding: 0.6rem 1.25rem; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; box-shadow: var(--shadow-elevated); }
.about-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.22em; font-size: 14px; color: hsl(var(--primary)); }
.about-heading { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.02em; color: hsl(var(--primary)); margin-bottom: 1.5rem; }
.about-bio { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.about-bio p { font-size: 17px; line-height: 1.6; color: hsl(var(--foreground) / 0.8); }
@media (min-width: 768px) { .about-bio p { font-size: 18px; } }
.about-quote { border-left: 2px solid hsl(var(--accent)); padding-left: 1.5rem; margin-bottom: 2rem; }
.about-quote blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.35; color: hsl(var(--primary)); }
@media (min-width: 768px) { .about-quote blockquote { font-size: 1.5rem; } }
.about-cta-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: hsl(var(--primary)); }
.about-cta-link:hover { color: hsl(var(--rosa)); }

/* -------------------------------------------------------------------------
   Framework / compass
   ------------------------------------------------------------------------- */
.framework-section { background: hsl(var(--secondary)); padding: 5rem 0; }
@media (min-width: 768px) { .framework-section { padding: 7rem 0; } }
.framework-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .framework-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.framework-photo-frame { position: relative; aspect-ratio: 4/5; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-elevated); margin-bottom: 1.25rem; }
.framework-caption { display: flex; align-items: center; gap: 1rem; border-radius: var(--card-radius); border: 1px solid hsl(var(--border)); background: hsl(var(--background) / 0.7); padding: 1rem 1.25rem; box-shadow: var(--shadow-soft); }
.framework-caption-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); flex-shrink: 0; }
.framework-caption-label { font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: hsl(var(--primary) / 0.7); margin-bottom: 0.2rem; }
.framework-caption-text { font-family: var(--font-display); font-size: 1.1rem; color: hsl(var(--foreground)); }
.framework-eyebrow { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.3em; font-size: 13px; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 1.25rem; }
.framework-heading { font-size: 3rem; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .framework-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .framework-heading { font-size: 4.5rem; } }
.framework-body { font-size: 1.125rem; line-height: 1.6; color: hsl(var(--foreground) / 0.75); margin-bottom: 2.5rem; max-width: 40rem; }
.compass-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .compass-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.compass-card { border-radius: var(--card-radius); border: 1px solid hsl(var(--border) / 0.7); padding: 1.5rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease-out; }
.compass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); border-color: hsl(var(--accent) / 0.5); }
.compass-card--1 { background: hsl(var(--primary) / 0.06); }
.compass-card--2 { background: hsl(var(--accent) / 0.08); }
.compass-card--3 { background: hsl(var(--rosa) / 0.10); }
.compass-card--4 { background: hsl(var(--marigold) / 0.10); }
.compass-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.compass-letter { width: 3rem; height: 3rem; border-radius: 999px; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.25rem; flex-shrink: 0; }
.compass-card-head h3 { font-size: 1.25rem; color: hsl(var(--foreground)); }
@media (min-width: 768px) { .compass-card-head h3 { font-size: 1.5rem; } }
.compass-card p { font-size: 15px; line-height: 1.6; color: hsl(var(--foreground) / 0.7); }

/* -------------------------------------------------------------------------
   Services
   ------------------------------------------------------------------------- */
.services-section { padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 6rem 0; } }
.services-header { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.services-heading { font-size: 3rem; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 1rem; }
@media (min-width: 768px) { .services-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 4.5rem; } }
.services-header p { color: hsl(var(--foreground) / 0.75); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.service-panel { position: relative; overflow: hidden; border-radius: var(--card-radius); border: 1px solid hsl(var(--border)); background: hsl(var(--background)); padding: 2.5rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease-out; }
@media (min-width: 1024px) { .service-panel { padding: 3rem; } }
.service-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.service-panel--1:hover { border-color: hsl(var(--primary) / 0.4); }
.service-panel--2:hover { border-color: hsl(var(--accent) / 0.5); }
.service-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.service-panel--1::before { background: hsl(var(--primary)); }
.service-panel--2::before { background: hsl(var(--accent)); }
.service-panel-number { position: absolute; top: -1.5rem; right: -0.5rem; z-index: 0; font-family: var(--font-display); font-size: 180px; line-height: 1; pointer-events: none; user-select: none; }
.service-panel--1 .service-panel-number { color: hsl(var(--primary) / 0.08); }
.service-panel--2 .service-panel-number { color: hsl(var(--accent) / 0.10); }
.service-panel-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.service-panel-label { display: block; font-size: 16px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; margin-bottom: 0.5rem; }
.service-panel--1 .service-panel-label { color: hsl(var(--primary)); }
.service-panel--2 .service-panel-label { color: hsl(var(--accent)); }
.service-panel-inner h3 { font-size: 1.875rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .service-panel-inner h3 { font-size: 2.25rem; } }
.service-panel-desc { color: hsl(var(--foreground) / 0.7); margin-bottom: 2rem; }
.service-panel-bullets { border-top: 1px solid hsl(var(--border) / 0.6); padding-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .service-panel-bullets { grid-template-columns: 1fr 1fr; } }
.service-panel-bullets li { display: flex; align-items: flex-start; gap: 0.75rem; color: hsl(var(--foreground) / 0.8); min-width: 0; }
.service-bullet-icon { margin-top: 0.1rem; display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 999px; flex-shrink: 0; }
.service-panel--1 .service-bullet-icon { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.service-panel--2 .service-bullet-icon { background: hsl(var(--accent) / 0.1); color: hsl(var(--accent)); }
.service-panel-cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; padding-top: 2.5rem; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; transition: color 0.2s ease; }
.service-panel--1 .service-panel-cta { color: hsl(var(--primary)); }
.service-panel--2 .service-panel-cta { color: hsl(var(--accent)); }
.service-panel-cta:hover { color: hsl(var(--rosa)); }

/* -------------------------------------------------------------------------
   Shop section
   ------------------------------------------------------------------------- */
.shop-section { background: hsl(var(--secondary)); padding: 5rem 0; }
@media (min-width: 768px) { .shop-section { padding: 6rem 0; } }
.shop-header { text-align: center; margin-bottom: 3rem; }
.shop-heading { font-size: 2.25rem; margin-bottom: 2.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .shop-heading { font-size: 3.75rem; } }
.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: hsl(var(--muted-foreground)); }
.shop-search-input { width: 100%; background: transparent; border: 0; border-bottom: 1px solid hsl(var(--border)); border-radius: 0; padding: 0.5rem 0 0.5rem 1.75rem; font-size: 16px; transition: border-color 0.2s ease; }
.shop-search-input:focus { outline: none; border-color: hsl(var(--primary)); }
/* Phone: wrap all pills in-view (no lateral scroll). md+: centered row wrap */
.shop-category-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
	padding: 0;
	overflow: visible;
}
.shop-cat-pill {
	flex-shrink: 0;
	padding: 0.4rem 0.75rem;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 999px;
	border: 1px solid hsl(var(--border));
	background: transparent;
	color: hsl(var(--foreground));
	transition: all 0.3s ease;
}
@media (min-width: 480px) {
	.shop-cat-pill { padding: 0.45rem 1rem; font-size: 12px; letter-spacing: 0.16em; }
}
@media (min-width: 768px) {
	.shop-category-pills { gap: 0.5rem; }
	.shop-cat-pill { padding: 0.5rem 1.25rem; letter-spacing: 0.18em; }
}
.shop-cat-pill:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.shop-cat-pill.is-active { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); }
.shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.shop-price-toggle:hover { color: hsl(var(--primary)); }
.shop-price-toggle svg { transition: transform 0.3s ease; }
.shop-price-toggle.is-open svg { transform: rotate(180deg); }
.shop-price-panel { width: 100%; max-width: 24rem; padding: 0.5rem 0; }
.price-range-wrapper { position: relative; height: 1.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: hsl(var(--border)); }
.range-track-fill { background: hsl(var(--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: 18px; height: 18px; border-radius: 999px; background: hsl(var(--background)); border: 2px solid hsl(var(--primary)); cursor: pointer; margin-top: 0; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: 999px; background: hsl(var(--background)); border: 2px solid hsl(var(--primary)); cursor: pointer; }
.range-input::-webkit-slider-runnable-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 14px; color: hsl(var(--muted-foreground)); margin-top: 0.5rem; }

.theme-shop-empty { text-align: center; padding: 4rem 0; color: hsl(var(--muted-foreground)); }
.shop-show-more-wrap { text-align: center; margin-top: 3rem; }
.shop-show-more-wrap:has(#shop-show-more[hidden]) { display: none; }
/* .theme-btn { display:inline-flex } overrides the UA [hidden] rule — force hide */
#shop-show-more[hidden],
#shop-empty-message[hidden],
.theme-btn[hidden] {
	display: none !important;
}

/* -------------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------------- */
.testimonials-section { position: relative; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-top: 1px solid hsl(var(--primary) / 0.4); border-bottom: 1px solid hsl(var(--primary) / 0.4); padding: 5rem 0; }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }
.testimonials-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.testimonials-header h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .testimonials-header h2 { font-size: 3rem; } }
.testimonials-marquee { overflow: hidden; padding: 1.5rem 0; margin: -1.5rem 0; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.testimonials-marquee-track { display: flex; gap: 2rem; width: max-content; animation: theme-marquee-x 60s linear infinite; padding: 0.5rem 0; }
.testimonials-marquee:hover .testimonials-marquee-track { animation-play-state: paused; }
.testimonial-card { width: 340px; flex-shrink: 0; border: 1px solid hsl(var(--primary-foreground) / 0.1); background: hsl(var(--primary-foreground) / 0.04); backdrop-filter: blur(4px); padding: 2rem; border-radius: var(--card-radius); display: flex; flex-direction: column; transition: all 0.3s ease-out; }
@media (min-width: 1024px) { .testimonial-card { width: 380px; padding: 2.5rem; } }
.testimonial-card:hover { transform: scale(1.05); border-color: hsl(var(--accent) / 0.6); }
.testimonial-sparkle { color: hsl(var(--accent)); margin-bottom: 1rem; }
.testimonial-quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.5; color: hsl(var(--primary-foreground) / 0.9); margin-bottom: 1.5rem; flex: 1; }
@media (min-width: 1024px) { .testimonial-quote { font-size: 1.25rem; } }
.testimonial-name { font-weight: 600; }
.testimonial-role { font-size: 14px; color: hsl(var(--primary-foreground) / 0.6); }

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq-section { background: hsl(var(--secondary)); padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 6rem 0; } }
.theme-faq-container { max-width: 56rem; }
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-header h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .faq-header h2 { font-size: 3rem; } }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: var(--card-radius); border: 1px solid hsl(var(--border) / 0.6); background: hsl(var(--background) / 0.6); backdrop-filter: blur(4px); transition: all 0.3s ease; overflow: hidden; }
.faq-item.is-open { border-color: hsl(var(--accent)); box-shadow: 0 8px 24px -12px hsl(var(--accent) / 0.35); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; }
.faq-question span { font-family: var(--font-display); font-size: 1.125rem; color: hsl(var(--foreground)); transition: color 0.2s ease; }
@media (min-width: 768px) { .faq-question span { font-size: 1.25rem; } }
.faq-question:hover span { color: hsl(var(--primary)); }
.faq-chevron { flex-shrink: 0; color: hsl(var(--primary)); transition: transform 0.25s ease; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: hsl(var(--accent)); }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.28s ease, opacity 0.28s ease; }
.faq-item.is-open .faq-answer { max-height: 500px; opacity: 1; }
.faq-answer p { padding: 0 1.5rem 1.5rem; font-size: 16px; line-height: 1.6; color: hsl(var(--foreground) / 0.75); }
@media (min-width: 768px) { .faq-answer p { font-size: 17px; } }
body.is-customizer .faq-answer { max-height: none; opacity: 1; }

/* -------------------------------------------------------------------------
   Life beyond
   ------------------------------------------------------------------------- */
.life-beyond-section { background: hsl(var(--background)); border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); padding: 5rem 0; }
@media (min-width: 768px) { .life-beyond-section { padding: 6rem 0; } }
.life-beyond-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.life-beyond-header h2 { font-size: 2.5rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .life-beyond-header h2 { font-size: 3rem; } }
.life-beyond-header p { color: hsl(var(--foreground) / 0.75); line-height: 1.6; }
.life-beyond-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .life-beyond-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.life-beyond-card { overflow: hidden; border-radius: var(--card-radius); border: 1px solid hsl(var(--border)); background: hsl(var(--background)); box-shadow: var(--shadow-soft); transition: all 0.3s ease-out; }
.life-beyond-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); border-color: hsl(var(--accent) / 0.4); }
.life-beyond-image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.life-beyond-image-wrap img { transition: transform 0.5s ease-out; }
.life-beyond-card:hover .life-beyond-image-wrap img { transform: scale(1.04); }
.life-beyond-card-body { padding: 1.5rem; }
@media (min-width: 1024px) { .life-beyond-card-body { padding: 2rem; } }
.life-beyond-card-body h3 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.life-beyond-card-body p { font-size: 16px; line-height: 1.6; color: hsl(var(--foreground) / 0.7); }
.life-beyond-cta { margin-top: 3.5rem; text-align: center; max-width: 100%; }
.life-beyond-cta p { color: hsl(var(--foreground) / 0.75); margin-bottom: 1rem; }
.life-beyond-cta .theme-btn {
	max-width: 100%;
	width: auto;
	box-sizing: border-box;
	white-space: normal;
	text-align: center;
	line-height: 1.35;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	height: auto;
	min-height: var(--btn-height);
}
@media (max-width: 479px) {
	.life-beyond-cta .theme-btn {
		width: 100%;
		font-size: 11px;
		letter-spacing: 0.12em;
		padding: 0.85rem 1rem;
	}
}

/* -------------------------------------------------------------------------
   Resources
   ------------------------------------------------------------------------- */
.resources-section { position: relative; overflow: hidden; background-size: cover; background-position: center; padding: 5rem 0; }
@media (min-width: 768px) { .resources-section { padding: 6rem 0; } }
.resources-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(285 30% 12% / 0.72), hsl(285 30% 12% / 0.78), hsl(285 30% 12% / 0.72)); }
.resources-section .container-wide { position: relative; }
.resources-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.resources-header h2 { font-size: 2.5rem; margin-bottom: 1rem; color: hsl(var(--primary-foreground)); letter-spacing: -0.02em; }
@media (min-width: 768px) { .resources-header h2 { font-size: 3rem; } }
.resources-header p { color: hsl(var(--primary-foreground) / 0.9); }
.resources-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .resources-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.resource-card { display: flex; flex-direction: column; border-radius: var(--card-radius); border: 1px solid hsl(var(--border)); background: hsl(var(--card, var(--background))); padding: 1.75rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease-out; }
.resource-card:hover { box-shadow: 0 20px 50px -12px hsl(var(--marigold) / 0.45); border-color: hsl(var(--accent) / 0.6); transform: translateY(-6px); }
.resource-card-cat { font-size: 14px; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600; margin-bottom: 0.75rem; color: hsl(var(--accent)); }
.resource-card-title { font-size: 1.5rem; margin-bottom: 0.75rem; color: hsl(var(--foreground)); }
.resource-card-excerpt { font-size: 14px; line-height: 1.6; color: hsl(var(--foreground) / 0.7); margin-bottom: 1rem; }
.resource-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; font-weight: 600; color: hsl(var(--accent)); }

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
.contact-section {
	position: relative; overflow: hidden;
	background: radial-gradient(ellipse at top, hsl(var(--primary)) 0%, hsl(var(--primary)) 45%, hsl(285 38% 18%) 100%);
	color: hsl(var(--primary-foreground));
	padding: 0;
}
/* Lovable: padding lives on container-wide (py-24 md:py-32) */
.contact-section .contact-pad { position: relative; padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .contact-section .contact-pad { padding-top: 8rem; padding-bottom: 8rem; } }
.contact-compass-bg, .contact-orb { position: absolute; pointer-events: none; }
.contact-compass-bg {
	left: 50%; top: 50%; width: 900px; height: 900px;
	transform: translate(-50%, -50%);
	opacity: 0.06; color: hsl(var(--accent));
	animation: theme-spin-vslow 90s linear infinite;
}
.contact-compass-bg svg { width: 100%; height: 100%; }
.contact-orb {
	border-radius: 999px; filter: blur(64px);
	will-change: transform;
}
.contact-orb-a {
	top: -6rem; left: -6rem; width: 420px; height: 420px;
	background: hsl(var(--accent) / 0.25);
	animation: theme-drift-orb-a 18s ease-in-out infinite;
}
.contact-orb-b {
	bottom: -8rem; right: -5rem; width: 520px; height: 520px;
	background: hsl(var(--marigold) / 0.28);
	animation: theme-drift-orb-b 22s ease-in-out infinite;
}
@keyframes theme-drift-orb-a {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(40px, -30px, 0) scale(1.08); }
}
@keyframes theme-drift-orb-b {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(-50px, 30px, 0) scale(1.12); }
}
@keyframes theme-glow-pulse {
	0%, 100% { box-shadow: 0 0 0 0 hsl(var(--marigold) / 0), 0 12px 30px -8px hsl(var(--marigold) / 0.35); }
	50% { box-shadow: 0 0 32px 8px hsl(var(--marigold) / 0.35), 0 18px 44px -6px hsl(var(--marigold) / 0.5); }
}
.contact-inner { position: relative; max-width: 42rem; margin: 0 auto; text-align: center; }
.contact-eyebrow { letter-spacing: 0.28em; font-size: 13px; margin-bottom: 1rem; }
.contact-title { font-size: 3rem; line-height: 1.02; margin-bottom: 1.5rem; letter-spacing: -0.02em; color: hsl(var(--primary-foreground)); }
@media (min-width: 768px) { .contact-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 4.5rem; } }
.contact-subtext { color: hsl(var(--primary-foreground) / 0.8); font-size: 1.125rem; margin-bottom: 3rem; font-family: var(--font-body); }
@media (min-width: 768px) { .contact-subtext { font-size: 1.25rem; } }
.contact-cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem; }
.contact-cta-primary {
	padding: 1rem 2.25rem;
	animation: theme-glow-pulse 2.8s ease-in-out infinite;
}
.contact-cta-primary:hover {
	background: hsl(var(--marigold));
	color: hsl(var(--accent-foreground));
	transform: scale(1.04);
}
.contact-email-link { padding: 0.75rem 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: hsl(var(--primary-foreground) / 0.85); font-family: var(--font-body); }
.contact-email-link:hover { color: hsl(var(--accent)); }
.contact-info-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; font-size: 14px; font-family: var(--font-body); }
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.contact-info-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; border: 1px solid hsl(var(--primary-foreground) / 0.2); background: hsl(var(--primary-foreground) / 0.05); backdrop-filter: blur(4px); padding: 0.75rem 1rem; color: hsl(var(--primary-foreground) / 0.85); transition: all 0.3s ease-out; }
.contact-info-item:hover {
	transform: translateY(-4px);
	border-color: hsl(var(--accent));
	color: hsl(var(--accent));
	box-shadow: 0 0 0 1px hsl(var(--accent) / 0.5), 0 10px 30px -10px hsl(var(--accent) / 0.55);
}
@media (prefers-reduced-motion: reduce) {
	.contact-compass-bg, .contact-orb-a, .contact-orb-b, .contact-cta-primary { animation: none !important; }
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid hsl(var(--border)); background: hsl(var(--secondary)); }
/* Only vertical padding — horizontal comes from .container-wide (do not zero it out) */
.theme-footer-inner {
	padding-top: 3.5rem;
	padding-bottom: 4rem;
}
@media (max-width: 767px) {
	.site-footer .theme-footer-inner.container-wide {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (max-width: 479px) {
	.site-footer .theme-footer-inner.container-wide {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	.theme-footer-columns { gap: 2rem 1.5rem; }
}
.theme-footer-top { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid hsl(var(--border)); }
@media (min-width: 640px) { .theme-footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-logo-img { height: 5rem !important; }
.theme-footer-tagline { max-width: 32rem; }
@media (min-width: 640px) { .theme-footer-tagline { text-align: right; } }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: hsl(var(--foreground) / 0.85); }
.footer-email { margin-top: 0.75rem; font-size: 14px; }
.footer-email a:hover { color: hsl(var(--primary)); }
.theme-footer-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer-columns { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 3rem; } }
.theme-footer-col--reach { grid-column: span 2; }
@media (min-width: 768px) { .theme-footer-col--reach { grid-column: span 1; } }
.theme-footer-col-title { font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.22em; font-size: 14px; color: hsl(var(--primary)); margin-bottom: 1.25rem; }
.theme-footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-link { font-size: 15px; color: hsl(var(--foreground) / 0.75); text-align: left; }
.theme-footer-link:hover { color: hsl(var(--primary)); }
.theme-footer-reach-list a { display: flex; align-items: center; gap: 0.5rem; color: hsl(var(--foreground) / 0.8); font-size: 14px; }
.theme-footer-reach-list a:hover { color: hsl(var(--primary)); }
.theme-footer-socials { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; }
.theme-footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid hsl(var(--border)); color: hsl(var(--foreground) / 0.7); transition: all 0.2s ease-out; }
.theme-footer-socials a:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); transform: scale(1.1); }
.theme-footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .theme-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.theme-footer-quote { font-size: 16px; font-family: var(--font-display); font-style: italic; color: hsl(var(--foreground) / 0.7); }
.theme-footer-copyright { font-size: 12px; color: hsl(var(--muted-foreground)); }
.theme-footer-copyright a { text-decoration: underline; }
.theme-footer-copyright a:hover { color: hsl(var(--primary)); }

/* -------------------------------------------------------------------------
   Contact modal
   ------------------------------------------------------------------------- */
.theme-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-modal.is-open { display: flex; }
.theme-modal-overlay { position: absolute; inset: 0; background: hsl(220 50% 15% / 0.5); animation: theme-fade-in 0.2s ease; }
.theme-modal-panel { position: relative; z-index: 1; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; background: hsl(var(--background)); border-radius: var(--card-radius); padding: 2rem; box-shadow: var(--shadow-elevated); animation: theme-modal-in 0.25s ease; }
@keyframes theme-modal-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; line-height: 1; padding: 0.25rem; color: hsl(var(--muted-foreground)); cursor: pointer; }
.theme-modal-close:hover { color: hsl(var(--foreground)); }
.theme-modal-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; padding-right: 2rem; }
.theme-modal-subtext { font-family: var(--font-body); color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.theme-modal-contact-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; font-size: 14px; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; font-family: var(--font-body); }
.theme-modal-contact-item { display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.theme-modal-contact-item:hover,
.theme-modal-contact-row a:hover { color: hsl(var(--primary)); }
.theme-form-row--split { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .theme-form-row--split { grid-template-columns: 1fr 1fr; } }
.theme-form-field { margin-bottom: 1rem; }
.theme-form-field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 0.4rem; font-family: var(--font-body); }
.theme-form-field input, .theme-form-field textarea, #theme-contact-form input, #theme-contact-form textarea {
	width: 100%; padding: 0.65rem 0.75rem; background: hsl(var(--background)); border: 1px solid hsl(var(--border));
	border-radius: 0.375rem; font-size: 16px; font-family: var(--font-body); transition: all 0.2s ease; box-sizing: border-box;
}
#theme-contact-form input:focus, #theme-contact-form textarea:focus { outline: none; border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-actions .theme-btn { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 999px; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal-success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal-success p { font-size: 14px; color: hsl(var(--muted-foreground)); font-family: var(--font-body); }
.theme-footer-reach-link { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(var(--foreground) / 0.8); cursor: pointer; }
.theme-footer-reach-link:hover { color: hsl(var(--primary)); }

/* -------------------------------------------------------------------------
   Side cart drawer
   ------------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: hsl(var(--foreground) / 0.2); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: hsl(var(--background)); z-index: 91; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
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 hsl(var(--border)); }
.theme-cart-drawer-title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer-close { font-size: 1.25rem; padding: 0.25rem; }
.theme-cart-drawer-close:hover { opacity: 0.6; }
.theme-cart-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; color: hsl(var(--muted-foreground)); }
.theme-cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-image {
	display: block;
	position: relative;
	width: 5rem; /* w-20 */
	height: 6rem; /* h-24 */
	flex-shrink: 0;
	background: hsl(var(--secondary));
	overflow: hidden;
	border-radius: 0.375rem;
}
.theme-cart-item-image img,
.theme-cart-item-image .attachment-thumbnail {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: center;
}
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-name { display: block; font-size: 14px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item-name:hover { opacity: 0.7; }
.theme-cart-item-price { font-size: 14px; color: hsl(var(--muted-foreground)); margin-top: 0.15rem; }
.theme-cart-item-variation { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.65rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; }
.theme-cart-qty-btn:hover { background: hsl(var(--secondary)); }
.theme-cart-qty-value { width: 1.5rem; text-align: center; font-size: 14px; }
.theme-cart-remove { margin-left: auto; font-size: 14px; color: hsl(var(--muted-foreground)); }
.theme-cart-remove:hover { color: hsl(var(--foreground)); }
.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-shipping-note { font-size: 14px; color: hsl(var(--muted-foreground)); }
.theme-cart-checkout-btn { width: 100%; }
.theme-cart-empty-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* -------------------------------------------------------------------------
   Single product page (Section 11 / 11.13) — mirrors Lovable ProductDetail
   ------------------------------------------------------------------------- */
.single-product-page { padding: 2.5rem 0 6rem; }
@media (min-width: 1024px) { .single-product-page { padding-top: 3.5rem; } }
.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: hsl(var(--muted-foreground)); font-family: var(--font-body); }
.theme-breadcrumb a:hover { color: hsl(var(--foreground)); }
.theme-breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; min-width: 0; padding-top: 1rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.theme-product-info {
		position: sticky;
		top: 7rem; /* lg:top-28 */
		padding-left: 1rem; /* lg:pl-4 */
		align-self: start;
	}
}
.theme-product-main-image { position: relative; aspect-ratio: 1/1; border-radius: var(--card-radius); overflow: hidden; background: hsl(var(--muted)); margin-bottom: 1rem; }
.theme-product-thumbnails { display: flex; gap: 0.75rem; flex-wrap: nowrap; max-width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; border-radius: 0.375rem; background: hsl(var(--muted)); opacity: 0.6; transition: opacity 0.2s ease; border: 0; padding: 0; }
.theme-product-thumb:hover, .theme-product-thumb.is-active { opacity: 1; }
.theme-product-title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 2.25rem; /* text-4xl */
	line-height: 1.05;
	color: hsl(var(--foreground));
	margin: 0;
}
@media (min-width: 768px) { .theme-product-title { font-size: 3rem; /* text-5xl */ } }
.theme-product-subtitle {
	margin-top: 0.75rem;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: hsl(var(--foreground) / 0.7);
}
.theme-product-cat { display: none; } /* Lovable uses subtitle under title, not category above */
.theme-product-price { display: none; } /* Price lives inside the CTA label */
.theme-stock-status { margin-top: 0.75rem; font-size: 14px; font-weight: 600; }
.theme-stock-status--out { color: hsl(0 60% 45%); }

.theme-add-to-cart-area { display: flex; flex-direction: column; align-items: stretch; gap: 0; margin-top: 2rem; }
.theme-quantity-block { margin-bottom: 1.5rem; }
.theme-quantity-label {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 1.125rem; /* text-lg */
	margin: 0 0 0.75rem;
	color: hsl(var(--foreground));
}
.theme-quantity-wrapper { display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid hsl(var(--foreground) / 0.3); }
.theme-qty-minus, .theme-qty-plus {
	padding: 0.5rem 1rem;
	background: transparent;
	border: 0;
	color: hsl(var(--foreground));
	line-height: 1;
	font-size: 14px;
}
.theme-qty-minus { border-radius: 999px 0 0 999px; }
.theme-qty-plus { border-radius: 0 999px 999px 0; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: hsl(var(--foreground) / 0.05); }
.theme-qty-input {
	width: 2.75rem; min-width: 44px; border: 0; background: transparent;
	text-align: center; padding: 0.5rem 0; font-family: var(--font-body); font-size: 14px;
	-moz-appearance: textfield; color: hsl(var(--foreground));
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-product-cta,
.theme-add-to-cart-area .single_add_to_cart_button.theme-product-cta {
	width: 100% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: hsl(var(--primary)) !important;
	color: hsl(var(--primary-foreground)) !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: 1rem 1.5rem !important;
	min-height: unset !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	text-decoration: none !important;
	transition: background-color 0.2s ease, opacity 0.2s ease !important;
	box-sizing: border-box;
	cursor: pointer;
}
.theme-product-cta:hover,
.theme-add-to-cart-area .single_add_to_cart_button.theme-product-cta:hover {
	background: hsl(var(--primary) / 0.9) !important;
	color: hsl(var(--primary-foreground)) !important;
	opacity: 1 !important;
}
.theme-product-cta.is-disabled,
.theme-product-cta[aria-disabled="true"],
.theme-product-cta:disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	pointer-events: none;
}

.theme-product-tabs { margin-top: 2.5rem; }
.theme-tabs-nav {
	display: flex; flex-wrap: nowrap; align-items: flex-end;
	gap: 1rem; border-bottom: 1px solid hsl(var(--border));
	padding-bottom: 0.5rem; overflow-x: auto; scrollbar-width: none;
}
@media (min-width: 640px) { .theme-tabs-nav { gap: 1.5rem; } }
.theme-tabs-nav::-webkit-scrollbar { display: none; }
.theme-tab-btn {
	position: relative; font-family: var(--font-display); font-size: 14px;
	padding-bottom: 0.5rem; color: hsl(var(--foreground) / 0.6);
	white-space: nowrap; flex-shrink: 0; background: transparent; border: 0;
	text-transform: capitalize; cursor: pointer;
}
@media (min-width: 768px) { .theme-tab-btn { font-size: 16px; } }
.theme-tab-btn:hover { color: hsl(var(--foreground)); }
.theme-tab-btn.is-active { font-style: italic; color: hsl(var(--foreground)); }
.theme-tab-btn.is-active::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -9px;
	height: 2px; background: hsl(var(--primary));
}
.theme-tab-panel { padding-top: 1.5rem; font-family: var(--font-body); font-size: 15px; line-height: 1.625; color: hsl(var(--foreground) / 0.8); }
.theme-product-tab-copy { white-space: pre-line; }
.theme-product-tab-copy p { margin: 0 0 1rem; }
.theme-product-tab-copy p:last-child { margin-bottom: 0; }
.theme-product-details-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-details-list li {
	display: flex; align-items: flex-start;
	font-family: var(--font-body); font-size: 15px; line-height: 1.625;
	color: hsl(var(--foreground) / 0.8);
}
.theme-product-details-list li::before {
	content: ''; width: 4px; height: 4px; border-radius: 999px;
	background: hsl(var(--primary)); margin-top: 0.5rem; margin-right: 0.75rem; flex-shrink: 0;
}
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__description,
.single-product .posted_in {
	overflow-wrap: break-word; word-break: break-word;
}
.theme-related-heading { text-align: center; margin: 5rem 0 3rem; }
.theme-related-eyebrow { display: block; font-family: var(--font-display); font-style: italic; color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem; }
.theme-related-title { font-family: var(--font-display); font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .theme-related-title { font-size: 2.25rem; } }
.related-products-section { border-top: 1px solid hsl(var(--border)); padding-top: 5rem; padding-bottom: 0; }
.theme-related-grid { gap: 1.5rem; }
@media (min-width: 1024px) { .theme-related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }

/* -------------------------------------------------------------------------
   WooCommerce global overrides (Sections 11.4.1 / 11.4.2 / 14)
   ------------------------------------------------------------------------- */
.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: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: 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;
}
/* Card compact button — overrides global rules for the shop grid card CTA */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-featured-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.75rem 1rem !important;
	border-radius: 999px !important;
	background-color: transparent !important;
	color: hsl(var(--foreground)) !important;
	border: 1px solid hsl(var(--border)) !important;
	text-transform: none !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em !important;
	width: 100%;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover {
	background-color: hsl(var(--marigold)) !important;
	color: hsl(var(--background)) !important;
	border-color: hsl(var(--marigold)) !important;
	opacity: 1 !important;
}
.theme-featured-card .add_to_cart_button.ajax_add_to_cart {
	background-color: transparent !important;
	color: hsl(var(--foreground)) !important;
	border: 1px solid hsl(var(--border)) !important;
	font-size: 13px !important;
	padding: 0.625rem 1rem !important;
	min-height: unset !important;
	line-height: 1.25 !important;
}
.theme-featured-card .add_to_cart_button.ajax_add_to_cart:hover {
	background-color: hsl(var(--primary)) !important;
	color: hsl(var(--primary-foreground)) !important;
	border-color: hsl(var(--primary)) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

.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-message, .woocommerce-error, .woocommerce-info {
	font-family: var(--font-body); border-radius: 0.5rem; padding: 1rem 1.5rem; margin: 0 auto 1.5rem; max-width: 60rem;
	list-style: none; border: 1px solid hsl(var(--border)); background: hsl(var(--secondary));
}
.woocommerce-error { border-color: hsl(0 60% 45% / 0.4); background: hsl(0 60% 45% / 0.08); color: hsl(0 60% 30%); }

/* -------------------------------------------------------------------------
   Shop archive
   ------------------------------------------------------------------------- */
.woocommerce-archive-page { padding: 3rem 0 5rem; }
.theme-archive-header { text-align: center; padding: 2rem 0; }
.theme-archive-title { font-size: 2.5rem; }
.theme-archive-pagination { display: flex; justify-content: center; margin-top: 3rem; }

/* -------------------------------------------------------------------------
   404
   ------------------------------------------------------------------------- */
.theme-404-page { min-height: 60vh; display: flex; align-items: center; }
.theme-404-inner { text-align: center; padding: 6rem 0; }
.theme-404-title { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* -------------------------------------------------------------------------
   Single resource page
   ------------------------------------------------------------------------- */
.resource-header-band { position: relative; overflow: hidden; border-bottom: 1px solid hsl(var(--border) / 0.6); background: linear-gradient(to bottom, hsl(var(--primary) / 0.06), transparent); }
.resource-header-compass {
	pointer-events: none; position: absolute; right: -6rem; top: -6rem; width: 420px; height: 420px;
	opacity: 0.05; color: hsl(var(--primary)); animation: theme-spin-vslow 60s linear infinite;
}
.resource-header-compass svg { width: 100%; height: 100%; }
@keyframes theme-spin-vslow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* Vertical padding only — keep .container-wide horizontal gutters */
.resource-header-inner { position: relative; padding-top: 7rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .resource-header-inner { padding-top: 8rem; padding-bottom: 5rem; } }
.resource-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; font-family: var(--font-body); color: hsl(var(--foreground) / 0.7); margin-bottom: 2rem; cursor: pointer; }
.resource-back-link:hover { color: hsl(var(--accent)); }
.resource-category { font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.24em; font-size: 13px; color: hsl(var(--accent)); margin-bottom: 1rem; }
.resource-title { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.05; color: hsl(var(--primary)); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .resource-title { font-size: 3.75rem; } }
.resource-excerpt { font-family: var(--font-body); font-size: 1.125rem; line-height: 1.6; color: hsl(var(--foreground) / 0.75); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .resource-excerpt { font-size: 1.25rem; } }
.resource-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 14px; font-family: var(--font-body); color: hsl(var(--foreground) / 0.6); flex-wrap: wrap; }
.resource-body { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .resource-body { padding-top: 6rem; padding-bottom: 6rem; } }
@media (max-width: 479px) {
	.single-resource-page .resource-header-inner.container-wide,
	.single-resource-page .resource-body.container-wide,
	.single-resource-page .resource-related-section .container-wide {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	.resource-title { font-size: 1.875rem; }
}
.resource-body .resource-content-block { margin-bottom: 2.5rem; }
.resource-body h2 { font-family: var(--font-display); font-size: 1.5rem; color: hsl(var(--primary)); margin: 0 0 1rem; }
@media (min-width: 768px) { .resource-body h2 { font-size: 1.875rem; } }
.resource-body p { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: hsl(var(--foreground) / 0.8); margin-bottom: 1.25rem; }
@media (min-width: 768px) { .resource-body p { font-size: 18px; } }
.resource-related-section { border-top: 1px solid hsl(var(--border) / 0.6); background: hsl(var(--primary) / 0.04); }
.resource-related-section .container-wide { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .resource-related-section .container-wide { padding-top: 5rem; padding-bottom: 5rem; } }
.resource-related-eyebrow { font-family: var(--font-cute); text-transform: uppercase; letter-spacing: 0.22em; font-size: 13px; color: hsl(var(--accent)); margin-bottom: 0.75rem; }
.resource-related-heading { font-family: var(--font-display); font-size: 1.875rem; color: hsl(var(--primary)); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .resource-related-heading { font-size: 2.25rem; } }
.resource-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .resource-related-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.resource-related-card { display: block; border-radius: 1rem; border: 1px solid hsl(var(--border)); background: hsl(var(--background)); padding: 1.75rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease-out; cursor: pointer; }
.resource-related-card:hover { box-shadow: 0 20px 50px -12px hsl(var(--marigold) / 0.35); border-color: hsl(var(--accent) / 0.6); transform: translateY(-4px); }
.resource-related-card-cat { font-size: 13px; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600; font-family: var(--font-body); color: hsl(var(--accent)); margin-bottom: 0.75rem; }
.resource-related-card-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; color: hsl(var(--foreground)); transition: color 0.2s ease; }
.resource-related-card:hover .resource-related-card-title { color: hsl(var(--primary)); }
.resource-related-card-excerpt { font-size: 14px; line-height: 1.6; color: hsl(var(--foreground) / 0.7); font-family: var(--font-body); }

/* -------------------------------------------------------------------------
   Generic page / thank you page
   ------------------------------------------------------------------------- */
.theme-page-container { max-width: 80rem; margin: 0 auto; padding: 6rem 1.5rem 5rem; }
@media (min-width: 1024px) { .theme-page-container { padding-left: 2rem; padding-right: 2rem; } }
.page-title { font-size: 2.25rem; margin-bottom: 2rem; max-width: 80rem; }

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
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 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 30rem; overflow-wrap: break-word; font-style: normal; }

/* -------------------------------------------------------------------------
   WooCommerce Checkout Block (Section 13)
   ------------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
	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, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout { display: block; }
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar { min-width: 0; width: 100%; max-width: none; }
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select { width: 100% !important; max-width: none !important; font-family: var(--font-body); border-radius: 0.375rem; border-color: hsl(var(--border)); }
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: hsl(var(--primary)); }
body.woocommerce-checkout .wc-block-checkout__sidebar { background-color: hsl(var(--secondary)); border-radius: var(--card-radius); padding: var(--section-padding); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button { background: hsl(var(--primary)) !important; border-radius: var(--btn-radius) !important; text-transform: none; font-family: var(--font-body); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background: hsl(var(--primary) / 0.9) !important; }
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.5rem; grid-column: 1 / -1; }
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }

/* -------------------------------------------------------------------------
   Cart / My Account pages width parity (Section 13.7)
   ------------------------------------------------------------------------- */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding: 6rem 1.5rem 5rem; max-width: 80rem; margin: 0 auto; }
