/* =========================================================================
   Just Crafts — theme.css
   Theme by The Free Website Guys.
   ========================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
	--color-background: #f8f4ed;
	--color-foreground: #341d2d;
	--color-card: #f1eadf;
	--color-primary: #5b294b;
	--color-primary-foreground: #f9f6f0;
	--color-secondary: #eae2d7;
	--color-muted: #d3ccc5;
	--color-muted-foreground: #6b5764;
	--color-accent: #e4a425;
	--color-accent-foreground: #2e1a27;
	--color-border: #d5ccc3;
	--color-rosa: #d77588;
	--color-marigold: #ecb13c;
	--color-teal: #548367;
	--color-lilac: #dd8899;
	--color-button-text: var(--color-primary-foreground);
	--color-error: #bd2828;
	--color-error-bg: #fdecec;
	--color-hero-text-on-media: #ffffff;

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;

	--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;
	--btn-icon-padding: 0.6rem;

	--header-height: 80px;
	--header-height-mobile: 80px;
	--logo-height: 60px;

	--shadow-soft: 0 4px 20px -4px rgba(52, 29, 45, 0.10);
	--shadow-elevated: 0 8px 40px -8px rgba(52, 29, 45, 0.18);

	--ease-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { 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.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}
h1, h2 { font-style: italic; }

img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.theme-product-main-img):not(.theme-thumb-img):not(.about-section__image):not(.site-logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card-img, .theme-product-main-img, .theme-thumb-img, .about-section__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.scroll-mt { scroll-margin-top: 6rem; }

.theme-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
	font-weight: 500;
}
.theme-eyebrow--teal { color: var(--color-teal); }
.theme-eyebrow-italic {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-muted-foreground);
	margin: 0 0 0.5rem;
}

.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(--ease-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- REVEAL / ANIMATIONS (Section 2.1) ---------- */
@keyframes theme-fade-up {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes theme-scale-in {
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: scale(1); }
}
@keyframes theme-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.reveal-item, .scroll-reveal-section .section-heading, .theme-eyebrow {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal-item.is-visible, .scroll-reveal-section .section-heading.is-visible, .theme-eyebrow.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Never leave content permanently hidden in Customizer preview or without JS. */
body.is-customizer .reveal-item,
body.is-customizer .section-heading,
body.is-customizer .theme-eyebrow,
body.no-js .reveal-item,
body.no-js .section-heading,
body.no-js .theme-eyebrow {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .section-heading, .theme-eyebrow { transition: none !important; opacity: 1 !important; transform: none !important; }
	* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- PAGE LOADER + SCROLL PROGRESS ---------- */
.theme-page-loader {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-background);
	transition: opacity 0.6s cubic-bezier(0.25, 0.4, 0.25, 1);
}
.theme-page-loader.is-hidden { opacity: 0; pointer-events: none; }
.theme-page-loader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.theme-page-loader__spinner { position: relative; width: 4rem; height: 4rem; }
.theme-page-loader__ring {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 2px solid rgba(91, 41, 75, 0.15);
}
.theme-page-loader__ring--spin {
	border-color: transparent;
	border-top-color: var(--color-accent);
	border-right-color: var(--color-primary);
	animation: theme-spin 1.5s linear infinite;
}
.theme-page-loader__core {
	position: absolute;
	inset: 0.75rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-accent), var(--color-rosa));
	animation: theme-pulse-soft 2.2s ease-in-out infinite;
}
@keyframes theme-pulse-soft {
	0%, 100% { opacity: 0.85; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.04); }
}
.theme-page-loader__label {
	font-family: var(--font-display);
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(91, 41, 75, 0.7);
	margin: 0;
}
.theme-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	height: 3px;
	transform-origin: left center;
	transform: scaleX(0);
	background: linear-gradient(to right, var(--color-accent), var(--color-rosa), var(--color-primary));
	pointer-events: none;
}

/* ---------- HEADER ---------- */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	width: 100%;
	background: var(--color-background);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-solid,
.site-header.is-menu-open {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(248, 244, 237, 0.95);
	box-shadow: var(--shadow-soft);
}
.site-header__inner { border-bottom: 1px solid rgba(213, 204, 195, 0.5); }

.site-nav {
	display: flex;
	align-items: center;
	height: var(--header-height-mobile);
	position: relative;
}
@media (min-width: 1024px) { .site-nav { height: 7rem; } }

.site-nav__side { display: none; flex: 1; align-items: center; gap: 3rem; }
.site-nav__side--left { justify-content: flex-start; }
.site-nav__side--right { justify-content: flex-end; gap: 2rem; }
@media (min-width: 1024px) { .site-nav__side { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: inherit; }
.theme-nav-link {
	font-size: 15px;
	font-weight: 500;
	color: rgba(52, 29, 45, 0.85);
	transition: color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}
.theme-nav-link:hover { color: var(--color-primary); transform: translateY(-2px); }

.site-logo { display: none; align-items: center; justify-content: center; flex-shrink: 0; padding: 0 1.5rem; transition: transform 0.2s ease; max-height: var(--header-height-mobile); overflow: hidden; }
.site-logo:hover { transform: scale(1.03); }
@media (min-width: 1024px) { .site-logo { display: flex; max-height: 7rem; } }
.site-logo-img {
	height: var(--logo-height, 60px);
	max-height: calc(var(--header-height-mobile) - 1.25rem);
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
	display: block;
}
@media (min-width: 1024px) {
	.site-logo-img { max-height: calc(7rem - 1.5rem); }
}
.site-logo-text { font-family: var(--font-display); font-style: italic; font-size: 1.75rem; color: var(--color-foreground); }
.site-logo-text--secondary { margin-left: 0.75rem; font-size: 1.25rem; }
.site-logo { gap: 0; }

.theme-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	border: 1px solid rgba(52, 29, 45, 0.3);
	transition: all 0.2s ease;
	color: var(--color-foreground);
}
.theme-cart-btn:hover { border-color: var(--color-primary); color: var(--color-primary); transform: scale(1.05); }
.theme-cart-icon { width: 1rem; height: 1rem; }
.theme-cart-count {
	position: absolute;
	top: -6px; right: -6px;
	font-size: 10px;
	font-weight: 600;
	border-radius: 999px;
	min-width: 18px; height: 18px;
	display: flex; align-items: center; justify-content: center;
	padding: 0 4px;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}
.theme-cart-count:empty { display: none; }

.site-nav__mobile-bar { display: flex; align-items: center; justify-content: space-between; width: 100%; }
@media (min-width: 1024px) { .site-nav__mobile-bar { display: none; } }
.site-logo--mobile { display: flex; align-items: center; padding: 0; max-height: var(--header-height-mobile); overflow: hidden; min-width: 0; }
.site-logo--mobile .site-logo-img {
	height: var(--logo-height, 3.5rem);
	max-height: calc(var(--header-height-mobile) - 1.25rem);
	max-width: min(12rem, 55vw);
}
.site-nav__mobile-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-mobile-menu-btn { padding: 0.5rem; margin-right: -0.5rem; color: var(--color-foreground); }
.theme-mobile-menu-btn svg { width: 1.25rem; height: 1.25rem; }
.theme-mobile-menu-btn .icon-close { display: none; }
.theme-mobile-menu-btn.is-open .icon-menu { display: none; }
.theme-mobile-menu-btn.is-open .icon-close { display: block; }

.theme-mobile-menu { display: none; border-top: 1px solid var(--color-border); padding: 1rem 0; }
.theme-mobile-menu.is-open { display: block; animation: theme-fade-up 0.35s var(--ease-smooth); }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }
.theme-mobile-nav-list { display: flex; flex-direction: column; }
.theme-mobile-nav-list .theme-nav-link {
	display: block;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(213, 204, 195, 0.6);
	font-size: 14px;
}

/* ---------- BUTTONS ---------- */
.theme-btn, .theme-btn-primary, .theme-btn-outline, .theme-btn-inverse,
.theme-btn-hero-primary, .theme-btn-hero-outline, .theme-btn-outline-pill, .theme-btn-facebook {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-weight: var(--btn-font-weight);
	padding: 0.9rem 1.75rem;
	transition: all 0.25s ease;
	border: 1px solid transparent;
	white-space: nowrap;
}
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-primary:hover { background: rgba(91,41,75,0.9); transform: translateY(-2px); }
.theme-btn-outline, .theme-btn-outline-pill { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.theme-btn-outline:hover, .theme-btn-outline-pill:hover { background: var(--color-primary); color: var(--color-primary-foreground); transform: translateY(-2px); }
.theme-btn-inverse { background: rgba(248,244,237,0.7); color: var(--color-foreground); border-color: rgba(52,29,45,0.15); }
.theme-btn-inverse:hover { background: var(--color-background); transform: translateY(-2px); }
.theme-btn-full { width: 100%; }
.theme-btn-facebook { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-facebook:hover { background: rgba(91,41,75,0.9); transform: translateY(-2px); }
.theme-icon-facebook, .theme-icon-chevron { width: 1rem; height: 1rem; }

.theme-btn-hero-primary { background: var(--color-accent); color: var(--color-accent-foreground); text-shadow: 0 1px 6px rgba(0,0,0,0.35); padding: 1rem 2.5rem; font-size: 11px; }
.theme-btn-hero-primary:hover { background: rgba(228,164,37,0.9); transform: translateY(-2px); }
.theme-btn-hero-outline { border: 1px solid rgba(249,246,240,0.8); color: var(--color-primary-foreground); background: transparent; padding: 1rem 2rem; font-size: 11px; text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.theme-btn-hero-outline:hover { background: rgba(249,246,240,0.1); border-color: var(--color-primary-foreground); }

/* CTA / hero buttons must remain sentence-free of forced uppercase issues per source design (source uses uppercase for these — kept intentionally). */

/* ---------- HERO ---------- */
.hero-section { margin-top: calc(-1 * var(--header-height-mobile)); }
body.theme-no-hero .hero-section { margin-top: 0; }
@media (min-width: 768px) { .hero-section { margin-top: -7rem; } }
.hero-section__media-wrap {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 620px;
	overflow: hidden;
	background: var(--color-primary);
	padding-top: var(--header-height-mobile);
}
@media (min-width: 768px) { .hero-section__media-wrap { padding-top: 7rem; } }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(1.35) contrast(1.1) saturate(1.1); }
.hero-section__overlay { position: absolute; inset: 0; background: rgba(91,41,75,0.35); }
.hero-section__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(91,41,75,0.35) 100%); }
.hero-section__content-wrap { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-section__content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 64rem; padding: 0 0.5rem; }
.hero-section__eyebrow { display: block; font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--color-hero-text-on-media); font-weight: 600; margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.35); opacity: 1; transform: none; }
.hero-section__title { font-family: var(--font-display); font-weight: 400; font-style: italic; color: var(--color-primary-foreground); line-height: 0.98; letter-spacing: -0.015em; font-size: 2.75rem; text-shadow: 0 4px 20px rgba(0,0,0,0.45); }
@media (min-width: 768px) { .hero-section__title { font-size: 5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 6.5rem; } }
.hero-section__subtitle { margin-top: 1.5rem; max-width: 36rem; color: var(--color-primary-foreground); font-size: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1.125rem; } }
.hero-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; } }

/* ---------- CATEGORY STRIP ---------- */
.category-strip-section { background: var(--color-background); padding: 4rem 0 5rem; }
@media (min-width: 768px) { .category-strip-section { padding: 5rem 0 5rem; } }
.category-strip__header { text-align: center; margin-bottom: 2.5rem; }
.category-strip__tiles-outer { width: 100%; }
@media (min-width: 768px) {
	.category-strip__tiles-outer {
		width: 100vw;
		position: relative;
		left: 50%;
		right: 50%;
		margin-left: -50vw;
		margin-right: -50vw;
	}
}
.category-strip__heading { font-size: 1.875rem; }
.section-heading { font-family: var(--font-display); font-weight: 400; }
@media (min-width: 768px) { .category-strip__heading { font-size: 2.25rem; } }
.category-strip__tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-items: center;
	row-gap: 2rem;
	column-gap: 1rem;
	padding: 1.5rem 1.5rem 1rem;
}
@media (min-width: 768px) {
	.category-strip__tiles { display: flex; flex-wrap: nowrap; overflow-x: auto; justify-content: center; gap: 2.5rem; padding: 1.5rem 0.5rem 1rem; scrollbar-width: none; }
	.category-strip__tiles::-webkit-scrollbar { display: none; }
}
.category-tile { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.category-tile__icon {
	width: 7rem; height: 7rem;
	border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	background: var(--color-secondary);
	overflow: hidden;
	transition: all 0.5s ease;
	box-shadow: 0 0 0 2px transparent;
	padding: 1.5rem;
	color: var(--color-primary);
}
.category-tile__icon svg { width: 100%; height: 100%; transition: transform 0.7s ease; }
@media (min-width: 640px) { .category-tile__icon { width: 8rem; height: 8rem; } }
@media (min-width: 768px) { .category-tile__icon { width: 10rem; height: 10rem; padding: 2rem; } }
.category-tile:hover .category-tile__icon { transform: scale(1.05); box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 50%, transparent), 0 8px 40px -8px rgba(52,29,45,0.18); }
.category-tile:hover .category-tile__icon svg { transform: scale(1.1); }
.category-tile__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(52,29,45,0.85); text-align: center; }
@media (min-width: 768px) { .category-tile__label { font-size: 14px; } }

/* ---------- PRODUCT GRID / CARDS (Sections 31.9, 31.3) ---------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { gap: 2.5rem; } }
.theme-product-grid--featured { grid-template-columns: repeat(1, minmax(0,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--related { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card-wrap.is-hidden-filter { display: none !important; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 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__image-wrapper { pointer-events: auto; }
.theme-product-card__info, .theme-product-card__info * { pointer-events: none; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-card);
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: 1.25rem;
}
.theme-product-card:hover .theme-product-card-img { transform: scale(1.04); }
.theme-product-card-img { transition: transform 0.7s var(--ease-smooth); }

.theme-badge {
	position: absolute;
	top: 1rem;
	z-index: 3;
	padding: 0.25rem 0.75rem;
	border-radius: 0.375rem;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
}
.theme-badge--soldout { right: 1rem; background: var(--color-foreground); color: var(--color-background); }

.theme-card-add-btn {
	position: absolute;
	left: 1rem; right: 1rem; bottom: 1rem;
	z-index: 3;
	pointer-events: auto;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: var(--color-teal);
	color: var(--color-background);
	border: 1px solid var(--color-teal);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.3s ease;
}
.theme-product-card:hover .theme-card-add-btn { opacity: 1; transform: translateY(0); }
.theme-card-add-btn:hover { background: var(--color-background); color: var(--color-teal); }

.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.375rem; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); margin: 0; }
.theme-product-card__title { font-size: 1rem; font-weight: 500; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s ease; margin: 0; }
@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; color: rgba(52,29,45,0.85); margin: 0; }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4rem; }

/* ---------- FEATURED / ABOUT / SHOP SHARED HEADERS ---------- */
.featured-section { background: var(--color-background); padding: 4rem 0 6rem; }
@media (min-width: 768px) { .featured-section { padding: 6rem 0; } }
.featured-section__header { text-align: center; margin-bottom: 3.5rem; }
.featured-section__heading { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .featured-section__heading { font-size: 3rem; } }
.featured-section__cta { text-align: center; margin-top: 3.5rem; }

.about-section { background: var(--color-background); padding: 5rem 0 7rem; }
@media (min-width: 768px) { .about-section { padding: 7rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: 2.5rem; }
@media (min-width: 768px) { .about-section__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.about-section__image-wrap { position: relative; overflow: hidden; border-radius: 1rem; min-height: 360px; }
@media (min-width: 768px) { .about-section__image-wrap { min-height: 520px; } }
.about-section__image { transition: transform 1.2s ease; }
.about-section__image-wrap:hover .about-section__image { transform: scale(1.05); }
.about-section__copy { display: flex; flex-direction: column; justify-content: center; }
.about-section__heading { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.2; color: var(--color-foreground); margin-bottom: 2rem; }
.about-section__emphasis { font-style: italic; }
@media (min-width: 768px) { .about-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 2.5rem; } }
.about-section__body { color: rgba(52,29,45,0.75); line-height: 1.7; font-size: 1rem; }
@media (min-width: 768px) { .about-section__body { font-size: 1.125rem; } }
.about-section__link { margin-top: 2.5rem; align-self: flex-start; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 500; }

/* ---------- SHOP SECTION ---------- */
.shop-section { background: var(--color-background); padding: 4rem 0 6rem; }
@media (min-width: 768px) { .shop-section { padding: 6rem 0; } }
.shop-section__header { text-align: center; margin-bottom: 3rem; }
.shop-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }

.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--color-muted-foreground); }
.shop-search-input {
	width: 100%;
	padding: 0.5rem 0.5rem 0.5rem 1.75rem;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
	color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.shop-search-input:focus { outline: none; border-color: var(--color-foreground); }

.shop-category-tabs { display: flex; overflow-x: auto; gap: 0.5rem; margin-bottom: 1rem; padding: 0 1rem; scrollbar-width: none; }
.shop-category-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .shop-category-tabs { flex-wrap: wrap; justify-content: center; padding: 0; overflow: visible; } }
.shop-cat-tab {
	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;
}
.shop-cat-tab:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.shop-cat-tab.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-filter__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;
}
.shop-price-filter__toggle:hover { color: var(--color-foreground); }
.shop-price-filter__toggle .theme-icon-chevron { transition: transform 0.3s ease; }
.shop-price-filter__toggle.is-open .theme-icon-chevron { transform: rotate(180deg); }
.shop-price-filter__panel { width: 100%; max-width: 24rem; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth); }
.shop-price-filter__panel.is-open { max-height: 200px; opacity: 1; padding: 0.5rem 0; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

/* Dual-handle price range slider (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; margin-top: 0.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.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; border: none; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-section__loadmore { text-align: center; margin-top: 3rem; }
.shop-section__loadmore.is-hidden { display: none; }
.shop-section__empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }

/* ---------- SHOWS BANNER ---------- */
.shows-banner-section { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; height: 66.6667vh; overflow: hidden; }
.shows-banner-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shows-banner-section__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.25)); }
.shows-banner-section__content-wrap { position: relative; z-index: 10; height: 100%; width: 100%; display: flex; align-items: flex-end; }
@media (min-width: 768px) { .shows-banner-section__content-wrap { align-items: center; } }
.shows-banner-section__content { max-width: 36rem; color: var(--color-hero-text-on-media); padding-bottom: 2.5rem; }
@media (min-width: 768px) { .shows-banner-section__content { padding-bottom: 0; } }
.shows-banner-section__eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 0.75rem; color: rgba(255,255,255,0.85); }
.shows-banner-section__heading { font-size: 1.875rem; line-height: 1.2; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .shows-banner-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shows-banner-section__heading { font-size: 3.75rem; } }
.shows-banner-section__body { font-size: 1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.85); }
@media (min-width: 768px) { .shows-banner-section__body { font-size: 1.125rem; } }

/* ---------- FAQ ---------- */
.faq-section { background: var(--color-background); padding: 5rem 0 7rem; }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-section__header { max-width: 42rem; margin: 0 auto 3.5rem; text-align: center; }
.faq-section__heading { font-size: 1.875rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section__heading { font-size: 3.75rem; } }
.faq-section__body { color: rgba(52,29,45,0.75); font-size: 1rem; }
@media (min-width: 768px) { .faq-section__body { font-size: 1.125rem; } }

.faq-tabs { display: none; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .faq-tabs { display: flex; } }
.faq-tab {
	border-radius: 999px;
	border: 1px solid var(--color-border);
	padding: 0.625rem 1.25rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-foreground);
	background: transparent;
	transition: all 0.2s ease;
}
.faq-tab:hover { transform: translateY(-2px); }
.faq-tab--rosa { border-color: var(--color-rosa); } .faq-tab--rosa.is-active { background: var(--color-rosa); border-color: var(--color-rosa); }
.faq-tab--lilac { border-color: var(--color-lilac); } .faq-tab--lilac.is-active { background: var(--color-lilac); border-color: var(--color-lilac); }
.faq-tab--marigold { border-color: var(--color-marigold); } .faq-tab--marigold.is-active { background: var(--color-marigold); border-color: var(--color-marigold); }
.faq-tab--teal { border-color: var(--color-teal); color: var(--color-teal); } .faq-tab--teal.is-active { background: var(--color-teal); color: var(--color-background); }
.faq-tab--nopal { border-color: var(--color-primary); color: var(--color-primary); } .faq-tab--nopal.is-active { background: var(--color-primary); color: var(--color-background); }

.faq-panels { max-width: 48rem; margin: 0 auto; }
.faq-panel { display: none; border-top: 1px solid rgba(52,29,45,0.15); }
.faq-panel.is-active { display: block; animation: theme-fade-up 0.35s var(--ease-smooth); }
.faq-panel__label { display: none; }
@media (max-width: 767px) {
	.faq-panel { display: block !important; border-top: none; margin-bottom: 2.5rem; text-align: center; }
	.faq-panel__label {
		display: inline-block;
		margin: 0 auto 1rem;
		padding: 0.625rem 1.25rem;
		border-radius: 999px;
		border: 1px solid currentColor;
		font-size: 12px;
		letter-spacing: 0.22em;
		text-transform: uppercase;
		font-weight: 600;
	}
	.faq-panel--rosa .faq-panel__label { background: var(--color-rosa); color: var(--color-background); border-color: var(--color-rosa); }
	.faq-panel--lilac .faq-panel__label { background: var(--color-lilac); color: var(--color-background); border-color: var(--color-lilac); }
	.faq-panel--marigold .faq-panel__label { background: var(--color-marigold); color: var(--color-foreground); border-color: var(--color-marigold); }
	.faq-panel--teal .faq-panel__label { background: var(--color-teal); color: var(--color-background); border-color: var(--color-teal); }
	.faq-panel--nopal .faq-panel__label { background: var(--color-primary); color: var(--color-background); border-color: var(--color-primary); }
}
.faq-item { border-bottom: 1px solid rgba(52,29,45,0.15); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
@media (min-width: 768px) { .faq-item__question { padding: 1.5rem 0; } }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); line-height: 1.35; }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon {
	flex-shrink: 0;
	width: 2.25rem; height: 2.25rem;
	border-radius: 999px;
	border: 1px solid currentColor;
	display: flex; align-items: center; justify-content: center;
	color: var(--color-primary);
	transition: all 0.2s ease;
}
.faq-item__icon svg { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.faq-panel--rosa .faq-item__icon { color: var(--color-rosa); border-color: var(--color-rosa); }
.faq-panel--lilac .faq-item__icon { color: var(--color-lilac); border-color: var(--color-lilac); }
.faq-panel--marigold .faq-item__icon { color: var(--color-foreground); border-color: var(--color-marigold); }
.faq-panel--teal .faq-item__icon { color: var(--color-teal); border-color: var(--color-teal); }
.faq-panel--nopal .faq-item__icon { color: var(--color-primary); border-color: var(--color-primary); }
.faq-panel--rosa .faq-item.is-open .faq-item__icon { background: var(--color-rosa); color: var(--color-background); }
.faq-panel--lilac .faq-item.is-open .faq-item__icon { background: var(--color-lilac); color: var(--color-background); }
.faq-panel--marigold .faq-item.is-open .faq-item__icon { background: var(--color-marigold); color: var(--color-foreground); }
.faq-panel--teal .faq-item.is-open .faq-item__icon { background: var(--color-teal); color: var(--color-background); }
.faq-panel--nopal .faq-item.is-open .faq-item__icon { background: var(--color-primary); color: var(--color-background); }
.faq-item.is-open .faq-item__icon svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-smooth); }
.faq-item.is-open .faq-item__answer { max-height: 400px; }
.faq-item__answer p { color: rgba(52,29,45,0.75); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 3rem; margin: 0; font-size: 1rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--color-card); padding: 4rem 0 6rem; }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }
.testimonials-section__heading { font-size: 1.875rem; text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .testimonials-section__heading { font-size: 3rem; margin-bottom: 3.5rem; } }
.testimonials-carousel { position: relative; max-width: 56rem; margin: 0 auto; width: 100%; }
.testimonials-carousel__viewport { overflow: hidden; width: 100%; }
.testimonials-carousel__track { display: flex; transition: transform 0.7s ease; will-change: transform; }
.testimonials-carousel__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0 1rem;
	text-align: center;
	margin: 0;
}
@media (min-width: 768px) { .testimonials-carousel__slide { padding: 0 2.5rem; } }
.testimonials-carousel__stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; color: var(--color-marigold); }
.testimonials-carousel__stars svg { width: 1rem; height: 1rem; }
.testimonials-carousel__slide blockquote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.375;
	color: var(--color-foreground);
	margin: 0 0 1.5rem;
	overflow-wrap: break-word;
	word-break: break-word;
}
@media (min-width: 768px) { .testimonials-carousel__slide blockquote { font-size: 1.875rem; } }
.testimonials-carousel__slide figcaption { font-size: 0.875rem; color: rgba(52,29,45,0.7); }
.testimonials-carousel__name { font-weight: 600; color: var(--color-foreground); }
.testimonials-carousel__sep { margin: 0 0.5rem; color: rgba(52,29,45,0.4); }
.testimonials-carousel__controls { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.testimonials-carousel__arrow {
	width: 2.5rem; height: 2.5rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s ease;
}
.testimonials-carousel__arrow:hover { border-color: var(--color-primary); color: var(--color-primary); transform: scale(1.05); }
.testimonials-carousel__arrow svg { width: 1rem; height: 1rem; }
.testimonials-carousel__dots { display: flex; gap: 0.5rem; }
.testimonials-carousel__dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: rgba(52,29,45,0.25); transition: all 0.2s ease; }
.testimonials-carousel__dot:hover { background: rgba(52,29,45,0.5); }
.testimonials-carousel__dot.is-active { background: var(--color-primary); transform: scale(1.25); }

/* ---------- FINAL CTA ---------- */
.final-cta-section { position: relative; overflow: hidden; }
.final-cta-section__media-wrap { position: relative; min-height: 85vh; width: 100%; display: flex; align-items: center; justify-content: center; padding: 6rem 1rem; }
@media (min-width: 768px) { .final-cta-section__media-wrap { padding: 8rem 1rem; } }
.final-cta-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(1.35) contrast(1.1) saturate(1.1); }
.final-cta-section__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.final-cta-section__card {
	position: relative; z-index: 10;
	width: 100%; max-width: 56rem;
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
	backdrop-filter: blur(6px);
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 96%, transparent) 0%, color-mix(in srgb, var(--color-secondary) 90%, transparent) 55%, color-mix(in srgb, var(--color-accent) 50%, transparent) 100%);
	padding: 3.5rem 2rem;
	text-align: center;
}
@media (min-width: 768px) { .final-cta-section__card { padding: 5rem 4rem; } }
.final-cta-section__kicker { font-family: var(--font-display); font-style: italic; color: rgba(91,41,75,0.8); font-size: 1.125rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .final-cta-section__kicker { font-size: 1.25rem; } }
.final-cta-section__title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; color: var(--color-foreground); }
@media (min-width: 768px) { .final-cta-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .final-cta-section__title { font-size: 3.75rem; } }
.final-cta-section__body { font-size: 1rem; color: rgba(52,29,45,0.75); line-height: 1.7; max-width: 36rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .final-cta-section__body { font-size: 1.125rem; } }
.final-cta-section__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .final-cta-section__actions { flex-direction: row; } }
.final-cta-section__actions .theme-btn { text-transform: none; letter-spacing: normal; font-size: 0.875rem; box-shadow: var(--shadow-soft); }
.final-cta-section__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.375rem 1rem; font-size: 0.75rem; color: rgba(52,29,45,0.6); }
@media (min-width: 768px) { .final-cta-section__meta { font-size: 0.875rem; } }
.final-cta-section__location { display: inline-flex; align-items: center; gap: 0.375rem; }
.final-cta-section__location svg { width: 0.875rem; height: 0.875rem; }
.final-cta-section__dot { color: rgba(52,29,45,0.3); }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-card); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-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) { .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__brand { font-family: var(--font-display); font-size: 2rem; color: var(--color-foreground); flex-shrink: 0; }
@media (min-width: 640px) { .site-footer__brand { font-size: 2.25rem; } }
.site-footer__tagline-block { max-width: 36rem; }
@media (min-width: 640px) { .site-footer__tagline-block { text-align: right; } }
.site-footer__tagline { font-size: 0.875rem; color: rgba(52,29,45,0.7); line-height: 1.6; }
.site-footer__email { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(52,29,45,0.7); }
.theme-mailto-link:hover { color: var(--color-foreground); }

.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__col--connect { grid-column: span 2; }
@media (min-width: 768px) { .site-footer__col--connect { grid-column: span 1; } }
.site-footer__col h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a, .site-footer__col span { font-size: 0.875rem; color: rgba(52,29,45,0.7); transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__col a:hover { color: var(--color-foreground); transform: translateX(2px); }
.site-footer__col svg { width: 1rem; height: 1rem; }

.site-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; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__quote { font-size: 12px; color: var(--color-primary); font-family: var(--font-display); font-style: italic; letter-spacing: 0.02em; margin: 0; }
.site-footer__copyright { font-size: 12px; color: var(--color-muted-foreground); letter-spacing: 0.02em; margin: 0; }
.site-footer__copyright a { text-decoration: underline; text-underline-offset: 2px; }
.site-footer__copyright a:hover { color: var(--color-foreground); }

/* ---------- CART DRAWER / OVERLAY (Section 12) ---------- */
#theme-cart-overlay {
	position: fixed; inset: 0;
	background: rgba(52,29,45,0.2);
	z-index: 90;
	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: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-background);
	z-index: 100;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s var(--ease-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__header h2 { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__close svg { width: 1.25rem; height: 1.25rem; }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-empty-icon { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-cart-drawer__items { flex: 1; overflow-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; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__image img { width: 100%; height: 100% !important; object-fit: cover !important; display: block; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { display: block; font-size: 0.875rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin: 0.125rem 0 0; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin: 0.25rem 0 0; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background 0.2s ease; width: 1.5rem; height: 1.5rem; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }
.theme-qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s 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-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); margin: 0; }

.ajax_add_to_cart.theme-btn-loading, .single_add_to_cart_button.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after, .ajax_add_to_cart.loading::after { display: none !important; }
.woocommerce-page a.added_to_cart.wc-forward, .single-product a.added_to_cart.wc-forward, body a.added_to_cart.wc-forward { display: none !important; }

/* ---------- CONTACT MODAL ---------- */
.theme-modal-overlay { position: fixed; inset: 0; background: rgba(52,29,45,0.4); z-index: 190; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease; }
body.modal-open .theme-modal-overlay { opacity: 1; visibility: visible; }
.theme-modal {
	position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(0.96);
	z-index: 200;
	width: 92%; max-width: 34rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background);
	border-radius: 1rem;
	box-shadow: var(--shadow-elevated);
	opacity: 0; visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
body.modal-open .theme-modal { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.theme-modal__panel { padding: 2rem; position: relative; }
.theme-modal__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.25rem; }
.theme-modal__close:hover { opacity: 0.6; }
.theme-modal__close svg { width: 1.25rem; height: 1.25rem; }
.theme-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal__subtitle { color: var(--color-muted-foreground); margin: 0 0 1.25rem; }
.theme-modal__contact-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-modal__success { display: none; text-align: center; padding: 2rem 0; }
.theme-modal.is-success .theme-modal__success { display: block; }
.theme-modal.is-success .theme-contact-form { display: none; }
.theme-modal__success-icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); margin-bottom: 1rem; }
.theme-modal__success-icon svg { width: 1.75rem; height: 1.75rem; }

.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-form-row--2col { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row--2col { grid-template-columns: 1fr 1fr; } }
.theme-form-field { display: flex; flex-direction: column; }
.theme-form-field label { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-form-field input, .theme-form-field select, .theme-form-field textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: box-shadow 0.3s ease;
}
.theme-form-field input:focus, .theme-form-field select:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px rgba(91,41,75,0.5); }
.theme-form-field textarea { resize: none; }
.theme-form-error { color: var(--color-error); font-size: 0.875rem; margin: 0; }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-actions .theme-btn { text-transform: none; letter-spacing: normal; font-size: 0.875rem; }

/* ---------- SINGLE PRODUCT (Section 11) ---------- */
.single-product-page { padding-top: 1.5rem; }
@media (min-width: 1024px) { .single-product-page { padding-top: 2rem; } }
.theme-breadcrumb { padding: 0.75rem 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; } }
.single-product .theme-product-gallery, .single-product .theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-gallery { display: block; min-width: 0; }
.theme-product-gallery--mobile { display: block; }
.theme-product-gallery--desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery--mobile { display: none; }
	.theme-product-gallery--desktop { display: flex; flex-direction: column; gap: 1rem; }
}
.theme-product-thumbs-row { display: flex; gap: 0.75rem; overflow-x: auto; margin-top: 1rem; padding-bottom: 0.25rem; scrollbar-width: none; }
.theme-product-thumbs-row::-webkit-scrollbar { display: none; }
.theme-product-thumbs-row .theme-thumb-btn {
	position: relative;
	width: 4.5rem;
	height: 4.5rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
	border: none;
	border-radius: 0;
	padding: 0;
	cursor: pointer;
}
.theme-product-thumbs-row .theme-thumb-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumbs-row .theme-thumb-btn.is-active .theme-thumb-img,
.theme-product-thumbs-row .theme-thumb-btn:hover .theme-thumb-img { opacity: 1; }
.theme-product-thumbs-row .theme-thumb-btn.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
}
.theme-product-stack-image { background: var(--color-secondary); overflow: hidden; }
.theme-product-stack-image img { width: 100%; height: auto; display: block; }

.theme-product-main-image-wrap { position: relative; flex: 1; aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; border-radius: 0; }
.theme-product-main-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.theme-product-info { padding-left: 0; }
@media (min-width: 1024px) { .theme-product-info { padding-left: 1rem; position: sticky; top: 7rem; align-self: start; } }
.theme-product-category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); margin: 0 0 0.75rem; }
.theme-product-category a { color: inherit; }
.product-title { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.875rem; line-height: 1.1; 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 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--color-foreground); }
.theme-stock-status { font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.theme-stock-status--out { color: var(--color-error); }
.theme-product-lead { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; }
.theme-product-text ul,
.theme-product-accordion__content ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin: 0 0 1rem;
}
.theme-product-text ol,
.theme-product-accordion__content ol {
	list-style: decimal;
	padding-left: 1.25rem;
	margin: 0 0 1rem;
}
.theme-product-text li,
.theme-product-accordion__content li { margin-bottom: 0.35rem; }
.theme-product-text li:last-child,
.theme-product-accordion__content li:last-child { margin-bottom: 0; }
.theme-product-text p,
.theme-product-accordion__content p { margin: 0 0 1rem; }
.theme-product-text p:last-child,
.theme-product-accordion__content p:last-child { margin-bottom: 0; }
.theme-product-accordions { border-top: 1px solid var(--color-border); margin-top: 2rem; }
.theme-product-accordion { border-bottom: 1px solid var(--color-border); }
.theme-product-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 0;
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-weight: 600;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}
.theme-product-accordion__icon { width: 1rem; height: 1rem; transition: transform 0.2s ease; flex-shrink: 0; }
.theme-product-accordion.is-open .theme-product-accordion__icon { transform: rotate(180deg); }
.theme-product-accordion__content { color: var(--color-muted-foreground); line-height: 1.7; padding-bottom: 1.25rem; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 0; overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.6rem 0.9rem; transition: background 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-size: 0.875rem; -moz-appearance: textfield; }
.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;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 0;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

/* Single product ATC uses foreground color to match Lovable */
.single-product .single_add_to_cart_button.button,
.single-product a.single_add_to_cart_button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
}
.single-product .single_add_to_cart_button.button:hover,
.single-product a.single_add_to_cart_button:hover {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	opacity: 0.85 !important;
}

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products__header { text-align: center; margin-bottom: 3rem; }
.related-products__header h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products__header h2 { font-size: 2.25rem; } }

/* Variations — WC requires selects inside table.variations (add-to-cart-variation.js) */
.single-product table.variations.theme-variations-table {
	width: 100%;
	margin-bottom: 1.5rem;
	border: none;
}
.single-product table.variations.theme-variations-table tbody,
.single-product table.variations.theme-variations-table tr,
.single-product table.variations.theme-variations-table th,
.single-product table.variations.theme-variations-table td {
	display: block;
	width: 100%;
	border: none;
	padding: 0;
}
.single-product table.variations.theme-variations-table tr { margin-bottom: 1.25rem; }
.single-product table.variations.theme-variations-table th.label { padding-bottom: 0.75rem; }
.single-product table.variations.theme-variations-table td.value { position: relative; }
.single-product table.variations.theme-variations-table select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.theme-variation-label {
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
	color: var(--color-foreground);
	text-align: left;
}
.theme-variation-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.theme-attr-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-background);
	color: var(--color-foreground);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.theme-attr-pill:hover:not(:disabled):not(.is-disabled) {
	border-color: var(--color-foreground);
}
.theme-attr-pill.is-active {
	background: var(--color-foreground);
	border-color: var(--color-foreground);
	color: var(--color-background);
}
.theme-attr-pill.is-disabled,
.theme-attr-pill:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	text-decoration: line-through;
}
.single-product .variations_form .woocommerce-variation-price,
.single-product .variations_form .woocommerce-variation-availability {
	margin-bottom: 1rem;
}
.single-product .variations_form .single_variation_wrap .woocommerce-variation {
	margin-bottom: 1rem;
}
.single-product .single_add_to_cart_button.button:disabled,
.single-product .single_add_to_cart_button.button.disabled { cursor: not-allowed !important; opacity: 0.4 !important; pointer-events: none !important; }

/* ---------- ADD TO CART BUTTON OVERRIDE (Section 11.4.1) ---------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
/* Card compact button override — placed after global rules (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-card-add-btn {
	min-height: unset !important;
	padding: 0.75rem 1rem !important;
	border-radius: 999px !important;
	background-color: var(--color-teal) !important;
	border: 1px solid var(--color-teal) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-card-add-btn:hover {
	background-color: var(--color-background) !important;
	color: var(--color-teal) !important;
}

/* ---------- WOOCOMMERCE SHOP ARCHIVE ---------- */
.shop-archive-page { padding: 3rem 0 6rem; }
.shop-archive-header { text-align: center; margin-bottom: 3rem; }
.theme-shop-pagination { text-align: center; margin-top: 3rem; }
.theme-shop-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; margin: 0 0.25rem; border-radius: 999px; border: 1px solid var(--color-border); }
.theme-shop-pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-shop-empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }

/* ---------- WOOCOMMERCE NOTICES (Section 14.1) ---------- */
.single-product .woocommerce-message, .single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error { background: var(--color-error-bg); color: var(--color-error); border-radius: 0.5rem; padding: 1rem 1.5rem; list-style: none; margin: 0 0 1.5rem; font-size: 0.9rem; }
.woocommerce-message, .woocommerce-info { background: var(--color-secondary); color: var(--color-foreground); border-radius: 0.5rem; padding: 1rem 1.5rem; margin: 0 0 1.5rem; font-size: 0.9rem; list-style: none; }

/* ---------- 404 ---------- */
.theme-404-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.theme-404-page__inner { text-align: center; }
.theme-404-page__code { font-size: 3rem; margin-bottom: 1rem; }
.theme-404-page__message { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404-page__link { color: var(--color-primary); text-decoration: underline; }

/* ---------- GENERIC PAGE / CHECKOUT SHELL ---------- */
.theme-generic-page { padding: 3rem 0 5rem; }
.page-title { font-size: 2rem; margin-bottom: 2rem; }

/* ---------- CHECKOUT (Section 13) ---------- */
body.woocommerce-checkout .site-main,
.theme-checkout-page { padding-top: var(--header-height, 80px); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content,
.theme-checkout-content { width: 100%; }
.theme-checkout-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin-bottom: 1rem;
	transition: color 0.2s ease;
}
.theme-checkout-back:hover { color: var(--color-foreground); }
.theme-checkout-back svg { width: 1rem; height: 1rem; }
body.woocommerce-checkout .entry-content > .wc-block-checkout,
body.woocommerce-checkout .theme-checkout-content > .wc-block-checkout,
body.woocommerce-checkout .entry-content > .wp-block-woocommerce-checkout,
body.woocommerce-checkout .theme-checkout-content > .wp-block-woocommerce-checkout {
	width: 100%;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		gap: 3rem !important;
		align-items: start !important;
		width: 100% !important;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large > .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large > .wc-block-checkout__main {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		grid-column: auto !important;
	}
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	order: -1 !important;
	background: transparent !important;
	border-radius: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-main,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-sidebar {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}
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,
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.625rem !important;
	background: var(--color-background) !important;
	color: var(--color-foreground) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible,
body.woocommerce-checkout .wc-block-components-select select:focus-visible,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus-visible,
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
	outline: none !important;
	box-shadow: 0 0 0 2px rgba(91,41,75,0.5) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.5rem; }

/* ---------- OTHER WOOCOMMERCE PAGES WIDTH PARITY (Section 13.7) ---------- */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: 3rem; padding-bottom: 4rem; }
body.woocommerce-cart .page-title, body.woocommerce-account .page-title { max-width: 1400px; margin-left: auto; margin-right: auto; padding: 0 1.5rem; }

/* ---------- THANK YOU PAGE (Section 22.8) ---------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 3rem; padding-bottom: 5rem; }
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-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 0 0 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { background: var(--color-card); border-radius: 0.5rem; padding: 1rem 1.5rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th, body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; font-style: normal; background: var(--color-card); padding: 1.5rem; border-radius: 0.5rem; }

/* ---------- UTILITIES ---------- */
.no-js .reveal-item { opacity: 1; transform: none; }
