/* =========================================================
   Be Blessed Attitude — theme.css
   Matches Lovable/React reference. Color tokens injected via
   PHP as var(--color-*) hex values.
   ========================================================= */

:root {
	--font-display: 'Playfair Display', serif;
	--font-body: 'Inter', sans-serif;
	--radius: 0.75rem;
	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 2.5rem;
	--btn-font-size: 11px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;
	--header-height: 80px;
	--color-button-text: var(--color-primary_foreground);
	--shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
	--shadow-elevated: 0 8px 40px -8px rgba(0, 0, 0, 0.18);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
	:root { --header-height: 96px; }
}

/* ---------------------------------------------------------
   Reset / base
   --------------------------------------------------------- */
* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	background-color: var(--color-background);
	color: var(--color-foreground);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
	position: relative;
}

.site-main,
.site-footer,
.about-section,
.founder-section,
.final-cta-section,
.featured-section,
.services-section,
.shop-section,
.faq-section,
.testimonials-section {
	max-width: 100%;
	overflow-x: hidden;
}

/* Category strip needs visible overflow so the mobile rail can edge-scroll. */
.category-strip-section {
	max-width: 100%;
	overflow-x: visible;
}

/* Keep header overflow visible so the mobile menu can drop down. */
.site-header {
	max-width: 100%;
	width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: -0.015em;
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
dl, dt, dd { margin: 0; padding: 0; }

[hidden] { display: none !important; }

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.product-main-img):not(.about-cover-img):not(.founder-cover-img):not(.cta-cover-img):not(.site-logo-img):not(.testimonials-carousel__img):not(.product-stack-img) {
	max-width: 100%;
	height: auto;
}

.cover-img,
.hero-bg-img,
.hero-bg-video,
.product-card-img,
.product-main-img,
.about-cover-img,
.founder-cover-img,
.cta-cover-img,
.cta-cover-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-bg-video,
.cta-cover-video {
	pointer-events: none;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
	min-width: 0;
}

@media (min-width: 1024px) {
	.container-wide {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.theme-kicker {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-accent);
	font-weight: 600;
	font-family: var(--font-body);
	margin-bottom: 0.75rem;
}

.section-heading {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.15;
	letter-spacing: -0.015em;
}

@media (min-width: 768px) {
	.section-heading { font-size: 2.25rem; }
}

.section-heading-wrap {
	text-align: center;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.section-heading-wrap { margin-bottom: 3.5rem; }
}

/* ---------------------------------------------------------
   Link underline (hidden → expands on hover)
   --------------------------------------------------------- */
.link-underline {
	position: relative;
	display: inline-block;
}

.link-underline::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}

.link-underline:hover::after {
	transform: scaleX(1);
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn-hero-primary,
.btn-hero-outline,
.btn-outline-primary,
.btn-outline-accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: 1rem 2.5rem;
	border-radius: var(--btn-radius);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
	border: 1px solid transparent;
	cursor: pointer;
	line-height: 1;
}

.btn-hero-primary {
	background-color: var(--color-accent);
	color: var(--color-accent_foreground);
}

.btn-hero-primary:hover { opacity: 0.9; }

.btn-hero-outline {
	background-color: transparent;
	border-color: currentColor;
	color: inherit;
}

.btn-hero-outline:hover {
	background-color: color-mix(in srgb, currentColor 12%, transparent);
}

.btn-outline-primary {
	background: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
	font-size: 12px;
	letter-spacing: 0.22em;
	padding: 0.875rem 2rem;
	height: auto;
}

.btn-outline-primary:hover {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
}

.btn-outline-accent {
	background: transparent;
	border-color: var(--color-accent);
	color: var(--color-accent);
	font-size: 12px;
	letter-spacing: 0.22em;
	padding: 0.875rem 2rem;
	height: auto;
}

.btn-outline-accent:hover {
	background: var(--color-accent);
	color: var(--color-accent_foreground);
}

/* ---------------------------------------------------------
   Animations / reveal
   --------------------------------------------------------- */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.6s var(--transition-smooth) both; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) both; }

.reveal-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.animate-fade-in,
	.animate-slide-up { animation: none; }
}

/* ---------------------------------------------------------
   Announcement bar
   --------------------------------------------------------- */
.theme-announcement-bar {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
	font-size: 12px;
}

.theme-announcement-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1.5rem;
	position: relative;
}

.theme-announcement-bar__text {
	display: flex;
	gap: 0.5rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.theme-announcement-bar__main {
	color: var(--color-accent);
	font-weight: 600;
}

.theme-announcement-bar__sub {
	display: none;
	opacity: 0.85;
}

@media (min-width: 640px) {
	.theme-announcement-bar__sub { display: inline; }
}

.theme-announcement-bar__close {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: inherit;
	display: flex;
}

body.theme-announcement-hidden .theme-announcement-bar { display: none; }

/* ---------------------------------------------------------
   Header — always solid background
   --------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	background: var(--color-background);
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	color: var(--color-foreground);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: var(--color-border);
	box-shadow: var(--shadow-soft);
}

.admin-bar .site-header { top: 32px; }

@media screen and (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

.site-header__bar {
	position: relative;
	width: 100%;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.site-header__bar { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
	.site-header__bar { padding: 0 1.5rem; }
}

.site-header__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 80px;
}

@media (min-width: 768px) {
	.site-header__grid { height: 96px; }
}

.site-header__nav--left {
	grid-column: 1;
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.site-header__nav--left { display: flex; }
}

@media (min-width: 1280px) {
	.site-header__nav--left { gap: 3rem; }
}

.site-header__logo {
	grid-column: 2;
	justify-self: center;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.site-header__logo { padding-inline: 9rem; }
}

@media (min-width: 1280px) {
	.site-header__logo { padding-inline: 12rem; }
}

.site-logo-img {
	height: 3rem;
	width: auto;
	object-fit: contain;
	display: block;
}

@media (min-width: 768px) {
	.site-logo-img { height: var(--logo-height, 4rem); }
}

.site-logo-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
}

.site-header__nav--right {
	grid-column: 3;
	justify-self: start;
	display: none;
	align-items: center;
	justify-content: flex-start;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.site-header__nav--right { display: flex; }
}

@media (min-width: 1280px) {
	.site-header__nav--right { gap: 3rem; }
}

.site-header__mobile-controls {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 0.5rem;
	grid-column: 3;
}

@media (min-width: 640px) {
	.site-header__mobile-controls { gap: 0.75rem; }
}

@media (min-width: 1024px) {
	.site-header__mobile-controls { display: none; }
}

.theme-nav-list {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 1280px) {
	.theme-nav-list { gap: 3rem; }
}

.theme-nav-list a {
	position: relative;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	white-space: nowrap;
	transition: color 0.2s ease;
}

.theme-nav-list a:hover { color: var(--color-accent); }

.theme-nav-list a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	height: 1px;
	width: 0;
	background: var(--color-accent);
	transition: width 0.3s ease;
}

.theme-nav-list a:hover::after { width: 100%; }

.site-header__cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
	background: transparent;
	color: inherit;
	transition: border-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.site-header__cart-btn:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.theme-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--color-accent);
	color: var(--color-accent_foreground);
	font-size: 10px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-cart-count:empty { display: none; }

.site-header__menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: inherit;
	padding: 0.5rem;
	transition: color 0.2s ease;
}

.site-header__menu-toggle:hover { color: var(--color-accent); }

.site-header__menu-toggle .icon-close { display: none; }

body.mobile-menu-open .site-header__menu-toggle .icon-menu { display: none; }
body.mobile-menu-open .site-header__menu-toggle .icon-close { display: block; }

.site-header__mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--color-background);
	border-top: 1px solid var(--color-border);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s var(--transition-smooth);
	z-index: 40;
}

body.mobile-menu-open .site-header__mobile-menu {
	max-height: 480px;
}

.theme-nav-list--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
	padding: 1rem 0;
}

.theme-nav-list--mobile a {
	display: block;
	font-size: 0.875rem;
	letter-spacing: normal;
	text-transform: none;
	font-weight: 400;
	color: var(--color-foreground);
	padding: 0.75rem 0.5rem;
}

.theme-nav-list--mobile a::after { display: none; }

.theme-nav-list--mobile a:hover { color: var(--color-accent); }

/* ---------------------------------------------------------
   Hero — mirrors Lovable: h-[100vh] min-h-[620px], content h-full
   --------------------------------------------------------- */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 620px;
	display: flex;
	flex-direction: column;
	color: #faf8f5;
	overflow: hidden;
	background-color: var(--color-background);
}

body:not(.theme-no-hero) .site-main { padding-top: 0; }
/* Sticky header is in-flow — do not add a second header offset. */
body.theme-no-hero .site-main { padding-top: 0; }

.hero-section__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-section__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	pointer-events: none;
}

.hero-section__gradient {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 33.333%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	pointer-events: none;
}

/* Lovable: relative h-full container-wide flex flex-col items-center text-center */
.hero-section__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	flex: 1 1 auto;
	min-height: 0;
}

/* Lovable: flex-1 flex flex-col items-center justify-center max-w-5xl px-2 */
.hero-section__inner {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 64rem;
	width: 100%;
	padding: 0 0.5rem;
}

.hero-kicker {
	color: var(--color-accent);
	letter-spacing: 0.4em;
	font-size: 12px;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.hero-kicker { font-size: 13px; }
}

.hero-title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(2.5rem, 8vw, 6rem);
	line-height: 0.98;
	letter-spacing: -0.015em;
	color: #faf8f5;
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}

.hero-title__accent { color: var(--color-accent); }

.hero-subtext {
	max-width: 42rem;
	margin-top: 2rem;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(250, 248, 245, 0.85);
}

@media (min-width: 768px) {
	.hero-subtext { font-size: 1.125rem; }
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.5rem;
}

@media (min-width: 640px) {
	.hero-buttons { flex-direction: row; }
}

.hero-buttons .btn-hero-outline {
	border-color: rgba(250, 248, 245, 0.8);
	color: #faf8f5;
}

.hero-buttons .btn-hero-outline:hover {
	background: rgba(250, 248, 245, 0.15);
	border-color: #faf8f5;
}

/* ---------------------------------------------------------
   Category strip — Lovable: horizontal snap rail on mobile,
   centered wrap from md+
   --------------------------------------------------------- */
.category-strip-section__inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
	overflow: visible;
}

@media (min-width: 768px) {
	.category-strip-section__inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.category-strip-section__heading {
	font-size: 1.875rem;
}

@media (min-width: 768px) {
	.category-strip-section__heading { font-size: 2.25rem; }
}

.category-tiles {
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	gap: 1.5rem;
	padding-top: 1.5rem;
	padding-bottom: 1rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 1.5rem;
	-webkit-overflow-scrolling: touch;
	/* Full-bleed within container padding — no 100vw (avoids page overflow). */
	width: calc(100% + 3rem);
	max-width: none;
	min-width: 0;
	margin-left: -1.5rem;
	margin-right: -1.5rem;
	padding-left: 1.5rem;
	/* padding-right is ignored for flex scrollWidth in many browsers —
	   end spacer ::after provides the trailing inset instead. */
	padding-right: 0;
	box-sizing: border-box;
}

.category-tiles::after {
	content: "";
	flex: 0 0 1.5rem;
	height: 1px;
	pointer-events: none;
}

.category-tiles::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
	.category-tiles {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		justify-content: center;
		flex-wrap: wrap;
		gap: 2.5rem;
		overflow: visible;
		scroll-snap-type: none;
		scroll-padding-inline: 0;
	}

	.category-tiles::after { display: none; }
}

.category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	background: none;
	border: none;
	color: inherit;
	flex: 0 0 auto;
	scroll-snap-align: start;
	cursor: pointer;
	padding: 0;
	min-width: 6rem;
}

@media (min-width: 768px) {
	.category-tile {
		gap: 1rem;
		min-width: 0;
	}
}

.category-tile__icon {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s var(--transition-smooth);
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.category-tile__icon {
		width: 7rem;
		height: 7rem;
	}
}

@media (min-width: 768px) {
	.category-tile__icon {
		width: 9rem;
		height: 9rem;
	}
}

.category-tile:hover .category-tile__icon {
	transform: scale(1.05);
}

.category-tile__icon--primary {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
}

.category-tile__icon--accent {
	background: var(--color-accent);
	color: var(--color-accent_foreground);
}

.category-tile__icon--destructive {
	background: var(--color-destructive);
	color: #fff;
}

.category-tile__label {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	text-align: center;
	max-width: 7.5rem;
	line-height: 1.35;
}

@media (min-width: 768px) {
	.category-tile__label {
		font-size: 0.875rem;
		max-width: none;
	}
}

.category-tile:hover .category-tile__label {
	color: var(--color-foreground);
}

/* ---------------------------------------------------------
   Product cards
   --------------------------------------------------------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

@media (min-width: 768px) {
	.theme-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.theme-product-grid { gap: 2.5rem; }
}

.theme-product-grid--featured {
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.theme-product-grid--featured {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.theme-product-grid--featured { gap: 3rem; }
}

.theme-product-grid--shop {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.theme-product-grid--shop {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.theme-product-grid--shop { gap: 2.5rem; }
}

.theme-product-grid--related {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.theme-product-grid--related {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}

.theme-product-card-wrap {
	height: 100%;
	display: flex;
}

.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.theme-product-card > .theme-card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: auto;
}

.theme-product-card *:not(.theme-card-link) { pointer-events: none; }

.theme-product-card .add_to_cart_button,
.theme-product-card .theme-product-card__add {
	position: relative;
	z-index: 3;
	pointer-events: auto;
}

.theme-product-card__image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 1rem;
	background: var(--color-card);
	margin-bottom: 1.25rem;
}

.theme-product-card__image-wrapper img {
	transition: transform 0.5s var(--transition-smooth);
}

.theme-product-card:hover .theme-product-card__image-wrapper img {
	transform: scale(1.04);
}

.theme-product-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 4;
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 11px;
	letter-spacing: 0.04em;
	font-weight: 500;
	font-family: var(--font-body);
	padding: 0.25rem 0.75rem;
	border-radius: 0.375rem;
}

.theme-product-card__info {
	flex: 1;
	min-width: 0;
	padding-inline: 0.25rem;
}

.theme-product-card__cat {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
	margin-bottom: 0.375rem;
}

.theme-product-card__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.375;
	color: var(--color-foreground);
	margin-bottom: 0.375rem;
	transition: color 0.3s ease;
}

@media (min-width: 768px) {
	.theme-product-card__title { font-size: 1.125rem; }
}

.theme-product-card:hover .theme-product-card__title {
	color: var(--color-primary);
}

.theme-product-card__price {
	font-size: 1rem;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}

.theme-product-card__price .woocommerce-Price-amount { color: inherit; }

/* Card ATC: full-width pill, hidden until hover */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-product-card .theme-product-card__add {
	position: absolute !important;
	left: 1rem !important;
	right: 1rem !important;
	bottom: 1rem !important;
	width: auto !important;
	min-height: unset !important;
	height: auto !important;
	padding: 0.75rem 1rem !important;
	border-radius: 999px !important;
	background: var(--color-accent) !important;
	color: var(--color-accent_foreground) !important;
	border: 1px solid var(--color-accent) !important;
	font-size: 11px !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	font-family: var(--font-body) !important;
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease !important;
	box-shadow: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	z-index: 3;
}

.theme-product-card:hover .theme-product-card__add,
.theme-product-card:hover .add_to_cart_button.ajax_add_to_cart {
	opacity: 1;
	transform: none;
}

.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover,
.theme-product-card .theme-product-card__add:hover {
	background: var(--color-background) !important;
	color: var(--color-accent) !important;
}

/* ---------------------------------------------------------
   Featured section
   --------------------------------------------------------- */
.featured-section__inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.featured-section__inner {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

.featured-section__heading {
	font-size: 1.875rem;
}

@media (min-width: 768px) {
	.featured-section__heading { font-size: 3rem; }
}

.featured-section__cta {
	text-align: center;
	margin-top: 3.5rem;
}

/* ---------------------------------------------------------
   About — full-bleed image + centered text (NOT side-by-side)
   --------------------------------------------------------- */
.about-section__inner {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

@media (min-width: 768px) {
	.about-section__inner {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}

/* Full-bleed without 100vw (avoids horizontal scrollbar on mobile). */
.about-section__image {
	position: relative;
	width: 100%;
	left: auto;
	margin-left: 0;
	height: 42vh;
	min-height: 280px;
	overflow: hidden;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.about-section__image {
		height: 55vh;
		margin-bottom: 2.5rem;
	}
}

.about-section__content {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 768px) {
	.about-section__content {
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}
}

.about-section__content-inner { width: 100%; }

.about-section__quote {
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.25;
	color: var(--color-foreground);
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.about-section__quote { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
	.about-section__quote { font-size: 2.5rem; }
}

.about-section__quote-accent,
.about-section__quote em {
	font-style: italic;
	color: var(--color-accent);
}

.about-section__body {
	margin-bottom: 0;
	line-height: 1.7;
	font-size: 1rem;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}

@media (min-width: 768px) {
	.about-section__body { font-size: 1.125rem; }
}

.about-section__link {
	margin-top: 2.5rem;
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--color-foreground);
}

/* ---------------------------------------------------------
   Founder — edge-to-edge 50/50, no container padding on grid
   --------------------------------------------------------- */
.founder-section {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
}

.founder-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.founder-section__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.founder-section__image {
	position: relative;
	min-height: 320px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.founder-section__image { min-height: 460px; }
}

@media (min-width: 1024px) {
	.founder-section__image { min-height: 560px; }
}

.founder-section__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 55%);
	pointer-events: none;
}

.founder-section__caption {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	z-index: 1;
	color: #faf8f5;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	background: none;
	padding: 0;
}

.founder-section__caption strong {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.founder-section__caption strong { font-size: 1.875rem; }
}

.founder-section__caption span {
	color: var(--color-accent);
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
}

.founder-section__content {
	display: flex;
	align-items: center;
	background: var(--color-background);
	color: var(--color-foreground);
	padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
	.founder-section__content {
		padding: 6rem 3.5rem;
	}
}

@media (min-width: 1024px) {
	.founder-section__content {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.founder-section__content-inner { max-width: 36rem; }

.founder-section__heading {
	font-size: 2.25rem;
	margin-bottom: 1.75rem;
	color: var(--color-foreground);
}

@media (min-width: 768px) {
	.founder-section__heading { font-size: 3rem; }
}

@media (min-width: 1024px) {
	.founder-section__heading { font-size: 3.75rem; }
}

.founder-section__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.375;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	margin: 0 0 2rem;
	border: none;
	padding: 0;
}

@media (min-width: 768px) {
	.founder-section__quote { font-size: 1.5rem; }
}

.founder-section__body {
	margin-bottom: 1.25rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}

.founder-section__body:last-child { margin-bottom: 0; }

.founder-section__body a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.founder-section__body a:hover { color: var(--color-accent); }

/* ---------------------------------------------------------
   Services
   --------------------------------------------------------- */
.services-section {
	background: var(--color-secondary);
}

.services-section__inner {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

@media (min-width: 768px) {
	.services-section__inner {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}
}

.offerings-section__heading {
	font-size: 2.25rem;
}

@media (min-width: 768px) {
	.offerings-section__heading { font-size: 3rem; }
}

@media (min-width: 1024px) {
	.offerings-section__heading { font-size: 3.75rem; }
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 80rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 2rem;
	}
}

.service-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	background: var(--color-background);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid var(--color-border);
	height: 100%;
	transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.18);
}

.service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.service-card__icon--accent { color: var(--color-accent); }
.service-card__icon--primary { color: var(--color-primary); }
.service-card__icon--destructive { color: var(--color-destructive); }

.service-card__title {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-foreground);
	margin-bottom: 0.75rem;
}

.service-card__desc {
	flex: 1;
	color: var(--color-muted_foreground);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	font-family: var(--font-body);
}

.service-card__cta {
	display: inline-block;
	margin-top: auto;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-accent);
	transition: color 0.2s ease;
}

.service-card__cta:hover { color: var(--color-foreground); }

/* ---------------------------------------------------------
   Shop
   --------------------------------------------------------- */
.shop-section__inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.shop-section__inner {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

.shop-heading {
	font-size: 1.875rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.shop-heading {
		font-size: 3rem;
		margin-bottom: 2.5rem;
	}
}

.shop-section .section-heading-wrap { margin-bottom: 0; }

.shop-controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1rem;
}

.shop-search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 28rem;
	width: 100%;
	margin: 0 auto 0.5rem;
}

.shop-search svg {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-muted_foreground);
	pointer-events: none;
}

.shop-search input {
	width: 100%;
	height: 2.75rem;
	padding: 0 0 0 1.75rem;
	border: 0;
	border-bottom: 1px solid var(--color-border);
	border-radius: 0;
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--color-foreground);
	outline: none;
	transition: border-color 0.2s ease;
}

.shop-search input:focus {
	border-bottom-color: var(--color-foreground);
}

.shop-cat-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	scrollbar-width: none;
	padding-bottom: 0.25rem;
	-webkit-overflow-scrolling: touch;
}

.shop-cat-pills::-webkit-scrollbar { display: none; }

.theme-cat-filter {
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: transparent;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 400;
	font-family: var(--font-body);
	color: var(--color-foreground);
	flex-shrink: 0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-cat-filter:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.theme-cat-filter.is-active {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
	border-color: var(--color-primary);
}

.price-filter-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2rem;
	gap: 0.75rem;
}

.price-filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-muted_foreground);
	padding: 0.5rem 1rem;
	transition: color 0.2s ease;
}

.price-filter-toggle:hover { color: var(--color-foreground); }

.price-filter-panel {
	padding-top: 0.5rem;
	width: 100%;
	max-width: 24rem;
}

.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: var(--color-border);
}

.range-track-fill { background: var(--color-accent); }

.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: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-accent);
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-accent);
	border: 2px solid #fff;
}

.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.price-range-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
	margin-top: 0.75rem;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
}

.theme-product-grid--shop .theme-product-card-wrap[hidden] { display: none; }

.shop-empty-state {
	text-align: center;
	padding: 5rem 0;
	color: var(--color-muted_foreground);
}

.shop-show-more-wrap {
	text-align: center;
	margin-top: 3rem;
}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq-section {
	background: var(--color-background);
}

.faq-section__inner {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

@media (min-width: 768px) {
	.faq-section__inner {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}
}

.faq-section__intro {
	max-width: 42rem;
	text-align: left;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.faq-section__intro { margin-bottom: 3.5rem; }
}

.faq-section__intro .section-heading {
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
	.faq-section__intro .section-heading { font-size: 3rem; }
}

@media (min-width: 1024px) {
	.faq-section__intro .section-heading { font-size: 3.75rem; }
}

.faq-intro {
	margin-top: 0;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	font-size: 1rem;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.faq-intro { font-size: 1.125rem; }
}

.faq-intro__email {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	transition: text-decoration-color 0.2s ease;
}

.faq-intro__email:hover {
	text-decoration-color: var(--color-foreground);
}

.faq-tabs__nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.625rem;
	justify-content: flex-start;
	margin-bottom: 2.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	scrollbar-width: none;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
	max-width: 100%;
	min-width: 0;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.faq-tabs__nav::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
	.faq-tabs__nav {
		flex-wrap: wrap;
		overflow: visible;
		scroll-snap-type: none;
		padding-bottom: 0;
	}
}

.faq-tabs__btn {
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: transparent;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	color: var(--color-foreground);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-tabs__btn--accent {
	border-color: var(--color-accent);
}

.faq-tabs__btn--accent:hover {
	background: color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.faq-tabs__btn--accent.is-active {
	background: var(--color-accent);
	color: var(--color-accent_foreground);
	border-color: var(--color-accent);
}

.faq-tabs__btn--primary {
	border-color: var(--color-primary);
}

.faq-tabs__btn--primary:hover {
	background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.faq-tabs__btn--primary.is-active {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
	border-color: var(--color-primary);
}

.faq-tabs__btn--destructive {
	border-color: var(--color-destructive);
}

.faq-tabs__btn--destructive:hover {
	background: color-mix(in srgb, var(--color-destructive) 10%, transparent);
}

.faq-tabs__btn--destructive.is-active {
	background: var(--color-destructive);
	color: #fff;
	border-color: var(--color-destructive);
}

.faq-tabs__panel {
	display: none;
	animation: fadeIn 0.25s var(--transition-smooth);
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
}

.faq-tabs__panel.is-active { display: block; }
.faq-tabs__panel[hidden] { display: none !important; }

.faq-accordion__item {
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
}

.faq-accordion__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 0;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--color-foreground);
	line-height: 1.375;
	cursor: pointer;
}

@media (min-width: 768px) {
	.faq-accordion__question {
		padding: 1.5rem 0;
		font-size: 1.25rem;
	}
}

.faq-accordion__chevron {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	border: 1px solid var(--color-accent);
	color: var(--color-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.3s ease;
}

.faq-tabs__panel--primary .faq-accordion__chevron {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.faq-tabs__panel--destructive .faq-accordion__chevron {
	border-color: var(--color-destructive);
	color: var(--color-destructive);
}

.faq-accordion__chevron svg {
	transition: transform 0.3s ease;
}

.faq-accordion__item.is-open .faq-accordion__chevron {
	background: var(--color-accent);
	color: var(--color-accent_foreground);
	border-color: var(--color-accent);
}

.faq-tabs__panel--primary .faq-accordion__item.is-open .faq-accordion__chevron {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
	border-color: var(--color-primary);
}

.faq-tabs__panel--destructive .faq-accordion__item.is-open .faq-accordion__chevron {
	background: var(--color-destructive);
	color: #fff;
	border-color: var(--color-destructive);
}

.faq-accordion__item.is-open .faq-accordion__chevron svg {
	transform: rotate(180deg);
}

.faq-accordion__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s var(--transition-smooth), opacity 0.35s ease;
}

.faq-accordion__item.is-open .faq-accordion__answer {
	opacity: 1;
}

.faq-accordion__answer p {
	padding-bottom: 1.5rem;
	padding-right: 3rem;
	max-width: 48rem;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	line-height: 1.7;
	font-size: 1rem;
}

@media (min-width: 768px) {
	.faq-accordion__answer p { font-size: 1.0625rem; }
}

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonials-section {
	background: var(--color-secondary);
}

.testimonials-section__inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.testimonials-section__inner {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

.testimonials-section__heading {
	text-align: center;
	font-size: 1.875rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.testimonials-section__heading {
		font-size: 3rem;
		margin-bottom: 3.5rem;
	}
}

.testimonials-carousel {
	position: relative;
	max-width: 72rem;
	margin: 0 auto;
}

.testimonials-carousel__viewport { overflow: hidden; }

.testimonials-carousel__track { position: relative; }

.testimonials-carousel__slide {
	display: none;
	grid-template-columns: 1fr;
	gap: 1rem;
	animation: fadeIn 0.7s var(--transition-smooth);
}

.testimonials-carousel__slide.is-active {
	display: grid;
}

@media (min-width: 768px) {
	.testimonials-carousel__slide {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

.testimonials-carousel__media {
	aspect-ratio: 1 / 1;
	border-radius: 1rem;
	overflow: hidden;
	background: var(--color-muted);
}

.testimonials-carousel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.testimonials-carousel__panel {
	aspect-ratio: 1 / 1;
	background: var(--color-primary);
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-primary_foreground);
}

@media (min-width: 768px) {
	.testimonials-carousel__panel { padding: 3rem; }
}

.testimonials-carousel__stars {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	color: var(--color-accent);
	margin-bottom: 1.5rem;
}

.testimonials-carousel__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.6;
	text-align: center;
	color: var(--color-primary_foreground);
	margin: 0;
}

@media (min-width: 768px) {
	.testimonials-carousel__quote { font-size: 1.5rem; }
}

.testimonials-carousel__person {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
	font-family: var(--font-body);
}

.testimonials-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 2rem;
}

.testimonials-carousel__arrow {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid var(--color-foreground);
	background: transparent;
	color: var(--color-foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.testimonials-carousel__arrow:hover {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
}

.testimonials-carousel__dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.testimonials-carousel__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	border: none;
	padding: 0;
	transition: width 0.2s ease, background-color 0.2s ease;
	cursor: pointer;
}

.testimonials-carousel__dot.is-active {
	width: 2rem;
	background: var(--color-accent);
}

/* ---------------------------------------------------------
   Final CTA — mirrors Lovable #contact grid panel
   --------------------------------------------------------- */
.final-cta-section {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 420px;
	overflow: hidden;
	padding: 0;
}

@media (min-width: 1024px) {
	.final-cta-section {
		grid-template-columns: 1fr 1fr;
	}
}

.final-cta-section__image {
	position: relative;
	min-height: 280px;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.final-cta-section__image { min-height: 480px; }
}

.final-cta-section__panel {
	position: relative;
	background: var(--color-primary);
	color: var(--color-primary_foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 2rem; /* py-20 px-8 */
	text-align: center;
}

@media (min-width: 768px) {
	.final-cta-section__panel {
		padding: 6rem 4rem; /* md:py-24 md:px-16 */
	}
}

@media (min-width: 1024px) {
	.final-cta-section__panel { min-height: 480px; }
}

.final-cta-section__panel-inner {
	max-width: 28rem; /* max-w-md */
	width: 100%;
}

.final-cta-section__kicker {
	display: block;
	color: var(--color-accent);
	margin-bottom: 1.25rem; /* mb-5 */
}

.cta-band__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 2.25rem; /* text-4xl */
	margin: 0 0 1.5rem; /* mb-6 */
	line-height: 1.15; /* leading-tight */
	color: var(--color-primary_foreground);
}

@media (min-width: 768px) {
	.cta-band__title { font-size: 3rem; } /* md:text-5xl */
}

@media (min-width: 1024px) {
	.cta-band__title { font-size: 3.75rem; } /* lg:text-6xl */
}

.final-cta-section__body {
	color: color-mix(in srgb, var(--color-primary_foreground) 85%, transparent);
	line-height: 1.625; /* leading-relaxed */
	margin: 0 0 2.5rem; /* mb-10 */
}

.final-cta-section__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (min-width: 640px) {
	.final-cta-section__buttons { flex-direction: row; }
}

/* Lovable CTA buttons: px-8 py-3.5 text-[12px] tracking-[0.22em] */
.final-cta-section__buttons .btn-hero-primary,
.final-cta-section__buttons .btn-hero-outline {
	height: auto;
	padding: 0.875rem 2rem;
	font-size: 12px;
	letter-spacing: 0.22em;
}

.final-cta-section__buttons .btn-hero-outline {
	border-color: color-mix(in srgb, var(--color-primary_foreground) 70%, transparent);
	color: var(--color-primary_foreground);
}

.final-cta-section__buttons .btn-hero-outline:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	background: transparent;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
	background: var(--color-primary);
	color: var(--color-primary_foreground);
}

.site-footer__inner {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 1024px) {
	.site-footer__inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.site-footer__brand-row {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary_foreground) 15%, transparent);
	margin-bottom: 3rem;
	padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
	.site-footer__brand-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.site-footer__logo-img {
	height: 4rem;
	width: auto;
	object-fit: contain;
}

@media (min-width: 640px) {
	.site-footer__logo-img { height: 5rem; }
}

.site-footer__brand-copy {
	max-width: 36rem;
}

@media (min-width: 640px) {
	.site-footer__brand-copy { text-align: right; }
}

.site-footer__tagline {
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-primary_foreground) 75%, transparent);
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.site-footer__contact {
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-primary_foreground) 75%, transparent);
}

.site-footer__contact a:hover { color: var(--color-accent); }

.site-footer__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.site-footer__cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.site-footer__cols { gap: 3rem; }
}

.site-footer h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: -0.015em;
	text-transform: none;
	color: var(--color-accent);
	margin-bottom: 1.25rem;
}

.site-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.site-footer__col a,
.site-footer__col p {
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-primary_foreground) 75%, transparent);
	transition: color 0.2s ease;
}

.site-footer__col a:hover { color: var(--color-accent); }

.site-footer__contact-icons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.site-footer__contact-icons a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	text-align: center;
	font-size: 0.8rem;
	border-top: 1px solid color-mix(in srgb, var(--color-primary_foreground) 15%, transparent);
	padding-top: 1.5rem;
}

@media (min-width: 640px) {
	.site-footer__bottom {
		flex-direction: row;
		text-align: left;
	}
}

.site-footer__slogan {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 12px;
	color: var(--color-accent);
}

.site-footer__copyright {
	color: color-mix(in srgb, var(--color-primary_foreground) 65%, transparent);
}

.site-footer__copyright a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__copyright a:hover { color: var(--color-accent); }

/* ---------------------------------------------------------
   Cart drawer — shell clips transformed panel so it cannot
   widen the page (Safari/iOS + mobile overflow root cause).
   --------------------------------------------------------- */
.theme-cart-shell {
	position: fixed;
	inset: 0;
	z-index: 91;
	overflow: hidden;
	pointer-events: none;
}

body.cart-open .theme-cart-shell {
	pointer-events: auto;
}

#theme-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.cart-open #theme-cart-overlay {
	opacity: 1;
	visibility: visible;
}

#theme-cart-drawer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	max-width: 28rem;
	background: var(--color-background);
	display: flex;
	flex-direction: column;
	transform: translate3d(100%, 0, 0);
	visibility: visible;
	pointer-events: auto;
	transition: transform 0.4s var(--transition-smooth);
	box-shadow: var(--shadow-elevated);
}

body.cart-open #theme-cart-drawer {
	transform: translate3d(0, 0, 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__header h2 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
}

.theme-cart-drawer__close {
	background: none;
	border: none;
	color: inherit;
	padding: 0.25rem;
	display: flex;
}

.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;
	gap: 1rem;
	padding: 1.5rem;
	text-align: center;
	color: var(--color-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 {
	width: 5rem;
	height: 6rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
}

.theme-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.theme-cart-item__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.theme-cart-item__name {
	font-weight: 500;
	font-size: 0.875rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: var(--font-body);
}

.theme-cart-item__variation {
	font-size: 0.8rem;
	color: var(--color-muted_foreground);
}

.theme-cart-item__price {
	font-size: 0.875rem;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
}

.theme-cart-item__row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.theme-cart-qty {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.theme-cart-qty__btn {
	background: none;
	border: none;
	display: flex;
	padding: 0.25rem;
	color: inherit;
	border-radius: 0.25rem;
	transition: background-color 0.15s ease;
}

.theme-cart-qty__btn:hover {
	background: var(--color-secondary);
}

.theme-cart-qty__value {
	font-size: 0.875rem;
	min-width: 1.5rem;
	text-align: center;
	font-family: var(--font-body);
}

.theme-cart-item__remove {
	margin-left: auto;
	background: none;
	border: none;
	font-size: 0.875rem;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
	transition: color 0.15s ease;
}

.theme-cart-item__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;
	font-family: var(--font-body);
}

.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }

.theme-cart-drawer__shipping-note {
	font-size: 0.875rem;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
}

.theme-cart-drawer__checkout { width: 100%; }

.theme-cart-drawer__empty-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--btn-radius);
	background: transparent;
	font-size: 0.8rem;
	font-family: var(--font-body);
	color: var(--color-muted_foreground);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.theme-cart-drawer__empty-btn:hover {
	border-color: var(--color-foreground);
	color: var(--color-foreground);
}

/* ---------------------------------------------------------
   Contact modal
   --------------------------------------------------------- */
.theme-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
}

.theme-modal.is-open { display: block; }

.theme-modal__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.3s ease;
}

.theme-modal__panel {
	position: relative;
	z-index: 1;
	margin: 5vh auto;
	max-width: 32rem;
	width: 92%;
	background: var(--color-background);
	border-radius: var(--radius);
	padding: 2rem;
	animation: slideUp 0.35s var(--transition-smooth);
	max-height: 90vh;
	overflow-y: auto;
}

.theme-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: inherit;
	display: flex;
	padding: 0.25rem;
}

.theme-modal__title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 0.75rem;
}

.theme-modal__desc {
	color: var(--color-muted_foreground);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.theme-modal__contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.theme-modal__contact-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.theme-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 1rem;
}

@media (min-width: 640px) {
	.theme-form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.theme-form-row {
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.theme-form-row label {
	font-size: 0.8rem;
	font-weight: 600;
	font-family: var(--font-body);
}

.theme-form-row input,
.theme-form-row textarea {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	background: var(--color-card);
	resize: vertical;
	color: var(--color-foreground);
}

.theme-form-row input:focus,
.theme-form-row textarea:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: 1px;
}

.theme-form-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.5rem;
}

.theme-form-submit { width: auto; min-width: 10rem; }

.theme-form-submit[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.theme-modal__success {
	text-align: center;
	padding: 2rem 0;
}

.theme-modal__success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-primary_foreground);
	margin-bottom: 0.5rem;
}

.theme-modal__success h3 {
	margin: 1rem 0 0.5rem;
	color: var(--color-foreground);
	font-size: 1.3rem;
	font-family: var(--font-display);
}

.theme-modal__success p { color: var(--color-muted_foreground); }

/* ---------------------------------------------------------
   Single product page
   --------------------------------------------------------- */
.single-product-main {
	padding-top: 1.5rem;
	padding-bottom: 4rem;
}

@media (min-width: 1024px) {
	.single-product-main {
		padding-top: 2rem;
	}
}

.product-breadcrumb {
	padding: 1.5rem 0;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
}

.product-breadcrumb a:hover { color: var(--color-foreground); }

.product-breadcrumb__sep {
	margin: 0 0.5rem;
	opacity: 0.5;
}

.product-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	min-width: 0;
	padding-top: 1rem;
	padding-bottom: 6rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 4rem;
	}
}

.theme-product-gallery,
.theme-product-info {
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.theme-product-gallery { grid-column: span 7; }
	.theme-product-info {
		grid-column: span 5;
		position: sticky;
		top: calc(var(--header-height) + 1.5rem);
		align-self: start;
		padding-left: 1rem;
	}
}

/* Mobile: main + thumbs; Desktop: stack */
.theme-product-gallery__stack { display: none; }

@media (min-width: 1024px) {
	.theme-product-gallery__main,
	.theme-product-thumbnails { display: none; }

	.theme-product-gallery__stack {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}

.theme-product-gallery__stack-item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-secondary);
}

.product-stack-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.theme-product-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-secondary);
}

.theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	max-width: 100%;
	width: 100%;
	min-width: 0;
	padding-bottom: 0.25rem;
	-webkit-overflow-scrolling: touch;
}

.theme-product-thumb {
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
	border: none;
	padding: 0;
	position: relative;
	background: var(--color-secondary);
	cursor: pointer;
}

.theme-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.theme-product-thumb.is-active img,
.theme-product-thumb:hover img { opacity: 1; }

.theme-product-thumb.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
}

.theme-product-info__cats {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--color-muted_foreground);
	font-family: var(--font-body);
	margin-bottom: 0;
}

.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
	.product-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
	.product-title { font-size: 2.75rem; }
}

.theme-product-info__price {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
}

.theme-stock-indicator--out {
	color: var(--color-destructive);
	font-weight: 600;
	margin-bottom: 1rem;
}

.theme-product-info__short-desc,
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in {
	overflow-wrap: break-word;
	word-break: break-word;
	color: var(--color-muted_foreground);
	margin-bottom: 2rem;
	line-height: 1.7;
	font-size: 1rem;
	font-family: var(--font-body);
}

.theme-quantity-block { margin-bottom: 1rem; }

.theme-quantity-label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-muted_foreground);
	margin-bottom: 0.75rem;
}

.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: 0;
	overflow: hidden;
}

.theme-quantity-wrapper button {
	width: 2.75rem;
	height: 2.75rem;
	background: none;
	border: none;
	color: inherit;
	transition: background-color 0.15s ease;
}

.theme-quantity-wrapper button:hover {
	background: var(--color-secondary);
}

.theme-qty-input {
	width: 2.75rem;
	min-width: 44px;
	text-align: center;
	border: none;
	background: none;
	font-family: var(--font-body);
	font-size: 0.875rem;
	-moz-appearance: textfield;
	padding: 0.5rem 0;
}

.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product .theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
	margin: 1rem 0 1.5rem;
}

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
	display: block;
	width: 100%;
}

.single-product .variations tbody td.label {
	padding-bottom: 0.75rem;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--color-muted_foreground);
}

.single-product .variations tbody td.value {
	padding-top: 0;
	margin-bottom: 1.5rem;
}

.theme-attr-select-hidden { display: none !important; }

.theme-attr-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.theme-attr-pill {
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: transparent;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-family: var(--font-body);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-attr-pill:hover {
	border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}

.theme-attr-pill.is-selected {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}

.theme-accordions {
	margin-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.theme-accordion {
	border-bottom: 1px solid var(--color-border);
}

.theme-accordion__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 0;
	background: none;
	border: none;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 400;
	font-family: var(--font-body);
	text-align: left;
	color: var(--color-foreground);
	cursor: pointer;
}

.theme-accordion__toggle svg {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.theme-accordion.is-open .theme-accordion__toggle svg {
	transform: rotate(180deg);
}

.theme-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s var(--transition-smooth);
}

.theme-accordion.is-open .theme-accordion__panel {
	max-height: 1200px;
}

.theme-accordion__panel p {
	padding-bottom: 1.1rem;
	color: var(--color-muted_foreground);
	line-height: 1.7;
}

.related-products-section {
	margin-top: 5rem;
	padding-top: 3rem;
	border-top: 1px solid var(--color-border);
}

.related-products-section__heading-wrap {
	text-align: center;
	margin-bottom: 2.5rem;
}

.related-products-section__eyebrow {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-muted_foreground);
	margin-bottom: 0.25rem;
}

.related-products-section__heading {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 400;
	font-style: normal;
}

/* ---------------------------------------------------------
   WooCommerce global overrides
   --------------------------------------------------------- */
.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-foreground) !important;
	color: var(--color-background) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: 0.22em !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
	width: 100%;
}

.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
}

.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}

.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-foreground) !important;
}

.single-product .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;
}

.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: var(--radius);
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--color-border);
	background: var(--color-card);
}

/* ---------------------------------------------------------
   Checkout Block
   --------------------------------------------------------- */
body.woocommerce-checkout .site-main {
	padding-top: var(--header-height, 96px);
	padding-bottom: 4rem;
}

body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { width: 100%; }

body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title {
	margin-bottom: 2rem;
	font-size: 2.25rem;
}

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wc-block-cart { display: block; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout,
	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__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--radius);
	padding: 2rem;
}

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: var(--radius);
	background: var(--color-background);
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: 1px;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-accent) !important;
	color: var(--color-accent_foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: var(--btn-text-transform);
	letter-spacing: var(--btn-letter-spacing);
	font-size: var(--btn-font-size);
}

/* ---------------------------------------------------------
   Thank you page
   --------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }

body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
}

body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	padding: 0 0 1rem 0;
	font-size: 1.5rem;
}

@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}

body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* ---------------------------------------------------------
   404
   --------------------------------------------------------- */
.theme-404 {
	min-height: calc(100vh - var(--header-height));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1rem;
	background: var(--color-muted);
	padding: 4rem 1.5rem;
}

.theme-404-main {
	background: var(--color-muted);
}

.theme-404__code {
	font-size: 2.25rem;
	font-weight: 700;
	font-family: var(--font-body);
	margin-bottom: 1rem;
}

.theme-404__text {
	font-size: 1.25rem;
	color: var(--color-muted_foreground);
	margin-bottom: 1rem;
}

.theme-404__link,
.theme-404 a {
	color: var(--color-primary);
	text-decoration: underline;
}

.theme-404__link:hover,
.theme-404 a:hover {
	opacity: 0.9;
}

/* ---------------------------------------------------------
   Media control (Customizer)
   --------------------------------------------------------- */
.theme-media-control {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.theme-media-url-input {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.theme-media-preview {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ---------------------------------------------------------
   Mobile overflow & layout polish
   --------------------------------------------------------- */
@media (max-width: 767px) {
	.theme-announcement-bar__inner {
		padding: 0.5rem 2.5rem;
	}

	.theme-announcement-bar__text {
		flex-wrap: wrap;
		justify-content: center;
		min-width: 0;
		max-width: 100%;
	}

	.site-header__bar {
		padding: 0 1rem;
		max-width: 100%;
		box-sizing: border-box;
	}

	.site-header__grid {
		min-width: 0;
	}

	.site-logo-img {
		height: 2.5rem;
		max-width: min(160px, 42vw);
	}

	.hero-kicker {
		letter-spacing: 0.28em;
		padding: 0 0.5rem;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-title {
		font-size: clamp(2.15rem, 11vw, 3.25rem);
		max-width: 100%;
		padding: 0 0.25rem;
		box-sizing: border-box;
	}

	.hero-subtext {
		padding: 0 0.75rem;
		box-sizing: border-box;
	}

	.hero-buttons,
	.final-cta-section__buttons {
		width: 100%;
		max-width: 20rem;
		padding: 0 0.5rem;
		box-sizing: border-box;
	}

	.hero-buttons .btn-hero-primary,
	.hero-buttons .btn-hero-outline,
	.final-cta-section__buttons .btn-hero-primary,
	.final-cta-section__buttons .btn-hero-outline {
		width: 100%;
		white-space: normal;
		text-align: center;
		letter-spacing: 0.18em;
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.about-section__inner {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.about-section__content {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.about-section__quote {
		font-size: 1.35rem;
		overflow-wrap: anywhere;
	}

	.founder-section__content {
		padding: 3rem 1.25rem;
	}

	.founder-section__heading {
		font-size: 2rem;
		overflow-wrap: anywhere;
	}

	.founder-section__body,
	.founder-section__body a,
	.faq-intro,
	.faq-intro__email,
	.site-footer__contact,
	.site-footer a {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.offerings-section__heading,
	.shop-heading,
	.featured-section__heading,
	.testimonials-section__heading,
	.faq-section__intro .section-heading,
	.cta-band__title {
		font-size: clamp(1.75rem, 8vw, 2.25rem);
		overflow-wrap: anywhere;
	}

	.services-section__inner,
	.shop-section__inner,
	.featured-section__inner,
	.testimonials-section__inner,
	.faq-section__inner {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.service-card {
		padding: 1.5rem;
		min-width: 0;
	}

	.theme-product-grid,
	.theme-product-grid--shop,
	.theme-product-grid--related {
		gap: 1rem;
	}

	.theme-product-card__title {
		overflow-wrap: anywhere;
	}

	.theme-product-card .add_to_cart_button.ajax_add_to_cart,
	.theme-product-card .theme-product-card__add {
		left: 0.5rem !important;
		right: 0.5rem !important;
		bottom: 0.5rem !important;
		font-size: 10px !important;
		letter-spacing: 0.14em !important;
		padding: 0.65rem 0.5rem !important;
		white-space: normal !important;
	}

	.shop-cat-pills {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
		padding-left: 0.15rem;
		padding-right: 0.15rem;
	}

	.theme-cat-filter {
		flex-shrink: 0;
		letter-spacing: 0.14em;
		padding: 0.5rem 1rem;
	}

	.final-cta-section__panel {
		padding: 3.5rem 1.25rem;
	}

	.final-cta-section__panel-inner {
		max-width: 100%;
	}

	.site-footer__inner {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.site-footer__cols {
		gap: 1.75rem;
	}

	.theme-modal__panel {
		width: calc(100% - 1.5rem);
		margin: 4vh auto;
		padding: 1.5rem;
		max-width: none;
	}

	.theme-product-layout {
		gap: 1.75rem;
		padding-bottom: 4rem;
	}

	.product-breadcrumb {
		overflow-wrap: anywhere;
		letter-spacing: 0.12em;
	}

	.testimonials-carousel__panel {
		padding: 1.5rem;
		aspect-ratio: auto;
		min-height: 100%;
	}

	.testimonials-carousel__quote {
		font-size: 1.125rem;
		overflow-wrap: anywhere;
	}

	.theme-attr-pills {
		flex-wrap: wrap;
	}
}

@media (max-width: 379px) {
	.theme-product-grid--shop,
	.theme-product-grid--related,
	.theme-product-grid:not(.theme-product-grid--featured) {
		grid-template-columns: 1fr;
	}

	.site-footer__cols {
		grid-template-columns: 1fr;
	}
}
