/* =============================================================
   RED ROOSTER GENERAL STORE — THEME STYLESHEET
   Author: The Free Website Guys
   ============================================================= */

/* -------------------------------------------------------------
   1. CSS VARIABLES (fallback — live values are injected inline
      by wp_add_inline_style, Section 6 / 22.9)
   ------------------------------------------------------------- */
:root {
	--color-background: #fbf8f4;
	--color-foreground: #33251f;
	--color-card: #f7f4ed;
	--color-primary: #b93b27;
	--color-primary-foreground: #fcfbf7;
	--color-secondary: #f1e6da;
	--color-muted: #ece6df;
	--color-muted-foreground: #72625a;
	--color-accent: #6aaf8f;
	--color-border: #e4dcd2;
	--color-rosa: #d75642;
	--color-marigold: #efbf6c;
	--color-teal: #64a7b4;
	--color-lilac: #d1ad94;
	--color-butter: #f6eedf;
	--color-clay: #ba6c4a;
	--color-gold: #c79e57;
	--color-sage: #87a687;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Fraunces', serif;
	--font-body: 'Nunito', sans-serif;

	--radius: 1.25rem;
	--card-radius: 1.5rem;

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;

	--shadow-soft: 0 6px 24px -6px rgba(185, 59, 39, 0.18);
	--shadow-elevated: 0 14px 50px -10px rgba(185, 59, 39, 0.22);

	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
	--header-height: 84px;
	--logo-height: 66px;
	--footer-logo-height: 96px;
	--checkout-gap: 3rem;
}

/* -------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------- */
* {
	box-sizing: border-box;
}

html, body {
	max-width: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
	line-height: 1.15;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (max-width: 639px) {
	.container-wide {
		padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
		padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
	}
}
@media (min-width: 640px) and (max-width: 1023px) {
	.container-wide {
		padding-left: max(2rem, env(safe-area-inset-left, 0px));
		padding-right: max(2rem, env(safe-area-inset-right, 0px));
	}
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2rem; }
}

.theme-section-pad { padding-block: 4rem; }
@media (min-width: 768px) {
	.theme-section-pad { padding-block: 6rem; }
}

.theme-section-header { text-align: center; margin-bottom: 3rem; }
.theme-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.theme-eyebrow--rule { display: inline-flex; align-items: center; gap: 0.75rem; }
.theme-eyebrow--rule::before { content: ''; width: 2rem; height: 1px; background: rgba(185,59,39,0.6); }
.theme-eyebrow--on-primary { color: rgba(252,251,247,0.8); }

.theme-heading {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.05;
}

/* -------------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-family: var(--font-body);
	font-weight: var(--btn-font-weight);
	padding: 1rem 2.5rem;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}
.theme-btn-primary,
.btn-hero-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
	text-transform: none;
}
.theme-btn-primary:hover { background-color: var(--color-background); color: var(--color-primary); }
.theme-btn-hero-outline,
.btn-hero-outline {
	background-color: rgba(251,248,244,0.8);
	color: var(--color-foreground);
	border-color: rgba(51,37,31,0.15);
	text-transform: none;
}
.theme-btn-hero-outline:hover { border-color: var(--color-foreground); }
.theme-btn-outline {
	background-color: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}
.theme-btn-outline:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-on-primary {
	background-color: var(--color-background);
	color: var(--color-foreground);
	border-color: var(--color-background);
}
.theme-btn-on-primary:hover { background-color: var(--color-foreground); color: var(--color-background); }
.theme-btn-outline-on-primary {
	background-color: transparent;
	color: var(--color-primary-foreground);
	border-color: rgba(252,251,247,0.4);
}
.theme-btn-outline-on-primary:hover { border-color: var(--color-primary-foreground); }
.theme-btn-lg { padding: 1rem 2.5rem; }
.theme-btn-sm { padding: 0.6rem 1.25rem; font-size: 11px; height: 44px; }
.theme-btn-full { width: 100%; display: flex; }
.theme-btn:disabled, .theme-btn.disabled { opacity: 0.6; cursor: not-allowed; }

/* -------------------------------------------------------------
   4. HEADER
   ------------------------------------------------------------- */
.theme-announcement-bar {
	position: relative;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
}
.theme-announcement-inner { padding-block: 0.5rem; text-align: center; }
.theme-announcement-text { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.theme-announcement-close {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.25rem;
	opacity: 0.7;
	color: inherit;
}
.theme-announcement-close:hover { opacity: 1; }

/* WordPress admin bar — sticky header and drawers sit below it */
body.admin-bar {
	--wp-admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--wp-admin-bar-height: 46px;
	}
}
body.admin-bar .site-header {
	top: var(--wp-admin-bar-height);
}
body.admin-bar #theme-cart-drawer {
	top: var(--wp-admin-bar-height);
	height: calc(100% - var(--wp-admin-bar-height));
}
body.admin-bar .theme-product-info {
	top: calc(7rem + var(--wp-admin-bar-height));
}
body.admin-bar .theme-product-page {
	padding-top: calc(6rem + var(--wp-admin-bar-height));
}
@media (min-width: 1024px) {
	body.admin-bar .theme-product-page {
		padding-top: calc(7rem + var(--wp-admin-bar-height));
	}
}

.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: var(--color-background);
	border-top: 2px solid rgba(209,173,148,0.4);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
	background-color: rgba(251,248,244,0.95);
	backdrop-filter: blur(6px);
	border-bottom-color: rgba(228,220,210,0.6);
}
.site-header__nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
@media (min-width: 768px) {
	.site-header__nav { height: 84px; }
}
.site-header__links {
	align-items: center;
	gap: 2.5rem;
	flex: 1;
}
.site-header__links--left {
	display: none;
}
.site-header__links--right {
	display: flex;
	justify-content: flex-end;
}
@media (min-width: 1024px) {
	.site-header__links--left { display: flex; }
}
.theme-nav-list, .theme-nav-list--left, .theme-nav-list--right {
	display: none;
	align-items: center;
	gap: 2.5rem;
}
@media (min-width: 1024px) {
	.theme-nav-list, .theme-nav-list--left, .theme-nav-list--right { display: flex; }
}
.theme-nav-link {
	font-size: 13px;
	font-weight: 400;
	color: rgba(51,37,31,0.8);
	transition: color 0.2s ease;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}
.theme-nav-link:hover { color: var(--color-foreground); }

.site-header__menu-btn {
	display: flex;
	padding: 0.5rem;
	margin-left: -0.5rem;
	color: var(--color-foreground);
}
@media (min-width: 1024px) {
	.site-header__menu-btn { display: none; }
}

.site-header__logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; object-fit: contain; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: var(--logo-height); }
.theme-footer-logo-img { height: var(--footer-logo-height) !important; }

.site-header__icons { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; z-index: 2; }
.theme-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid rgba(51,37,31,0.3);
	font-size: 13px;
	font-family: var(--font-body);
	color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.theme-cart-btn:hover { border-color: var(--color-foreground); }

.site-header__mobile-menu { display: none; }
.site-header__mobile-menu.is-open {
	display: block;
	border-top: 1px solid rgba(228,220,210,0.6);
	padding: 1rem 0;
}
@media (min-width: 1024px) {
	.site-header__mobile-menu.is-open { display: none; }
}
.theme-mobile-links { display: flex; flex-direction: column; gap: 1rem; }
.theme-mobile-link {
	text-align: left;
	font-size: 14px;
	padding: 0.5rem 0;
	color: var(--color-foreground);
	transition: color 0.2s ease;
}
.theme-mobile-link:hover { color: var(--color-muted-foreground); }

/* -------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------- */
.theme-hero { background-color: var(--color-background); }
.theme-hero__media {
	position: relative;
	width: 100%;
	min-height: 78vh;
	overflow: hidden;
}
.theme-hero__vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(0,0,0,0.35), transparent 70%);
}
.theme-hero__blob {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	filter: blur(64px);
	pointer-events: none;
}
.theme-hero__blob--1 { bottom: -80px; right: -40px; background: color-mix(in srgb, var(--color-primary) 20%, transparent); }
.theme-hero__blob--2 { top: -40px; left: -40px; width: 360px; height: 360px; background: color-mix(in srgb, var(--color-accent) 20%, transparent); }
.theme-hero__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-block: 5rem 7rem;
}
.theme-hero__content { max-width: 42rem; }
.theme-hero__title {
	font-size: 3.5rem;
	line-height: 1.05;
	color: var(--color-primary-foreground);
	margin-bottom: 2.5rem;
	text-shadow: 0 1px 4px rgba(0,0,0,0.45), 0 0 20px rgba(252,251,247,0.25), 0 0 40px rgba(252,251,247,0.12);
	opacity: 0;
	transform: translateY(22px);
	animation: themeHeroFadeUp 0.9s var(--transition-smooth) 0.35s forwards;
}
.theme-hero__subtitle {
	color: var(--color-primary-foreground);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 auto 2.5rem;
	max-width: 42rem;
	text-shadow: 0 2px 8px rgba(0,0,0,0.55), 0 0 26px rgba(252,251,247,0.3), 0 0 48px rgba(252,251,247,0.15);
	opacity: 0;
	transform: translateY(14px);
	animation: themeHeroFadeUp 0.7s var(--transition-smooth) 0.55s forwards;
}
.theme-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 4rem;
	opacity: 0;
	transform: translateY(14px);
	animation: themeHeroFadeUp 0.65s var(--transition-smooth) 0.75s forwards;
}
@keyframes themeHeroFadeUp {
	to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 768px) {
	.theme-hero__title { font-size: 6rem; }
}
@media (min-width: 1280px) {
	.theme-hero__title { font-size: 7rem; }
}
@media (min-width: 768px) {
	.theme-hero__subtitle { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
	.theme-hero__subtitle { font-size: 1.5rem; }
}

/* -------------------------------------------------------------
   6. SCROLL REVEAL SYSTEM (Section 2.1)
   ------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
	transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.scale-in-item.reveal-item { transform: translateY(24px) scale(0.98); }
.scale-in-item.reveal-item.is-visible { transform: translateY(0) scale(1); }

body.is-customizer .reveal-item,
body.is-customizer .scale-in-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .scale-in-item, .theme-hero__title, .theme-hero__subtitle, .theme-hero__actions {
		transition: none !important;
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* -------------------------------------------------------------
   7. CATEGORY STRIP
   ------------------------------------------------------------- */
.theme-cat-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 0.5rem;
}
@media (max-width: 639px) {
	.theme-cat-tiles {
		grid-template-columns: 1fr;
		gap: 0.875rem;
		max-width: 18rem;
		padding: 0;
	}
}
@media (min-width: 768px) {
	.theme-cat-tiles { gap: 3rem; }
}
.theme-cat-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
	cursor: pointer;
}
@media (max-width: 639px) {
	.theme-cat-tile {
		flex-direction: row;
		align-items: center;
		gap: 1rem;
		text-align: left;
	}
}
.theme-cat-tile__icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	border-radius: 999px;
	box-shadow: var(--shadow-soft);
	color: var(--color-background);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	animation: themeFloat 4s ease-in-out infinite;
}
@media (max-width: 639px) {
	.theme-cat-tile__icon-wrap {
		width: 4.25rem;
		height: 4.25rem;
		flex-shrink: 0;
		animation: none;
	}
}
.theme-cat-tile:hover .theme-cat-tile__icon-wrap { transform: scale(1.05); box-shadow: var(--shadow-elevated); }
.theme-cat-tile:nth-child(2) .theme-cat-tile__icon-wrap { animation-delay: 0.2s; }
.theme-cat-tile:nth-child(3) .theme-cat-tile__icon-wrap { animation-delay: 0.4s; }
@media (min-width: 640px) {
	.theme-cat-tile__icon-wrap { width: 7rem; height: 7rem; }
}
@media (min-width: 768px) {
	.theme-cat-tile__icon-wrap { width: 8rem; height: 8rem; }
}
.theme-cat-tile__icon-wrap--clay { background-color: var(--color-clay); }
.theme-cat-tile__icon-wrap--gold { background-color: var(--color-gold); }
.theme-cat-tile__icon-wrap--sage { background-color: var(--color-sage); }
.theme-cat-tile__icon { width: 2rem; height: 2rem; transition: transform 0.5s ease; }
.theme-cat-tile:hover .theme-cat-tile__icon { transform: scale(1.1); }
@media (max-width: 639px) {
	.theme-cat-tile__icon { width: 1.5rem; height: 1.5rem; }
}
@media (min-width: 768px) {
	.theme-cat-tile__icon { width: 3rem; height: 3rem; }
}
.theme-cat-tile__label {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(51,37,31,0.85);
	transition: color 0.2s ease;
}
@media (max-width: 639px) {
	.theme-cat-tile__label {
		flex: 1;
		min-width: 0;
		font-size: 11px;
		letter-spacing: 0.12em;
		line-height: 1.35;
		text-align: left;
	}
}
.theme-cat-tile:hover .theme-cat-tile__label { color: var(--color-primary); }
@media (min-width: 768px) {
	.theme-cat-tile__label { font-size: 14px; }
}
@keyframes themeFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.cat-strip-heading { font-style: italic; font-size: 1.875rem; }
@media (min-width: 768px) { .cat-strip-heading { font-size: 2.25rem; } }

/* -------------------------------------------------------------
   8. PRODUCT GRID / CARD
   ------------------------------------------------------------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 768px) {
	.theme-product-grid { gap: 2rem; }
	.theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
	.theme-product-grid--shop, .theme-product-grid--archive { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2.5rem; }
	.theme-product-grid--related { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 2rem; }
}

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	overflow: hidden;
	margin-bottom: 1.25rem;
	transition: transform 0.3s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-3px); }
.theme-product-card__image { transition: opacity 0.5s ease; }
.theme-product-card__image.has-hover { opacity: 1; }
.theme-product-card:hover .theme-product-card__image.has-hover { opacity: 0; }
.theme-product-card__image--hover { opacity: 0; }
.theme-product-card:hover .theme-product-card__image--hover { opacity: 1; }
.theme-product-card__tag {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	padding: 0.75rem 0;
	border-radius: 999px;
	background-color: var(--color-teal);
	border: 1px solid var(--color-teal);
	color: var(--color-background);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-product-card:hover .theme-product-card__tag { opacity: 1; transform: translateY(0); }
.theme-product-card__badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	background-color: var(--color-foreground);
	color: var(--color-background);
	z-index: 2;
}
.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
@media (max-width: 1023px) {
	.theme-product-card__info { padding: 0 0.35rem; }
}
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); }
.theme-product-card__title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-foreground);
	transition: color 0.3s ease;
}
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card__price,
.theme-product-card__price .woocommerce-Price-amount {
	font-size: 1rem;
	color: rgba(51,37,31,0.85);
	font-weight: 400;
}
.theme-product-card__price del { opacity: 0.5; margin-right: 0.35rem; }

.theme-section-cta { text-align: center; margin-top: 3.5rem; }

/* -------------------------------------------------------------
   9. ABOUT SECTION
   ------------------------------------------------------------- */
.theme-section--butter { background-color: var(--color-butter); position: relative; overflow: hidden; }
.theme-about-section { position: relative; overflow-x: clip; }
.theme-about-wash {
	position: absolute;
	inset: 0;
	opacity: 0.6;
	background: radial-gradient(ellipse at top, color-mix(in srgb, var(--color-marigold) 25%, transparent), transparent 60%);
	pointer-events: none;
}
.theme-about-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	margin-bottom: 5rem;
}
@media (min-width: 1024px) {
	.theme-about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.theme-about-image-col { order: 2; }
.theme-about-text-col { order: 1; }
@media (min-width: 1024px) {
	.theme-about-image-col { order: 1; }
	.theme-about-text-col { order: 2; }
}
.theme-about-image-frame { position: relative; height: 420px; }
@media (min-width: 768px) { .theme-about-image-frame { height: 500px; } }
@media (max-width: 1023px) {
	.theme-about-image-col { overflow: hidden; }
	.theme-about-image-deco { inset: -6px; }
}
.theme-about-image-deco { position: absolute; inset: -12px; border-radius: 2rem; }
.theme-about-image-deco--1 { background-color: color-mix(in srgb, var(--color-rosa) 15%, transparent); transform: rotate(-2deg); }
.theme-about-image-deco--2 { border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); transform: rotate(1deg); }
.theme-about-image {
	border-radius: 1.75rem;
	box-shadow: 0 10px 30px -6px rgba(0,0,0,0.15);
}
.theme-about-badge {
	position: absolute;
	bottom: -1.25rem;
	right: -1.25rem;
	display: none;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	background-color: var(--color-background);
	padding: 0.5rem 1rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
}
@media (min-width: 768px) { .theme-about-badge { display: flex; } }
.theme-about-badge__dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background-color: var(--color-primary); }
.theme-about-badge span:last-child { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); font-weight: 600; }
.about-heading { font-size: 2.25rem; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .about-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-heading { font-size: 3.75rem; } }
.theme-about-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; color: rgba(51,37,31,0.8); margin-bottom: 1.5rem; max-width: 36rem; }
@media (min-width: 768px) { .theme-about-quote { font-size: 1.5rem; } }
.theme-about-paragraph { color: rgba(51,37,31,0.7); line-height: 1.7; max-width: 36rem; }
.theme-about-divider { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; color: color-mix(in srgb, var(--color-primary) 70%, transparent); }
.theme-about-divider__line { height: 1px; flex: 1; max-width: 120px; background: color-mix(in srgb, var(--color-primary) 25%, transparent); }

.theme-about-pillars { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
	.theme-about-pillars { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; }
}
.theme-pillar { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; border-radius: 1.75rem; padding: 2.5rem 2rem; transition: transform 0.5s ease; }
.theme-pillar:hover { transform: translateY(-8px); }
.theme-pillar__tint { position: absolute; inset: 0; border-radius: 1.75rem; opacity: 0.6; transition: opacity 0.5s ease; }
.theme-pillar:hover .theme-pillar__tint { opacity: 1; }
.theme-pillar--sage .theme-pillar__tint { background-color: color-mix(in srgb, var(--color-sage) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-sage) 20%, transparent); }
.theme-pillar--clay .theme-pillar__tint { background-color: color-mix(in srgb, var(--color-clay) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-clay) 20%, transparent); }
.theme-pillar--gold .theme-pillar__tint { background-color: color-mix(in srgb, var(--color-gold) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-gold) 20%, transparent); }
.theme-pillar__inner { position: relative; z-index: 1; }
.theme-pillar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	background-color: var(--color-background);
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	border: 1px solid color-mix(in srgb, var(--color-marigold) 40%, transparent);
	margin-bottom: 1.5rem;
	animation: themeBreathe 5s ease-in-out infinite;
	transition: transform 0.5s ease;
}
.theme-pillar:hover .theme-pillar__icon { transform: scale(1.1); }
.theme-pillar__icon--primary { color: var(--color-primary); }
.theme-pillar__icon--clay { color: var(--color-clay); }
.theme-pillar__icon--sage { color: var(--color-sage); }
@keyframes themeBreathe {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}
.theme-pillar__title { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; line-height: 1.35; }
@media (min-width: 768px) { .theme-pillar__title { font-size: 1.65rem; } }
.theme-pillar__rule { display: block; width: 3rem; height: 1px; background-color: var(--color-marigold); margin: 0 auto 1.25rem; }
.theme-pillar__body { color: rgba(51,37,31,0.7); line-height: 1.7; font-size: 15px; max-width: 20rem; margin: 0 auto; }

/* -------------------------------------------------------------
   10. OWNER
   ------------------------------------------------------------- */
.theme-owner-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .theme-owner-grid { grid-template-columns: 1fr 1fr; } }
.theme-owner-photo-col { position: relative; min-height: 380px; overflow: hidden; }
@media (min-width: 768px) { .theme-owner-photo-col { min-height: 520px; } }
@media (min-width: 1024px) { .theme-owner-photo-col { min-height: 620px; } }
.theme-owner-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-owner-text-col { display: flex; align-items: center; background-color: var(--color-butter); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .theme-owner-text-col { padding: 6rem 3.5rem; } }
@media (min-width: 1280px) { .theme-owner-text-col { padding: 6rem 6rem; } }
.theme-owner-text-inner { max-width: 36rem; }
.owner-heading { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .owner-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-heading { font-size: 3.75rem; } }
.theme-owner-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; color: rgba(51,37,31,0.85); margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-owner-quote { font-size: 1.5rem; } }
.theme-owner-paragraph { color: rgba(51,37,31,0.75); line-height: 1.7; margin-bottom: 1.25rem; }

/* -------------------------------------------------------------
   11. SERVICES
   ------------------------------------------------------------- */
.theme-services-section { position: relative; overflow: hidden; }
.theme-services-bg { position: absolute; inset: 0; opacity: 0.15; }
.theme-services-overlay { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.theme-services-inner { position: relative; }
.theme-services-inner .theme-section-header { margin-bottom: 4rem; }
.theme-section-header__rule { display: block; width: 6rem; height: 1px; background-color: color-mix(in srgb, var(--color-primary) 40%, transparent); margin: 1.5rem auto 0; }
.services-heading { font-style: italic; font-size: 2.25rem; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 3.75rem; } }

.theme-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 640px) { .theme-services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-services-grid { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 2rem; } }
.theme-service-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	background-color: #fff;
	border-radius: 1.5rem;
	padding: 2rem;
	border: 1px solid rgba(51,37,31,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.theme-service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	animation: themeBreathe 5s ease-in-out infinite;
	transition: transform 0.5s ease;
}
.theme-service-card:hover .theme-service-card__icon { transform: scale(1.1) rotate(6deg); }
.theme-service-card__icon--primary { background-color: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); }
.theme-service-card__icon--teal { background-color: color-mix(in srgb, var(--color-teal) 10%, transparent); color: var(--color-teal); }
.theme-service-card__icon--accent { background-color: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); }
.theme-service-card__icon--lilac { background-color: color-mix(in srgb, var(--color-lilac) 10%, transparent); color: var(--color-lilac); }
.theme-service-card__icon--marigold { background-color: color-mix(in srgb, var(--color-marigold) 10%, transparent); color: var(--color-marigold); }
.theme-service-card__title { font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-service-card__title { font-size: 1.5rem; } }
.theme-service-card__body { font-size: 14px; color: rgba(51,37,31,0.8); line-height: 1.7; }

/* -------------------------------------------------------------
   12. SHOP
   ------------------------------------------------------------- */
.theme-shop-section { background-color: var(--color-butter); }
.shop-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }

.theme-shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.theme-shop-search__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.theme-shop-search__input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--color-border);
	border-radius: 0;
	padding: 0.5rem 0 0.5rem 1.75rem;
	font-size: 15px;
	color: var(--color-foreground);
	outline: none;
	transition: border-color 0.2s ease;
}
.theme-shop-search__input:focus { border-color: var(--color-foreground); }

.theme-shop-categories {
	display: flex;
	overflow-x: auto;
	gap: 0.5rem;
	margin-bottom: 1rem;
	scrollbar-width: none;
	padding: 0;
	margin-left: 0;
	margin-right: 0;
}
.theme-shop-categories::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
	.theme-shop-categories {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
		overflow: visible;
		width: 100%;
	}
	.theme-shop-cat-btn {
		flex-shrink: 1;
		width: 100%;
		padding: 0.625rem 0.5rem;
		font-size: 10px;
		letter-spacing: 0.12em;
		white-space: normal;
		line-height: 1.35;
		text-align: center;
	}
	.theme-shop-cat-btn:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 0.25rem);
		justify-self: center;
	}
}
@media (min-width: 768px) {
	.theme-shop-categories { overflow: visible; flex-wrap: wrap; justify-content: center; margin: 0 0 1rem; padding: 0; }
}
.theme-shop-cat-btn {
	flex-shrink: 0;
	padding: 0.5rem 1.25rem;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	background: transparent;
	transition: all 0.3s ease;
}
.theme-shop-cat-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-shop-cat-btn.is-active { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-shop-price-filter-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.theme-shop-price-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	transition: color 0.3s ease;
}
.theme-shop-price-toggle:hover { color: var(--color-foreground); }
.theme-shop-price-current { opacity: 0.7; text-transform: none; letter-spacing: normal; }
.theme-shop-price-chevron { transition: transform 0.3s ease; }
.theme-shop-price-panel {
	width: 100%;
	max-width: 24rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth);
}
.theme-shop-price-panel.is-open { max-height: 10rem; opacity: 1; }
.theme-price-labels { display: flex; justify-content: space-between; font-size: 14px; color: var(--color-muted-foreground); margin-top: 0.75rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-top: 0.5rem; padding: 0 0.5rem; }
.range-track-bg, .range-track-fill {
	position: absolute;
	height: 4px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	border-radius: 999px;
}
.range-track-bg { left: 0.5rem; right: 0.5rem; background: var(--color-secondary); }
.range-track-fill { background: var(--color-primary); }
.range-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	pointer-events: none;
}
.range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: auto;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	cursor: pointer;
	margin-top: 0;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	cursor: pointer;
}
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.theme-shop-empty { text-align: center; padding: 5rem 0; }
.theme-shop-empty p { color: var(--color-muted-foreground); }

/* -------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------- */
.faq-heading { font-size: 2.25rem; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 3.75rem; } }
.theme-faq-list { max-width: 48rem; margin: 0 auto; border-top: 1px solid rgba(51,37,31,0.1); border-bottom: 1px solid rgba(51,37,31,0.1); }
.theme-faq-item { border-bottom: 1px solid rgba(51,37,31,0.1); }
.theme-faq-item:last-child { border-bottom: none; }
.theme-faq-question {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.5rem 0;
	text-align: left;
	color: var(--color-foreground);
}
.theme-faq-question > span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.4; }
@media (min-width: 768px) { .theme-faq-question > span:first-child { font-size: 1.25rem; } }
.theme-faq-icon { flex-shrink: 0; margin-top: 0.25rem; color: var(--color-primary); }
.theme-faq-answer { overflow: hidden; }
.theme-faq-answer p { padding-bottom: 1.5rem; padding-right: 2.5rem; color: rgba(51,37,31,0.75); line-height: 1.7; font-size: 15px; }

/* -------------------------------------------------------------
   14. CONTACT CTA
   ------------------------------------------------------------- */
.theme-contact-grid { display: grid; grid-template-columns: 1fr; min-height: 420px; }
@media (min-width: 1024px) { .theme-contact-grid { grid-template-columns: 1fr 1fr; } }
.theme-contact-media { position: relative; overflow: hidden; min-height: 280px; background-color: var(--color-butter); }
@media (min-width: 1024px) { .theme-contact-media { min-height: 480px; } }
.theme-contact-panel { position: relative; background-color: var(--color-primary); display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; }
@media (min-width: 768px) { .theme-contact-panel { padding: 6rem 4rem; } }
.theme-contact-panel-inner { max-width: 28rem; text-align: center; }
.contact-heading { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; color: var(--color-primary-foreground); }
@media (min-width: 768px) { .contact-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-heading { font-size: 3.75rem; } }
.theme-contact-body { color: rgba(252,251,247,0.9); line-height: 1.7; margin-bottom: 2rem; }
.theme-contact-details { color: rgba(252,251,247,0.9); font-size: 14px; margin-bottom: 2.5rem; }
.theme-contact-details p { margin-bottom: 0.5rem; }
.theme-contact-details a { text-decoration: underline; text-decoration-color: rgba(252,251,247,0.4); text-underline-offset: 4px; }
.theme-contact-details a:hover { color: var(--color-primary-foreground); }
.theme-contact-address { white-space: pre-line; opacity: 0.9; }
.theme-contact-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-actions { flex-direction: row; } }

/* -------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--color-border); background-color: var(--color-butter); }
.theme-footer-inner { padding-block: 4rem; }
@media (min-width: 1024px) { .theme-footer-inner { padding-block: 5rem; } }
.theme-footer-top {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 640px) { .theme-footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.theme-footer-logo { flex-shrink: 0; }
.theme-footer-description { max-width: 36rem; }
@media (min-width: 640px) { .theme-footer-description { text-align: right; } }
.theme-footer-description p { font-size: 14px; color: rgba(51,37,31,0.7); line-height: 1.7; }
.theme-footer-contact-link:hover { color: var(--color-foreground); }
.theme-footer-dot { margin: 0 0.5rem; color: rgba(51,37,31,0.4); }

.theme-footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.theme-footer-col--newsletter { grid-column: span 2 / span 2; }
@media (min-width: 768px) and (max-width: 1023px) {
	.theme-footer-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; }
	.theme-footer-col--newsletter {
		grid-column: 1 / -1;
		margin-top: 0.5rem;
		padding-top: 2rem;
		border-top: 1px solid var(--color-border);
	}
	.theme-newsletter-form {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		max-width: 28rem;
	}
	.theme-newsletter-form .theme-btn {
		width: 100%;
	}
}
@media (min-width: 1024px) {
	.theme-footer-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; }
	.theme-footer-col--newsletter { grid-column: span 1 / span 1; }
}
.theme-footer-col-title { font-size: 1.5rem; margin-bottom: 1.25rem; }
.theme-footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-link { font-size: 14px; color: rgba(51,37,31,0.7); text-align: left; transition: color 0.2s ease; }
.theme-footer-link:hover { color: var(--color-foreground); }
.theme-footer-social { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.theme-social-btn {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	border: 1px solid rgba(51,37,31,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-foreground);
	transition: background-color 0.2s ease, color 0.2s ease;
}
.theme-social-btn:hover { background-color: var(--color-foreground); color: var(--color-background); }
.theme-footer-newsletter-body { font-size: 14px; color: rgba(51,37,31,0.7); line-height: 1.6; margin-bottom: 1rem; }
.theme-newsletter-form { display: flex; align-items: center; gap: 0.5rem; }
.theme-newsletter-input {
	flex: 1;
	min-width: 0;
	flex-shrink: 0;
	box-sizing: border-box;
	min-height: var(--btn-height);
	height: var(--btn-height);
	border-radius: 999px;
	background-color: var(--color-background);
	border: 1px solid rgba(51,37,31,0.2);
	padding: 0 1.25rem;
	font-size: 14px;
	line-height: 1.2;
	-webkit-appearance: none;
	appearance: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
	.theme-newsletter-input {
		flex: none;
		width: 100%;
	}
}
.theme-footer-bottom {
	margin-top: 3.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	text-align: center;
}
@media (min-width: 640px) { .theme-footer-bottom { flex-direction: row; text-align: left; } }
.theme-footer-tagline { font-size: 12px; font-style: italic; letter-spacing: 0.02em; color: var(--color-primary); font-family: var(--font-display); }
.theme-footer-copyright, .theme-footer-credit { font-size: 12px; letter-spacing: 0.02em; color: var(--color-muted-foreground); }
.theme-footer-credit:hover { color: var(--color-foreground); }

/* -------------------------------------------------------------
   16. CONTACT MODAL
   ------------------------------------------------------------- */
#theme-contact-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	background-color: rgba(0,0,0,0.8);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
body.contact-modal-open #theme-contact-modal-overlay { opacity: 1; pointer-events: auto; }
#theme-contact-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -48%) scale(0.96);
	z-index: 61;
	width: 100%;
	max-width: 32rem;
	max-height: 90vh;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
body.contact-modal-open #theme-contact-modal { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.theme-modal-panel {
	position: relative;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.theme-modal-close { position: absolute; right: 1rem; top: 1rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-modal-close:hover { opacity: 1; }
.theme-modal-header { text-align: center; margin-bottom: 1rem; }
@media (min-width: 640px) { .theme-modal-header { text-align: left; } }
.theme-modal-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal-description { font-size: 14px; color: var(--color-muted-foreground); }
.theme-modal-contact-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 14px; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-modal-contact-item { display: flex; align-items: center; gap: 0.5rem; }
.theme-modal-contact-item a:hover { color: var(--color-foreground); }
.theme-modal-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .theme-modal-form-row { grid-template-columns: 1fr 1fr; } }
.theme-modal-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.theme-modal-field label { font-size: 14px; font-weight: 500; }
.theme-modal-field input, .theme-modal-field textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	font-size: 1rem;
	resize: none;
	transition: box-shadow 0.3s ease;
}
.theme-modal-field input:focus, .theme-modal-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-modal-form-actions { display: flex; justify-content: flex-end; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success-icon {
	width: 3.5rem;
	height: 3.5rem;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.theme-modal-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal-success p { font-size: 14px; color: var(--color-muted-foreground); }

/* -------------------------------------------------------------
   17. SIDE CART DRAWER
   ------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 55;
	background-color: rgba(51,37,31,0.2);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 28rem;
	background-color: var(--color-background);
	z-index: 56;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 1; }
.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: 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-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image {
	position: relative;
	display: block;
	width: 5rem;
	height: 6rem;
	background-color: var(--color-secondary);
	overflow: hidden;
	flex-shrink: 0;
	border-radius: 0.5rem;
}
.theme-cart-drawer__item-image img,
.theme-cart-drawer__item-image .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: opacity 0.2s ease; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-price { font-size: 14px; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-drawer__item-meta { margin-top: 0.5rem; font-size: 11px; color: var(--color-muted-foreground); line-height: 1.5; }
.theme-cart-drawer__item-meta li span { color: rgba(51,37,31,0.7); }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s ease; display: inline-flex; }
.theme-cart-qty-btn:hover { background-color: var(--color-secondary); }
.theme-cart-drawer__item-qty { font-size: 14px; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 14px; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__row--total { font-size: 1rem; font-weight: 600; padding-top: 0.75rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__note { font-size: 13px; color: var(--color-muted-foreground); }
.theme-cart-free { color: var(--color-primary); font-weight: 500; }
.theme-cart-count:empty::after { content: '0'; }

/* -------------------------------------------------------------
   18. SINGLE PRODUCT PAGE
   ------------------------------------------------------------- */
.theme-product-page { padding-top: 6rem; background-color: var(--color-background); }
@media (min-width: 1024px) { .theme-product-page { padding-top: 7rem; } }
.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 6rem; align-items: start; min-width: 0; }
@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%; }
.theme-product-gallery__desktop { display: none; }
@media (min-width: 1024px) { .theme-product-gallery__desktop { display: flex; flex-direction: column; gap: 1rem; } .theme-product-gallery__mobile { display: none; } }
.theme-product-main-image-wrap, .theme-product-desktop-image-wrap { position: relative; aspect-ratio: 1/1; background-color: var(--color-secondary); overflow: hidden; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; overflow-x: auto; max-width: 100%; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background-color: var(--color-secondary); }
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumb:hover img, .theme-product-thumb.is-active img { opacity: 1; }
.theme-product-thumb::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background-color: var(--color-foreground); opacity: 0; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active::after { opacity: 1; }

.theme-product-info { position: sticky; top: 7rem; }
@media (max-width: 1023px) { .theme-product-info { position: static; padding-left: 0; } }
@media (min-width: 1024px) { .theme-product-info { padding-left: 1rem; } }
.theme-product-category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.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-price, .theme-product-price .woocommerce-Price-amount { font-size: 1.25rem; margin-bottom: 1.5rem; font-family: var(--font-body); color: var(--color-foreground); }
.theme-product-teaser { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-stock-indicator--out { color: var(--color-primary); font-weight: 600; margin-bottom: 1.5rem; }

.theme-personalize-box { margin-bottom: 2rem; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); background-color: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 1.25rem; }
@media (min-width: 768px) { .theme-personalize-box { padding: 1.5rem; } }
.theme-personalize-box h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .theme-personalize-box h3 { font-size: 1.25rem; } }
.theme-personalize-desc { font-size: 13px; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-personalize-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .theme-personalize-grid { grid-template-columns: 1fr 1fr; } }
.theme-personalize-field { display: flex; flex-direction: column; gap: 0.375rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); overflow-wrap: break-word; word-break: break-word; }
.theme-personalize-field--full { grid-column: 1 / -1; }
.theme-personalize-field select, .theme-personalize-field input, .theme-personalize-field textarea {
	margin-top: 0.15rem;
	padding: 0.625rem 0.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	font-size: 14px;
	color: var(--color-foreground);
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	font-style: normal;
}
.theme-personalize-field select:focus, .theme-personalize-field input:focus, .theme-personalize-field textarea:focus { outline: none; box-shadow: 0 0 0 1px var(--color-primary); }
.theme-personalize-field textarea { resize: none; }

.theme-color-dropdown { position: relative; }
.theme-color-dropdown__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.625rem 0.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	font-size: 14px;
	color: var(--color-foreground);
	text-transform: none;
	letter-spacing: normal;
}
.theme-color-dropdown__current { display: flex; align-items: center; gap: 0.5rem; }
.theme-color-swatch { width: 0.875rem; height: 0.875rem; border-radius: 999px; border: 1px solid var(--color-border); background-color: #d6d3d1; display: inline-block; }
.theme-color-dropdown__list {
	position: absolute;
	z-index: 10;
	width: 100%;
	margin-top: 0.25rem;
	max-height: 16rem;
	overflow-y: auto;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	padding: 0.25rem 0;
	display: none;
}
.theme-color-dropdown.is-open .theme-color-dropdown__list { display: block; }
.theme-color-dropdown__option { width: 100%; display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; font-size: 14px; text-transform: none; letter-spacing: normal; transition: background-color 0.2s ease; text-align: left; }
.theme-color-dropdown__option:hover { background-color: var(--color-secondary); }

.theme-quantity-block { margin-bottom: 1rem; }
.theme-quantity-block__label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-qty-input { width: 44px; min-width: 44px; text-align: center; border: none; background: transparent; padding: 0.5rem 0.25rem; font-size: 14px; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; }

.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.theme-accordion__trigger span { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion__trigger svg { transition: transform 0.2s ease; }
.theme-accordion__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.theme-accordion__panel { padding-bottom: 1.5rem; font-size: 15px; color: var(--color-muted-foreground); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.theme-accordion__panel p { margin-bottom: 1rem; }
.theme-accordion__details ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-accordion__details li { display: flex; align-items: flex-start; font-size: 15px; color: var(--color-muted-foreground); }
.theme-accordion__details li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background-color: var(--color-foreground); margin: 0.5rem 0.75rem 0 0; flex-shrink: 0; }

.theme-related-products { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.theme-related-heading { text-align: center; margin-bottom: 3rem; }
.theme-related-heading__line1 { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.theme-related-heading__line2 { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-related-heading__line2 { font-size: 2.25rem; } }

/* -------------------------------------------------------------
   19. WOOCOMMERCE STYLE OVERRIDES
   ------------------------------------------------------------- */
.woocommerce-breadcrumb,
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message {
	display: none;
}
.woocommerce-error {
	background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
	border-left: 3px solid var(--color-primary);
	color: var(--color-foreground);
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	list-style: none;
	margin-bottom: 1.5rem;
	font-size: 14px;
}

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: 999px !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: 500 !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !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.9 !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 {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

.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; }

.theme-attr-select-hidden { display: none !important; }

/* Thank-you page */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details {
	max-width: 48rem;
	margin: 0 auto;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	padding: 1.5rem;
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li { flex: 1; min-width: 8rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details address {
	min-width: 0;
	max-width: 480px;
	overflow-wrap: break-word;
	border: 1px solid var(--color-border);
	border-radius: var(--card-radius);
	padding: 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;
	}
}

/* Cart / Account page width parity */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.woocommerce-checkout .site-main {
	padding-top: var(--header-height, 84px);
	padding-bottom: 4rem;
}

/* -------------------------------------------------------------
   20. WOOCOMMERCE CHECKOUT BLOCK
   ------------------------------------------------------------- */
.page-title { font-family: var(--font-display); font-size: 2.25rem; padding: 2.5rem 0 1rem; }
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .page-title { max-width: 100%; }

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,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	background-color: var(--color-background);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	border-radius: 999px !important;
	color: var(--color-primary-foreground) !important;
	font-family: var(--font-body);
	text-transform: none;
	height: auto !important;
	padding: 1rem 2rem !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.5rem; }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: 2rem;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

/* -------------------------------------------------------------
   21. 404
   ------------------------------------------------------------- */
.theme-404-page { min-height: 60vh; display: flex; align-items: center; padding-top: var(--header-height); }
.theme-404-inner { text-align: center; padding-block: 5rem; }
.theme-404-code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404-message { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404-link { color: var(--color-primary); text-decoration: underline; }
.theme-404-link:hover { color: color-mix(in srgb, var(--color-primary) 90%, black); }

/* Inner-page top offset for the sticky header when there is no hero. */
body.theme-no-hero .site-main:not(.theme-product-page) { padding-top: 0; }

/* -------------------------------------------------------------
   21. CLICKABLE CURSOR (pointer hand on interactive elements)
   ------------------------------------------------------------- */
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
input[type="range"],
select,
summary,
label[for],
.theme-nav-link,
.theme-mobile-link,
.theme-cart-btn,
.theme-shop-cat-btn,
.theme-shop-price-toggle,
.theme-product-card,
.theme-product-thumb,
.theme-faq-question,
.theme-accordion__trigger,
.theme-color-dropdown__btn,
.theme-color-dropdown__option,
.theme-modal-close,
.theme-cart-drawer__close,
.theme-cart-qty-btn,
.theme-cart-drawer__remove,
.theme-announcement-close,
.theme-qty-minus,
.theme-qty-plus,
.theme-footer-link,
.theme-footer-links a,
.theme-breadcrumb a,
.theme-btn,
.add_to_cart_button,
.single_add_to_cart_button,
.ajax_add_to_cart,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .woocommerce-loop-product__link,
[data-contact-open],
[data-contact-close],
[data-cart-open],
[data-cart-close],
[data-announcement-close],
[data-anchor-link],
[data-category-filter],
[data-category-link] {
	cursor: pointer;
}

button:disabled,
input:disabled,
.theme-btn:disabled,
.theme-btn.disabled,
.ajax_add_to_cart.theme-btn-loading {
	cursor: not-allowed;
}
