/* =========================================================================
   Vessel & Vyne — theme stylesheet
   ========================================================================= */

:root {
	--background: #f8f6f2;
	--foreground: #222f29;
	--card: #f0ece5;
	--primary: #325242;
	--primary-foreground: #faf8f5;
	--secondary: #ece8df;
	--muted: #d8d3cb;
	--muted-foreground: #596961;
	--accent: #b8977a;
	--border: #d8d4ca;
	--marigold: #a27849;
	--teal: #456857;
	--lilac: #a07c6a;
	--nopal: #2f4c3d;
	--butter: #f1ede4;

	--color-primary: var(--primary);
	--color-button-text: var(--primary-foreground);
	--color-surface: var(--card);

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;

	--shadow-elevated: 0 8px 40px -8px rgba(38, 51, 44, 0.16);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--header-height: 96px;
	--logo-height: 72px;

	--btn-radius: 999px;
	--btn-height: 48px;
	--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.65rem;

	--checkout-gap: 2.5rem;

	--page-gutter: 1.25rem;
}
@media (min-width: 480px) {
	:root { --page-gutter: 1.5rem; }
}
@media (min-width: 1024px) {
	:root { --page-gutter: 2rem; }
}

/* -------------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__image-wrapper img):not(.theme-cart-drawer__item-image img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.hero-bg-img,
.theme-product-card__image-wrapper img,
.theme-product-main-image img,
.theme-cart-drawer__item-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; }

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-inline: var(--page-gutter);
}

.is-italic { font-style: italic; font-weight: 400; font-family: var(--font-display); }

.scroll-mt-24 { scroll-margin-top: calc(var(--header-height) + 1.5rem); }
body.admin-bar .scroll-mt-24 { scroll-margin-top: calc(var(--header-height) + 1.5rem); }

.theme-kicker {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--marigold);
	font-weight: 600;
	margin-bottom: 0.75rem;
	text-align: center;
}

.theme-section-header { text-align: center; margin-bottom: 3rem; }
.theme-section-subheading {
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: color-mix(in srgb, var(--foreground) 65%, transparent);
	line-height: 1.7;
	max-width: 42rem;
	margin-inline: auto;
}
@media (min-width: 768px) { .theme-section-subheading { font-size: 1rem; } }

.theme-section { background: var(--background); }
.theme-section.faq-section, .theme-section.team-section { background: var(--background); }
.theme-category-strip, .offerings-section, .faq-section, .testimonials-section { background: var(--butter); }
.theme-featured-products { background: #f1ede4; }
.theme-featured-products > .container-wide {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
@media (min-width: 768px) {
	.theme-featured-products > .container-wide {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

/* Icon sizing */
.icon-xs { width: 0.875rem; height: 0.875rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	padding: var(--btn-padding);
	min-height: var(--btn-height);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-weight: var(--btn-font-weight);
	font-family: var(--font-body);
	border: 1px solid transparent;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
	cursor: pointer;
	white-space: nowrap;
}
.theme-btn-hero-primary, .theme-btn-hero-outline, .theme-btn-cta-primary, .theme-btn-cta-outline { text-transform: uppercase; }
.theme-btn-hero-primary {
	background: color-mix(in srgb, var(--background) 95%, transparent);
	color: var(--foreground);
}
.theme-btn-hero-primary:hover { background: var(--background); }
.theme-btn-hero-outline {
	border-color: color-mix(in srgb, var(--background) 80%, transparent);
	color: var(--background);
	background: transparent;
}
.theme-btn-hero-outline:hover { background: color-mix(in srgb, var(--background) 15%, transparent); border-color: var(--background); }

.theme-btn-outline-nopal { border-color: var(--nopal); color: var(--nopal); background: transparent; padding: 0 2rem; min-height: 44px; }
.theme-btn-outline-nopal:hover { background: var(--nopal); color: var(--background); }
.theme-btn-outline-teal { border-color: var(--teal); color: var(--teal); background: transparent; padding: 0 2rem; min-height: 44px; }
.theme-btn-outline-teal:hover { background: var(--teal); color: var(--background); }

.theme-btn-primary, a.theme-btn-primary, button.theme-btn-primary {
	background: var(--foreground);
	color: var(--background);
	padding: 0 2rem;
	font-weight: 500;
	letter-spacing: 0.25em;
}
.theme-btn-primary:hover { background: color-mix(in srgb, var(--foreground) 90%, transparent); }

.theme-btn-outline { border-color: var(--foreground); color: var(--foreground); background: transparent; }
.theme-btn-outline:hover { background: var(--foreground); color: var(--background); }

.theme-btn-cta-primary { background: var(--background); color: var(--foreground); border-color: var(--foreground); }
.theme-btn-cta-primary:hover { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.theme-btn-cta-outline { color: var(--background); border-color: color-mix(in srgb, var(--background) 70%, transparent); background: transparent; }
.theme-btn-cta-outline:hover { border-color: var(--background); background: color-mix(in srgb, var(--background) 10%, transparent); }

/* -------------------------------------------------------------------------
   WordPress admin bar — flush layout, no white gap
   ------------------------------------------------------------------------- */
html.admin-bar {
	margin-top: 0 !important;
}
body.admin-bar {
	margin-top: 0 !important;
}
:root {
	--wp-admin-bar-height: 0px;
	--header-height: 80px;
}
@media (min-width: 768px) {
	:root { --header-height: 96px; }
}
body.admin-bar {
	--wp-admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--wp-admin-bar-height: 46px;
	}
}

/* -------------------------------------------------------------------------
   Announcement bar
   ------------------------------------------------------------------------- */
.theme-announcement-bar {
	position: relative;
	margin-top: 0;
	padding-top: var(--wp-admin-bar-height);
	background: var(--nopal);
	color: var(--background);
}
.theme-announcement-bar__inner { position: relative; padding-block: 0.5rem; text-align: center; }
.theme-announcement-bar__text { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0; }
.theme-announcement-bar__dismiss {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.25rem;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}
.theme-announcement-bar__dismiss:hover { opacity: 1; }
.theme-announcement-bar.is-hidden { display: none; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
	position: relative;
	left: 0;
	right: 0;
	z-index: 50;
	width: 100%;
	background: var(--background);
	border-top: 2px solid color-mix(in srgb, var(--lilac) 40%, transparent);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.site-header.is-pinned {
	position: fixed;
	top: var(--wp-admin-bar-height);
	left: 0;
	right: 0;
	z-index: 50;
}
.site-header-spacer {
	height: 0;
	pointer-events: none;
}
.site-header.is-solid,
.site-header.is-scrolled,
body.mobile-menu-open .site-header {
	background: color-mix(in srgb, var(--background) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom-color: color-mix(in srgb, var(--border) 60%, transparent);
}
.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
@media (min-width: 768px) { .site-nav { height: 96px; } }
@media (max-width: 1023px) {
	.site-nav {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		column-gap: 0.75rem;
	}
}

.site-nav__side { display: flex; align-items: center; flex: 1; gap: 2.5rem; }
.site-nav__side--left { display: none; }
@media (min-width: 1024px) { .site-nav__side--left { display: flex; } }
.site-nav__side--right { justify-content: flex-end; gap: 1.5rem; }
@media (max-width: 1023px) {
	.site-nav__side--right {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		flex: initial;
		z-index: 2;
	}
}

.theme-nav-list { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-nav-list { display: flex; } }
.theme-nav-link {
	font-size: 13px;
	color: color-mix(in srgb, var(--foreground) 80%, transparent);
	transition: color 0.2s ease;
}
.theme-nav-link:hover { color: var(--foreground); }

.theme-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	color: var(--foreground);
	transition: opacity 0.2s ease;
}
@media (max-width: 1023px) {
	.theme-mobile-toggle {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
		z-index: 2;
	}
}
.theme-mobile-toggle:hover { opacity: 0.6; }
.theme-mobile-toggle svg { display: block; width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.theme-mobile-toggle .theme-mobile-toggle__icon-close { display: none; }
.theme-mobile-toggle.is-open .theme-mobile-toggle__icon-open { display: none; }
.theme-mobile-toggle.is-open .theme-mobile-toggle__icon-close { display: block; }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }

.site-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	z-index: 1;
}
@media (max-width: 1023px) {
	.site-logo {
		grid-column: 1 / -1;
		grid-row: 1;
		justify-self: center;
		position: relative;
		left: auto;
		transform: none;
		pointer-events: none;
	}
	.site-logo img,
	.site-logo .site-logo-text {
		pointer-events: auto;
	}
}
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; object-fit: contain; border-radius: 0.25rem; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; line-height: var(--logo-height); }

.theme-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--foreground) 30%, transparent);
	font-size: 13px;
	font-family: var(--font-body);
	line-height: 1;
	color: var(--foreground);
	transition: border-color 0.2s ease;
}
.theme-cart-btn:hover { border-color: var(--foreground); }
.theme-cart-count { display: inline-block; min-width: 1ch; text-align: center; }

.theme-mobile-menu { display: none; border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent); padding: 1rem 0; }
.theme-mobile-menu.is-open { display: block; animation: vvFadeIn 0.4s var(--transition-smooth) forwards; }
.theme-mobile-menu__list { display: flex; flex-direction: column; gap: 1rem; }
.theme-mobile-menu__link { display: block; padding: 0.5rem 0; font-size: 0.9rem; text-align: left; transition: color 0.2s ease; }
.theme-mobile-menu__link:hover { color: var(--muted-foreground); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.theme-hero { position: relative; background: var(--background); }
.theme-hero__media { position: relative; width: 100%; height: 92vh; min-height: 620px; overflow: hidden; }
.theme-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-hero__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.45); pointer-events: none; }
.theme-hero__scrim-bottom { position: absolute; inset-inline: 0; bottom: 0; height: 33%; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); pointer-events: none; }
.theme-hero__inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.theme-hero__content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 64rem; padding: 0; margin: 0 auto; }
.theme-hero__heading {
	color: var(--background);
	font-style: italic;
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -0.02em;
	font-size: clamp(2.75rem, 8vw, 6.5rem);
	margin: 0;
}
.theme-hero__actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .theme-hero__actions { flex-direction: row; } }

/* -------------------------------------------------------------------------
   Category strip
   ------------------------------------------------------------------------- */
.theme-category-strip { padding: 4rem 0 5rem; }
@media (min-width: 768px) { .theme-category-strip { padding: 5rem 0 5rem; } }
.theme-category-strip__heading { text-align: center; font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .theme-category-strip__heading { font-size: 2.25rem; } }
.theme-category-strip__tiles {
	display: flex;
	overflow-x: auto;
	gap: 1.5rem;
	padding: 1.5rem 0 1rem;
	scrollbar-width: none;
	scroll-padding-inline: var(--page-gutter);
}
.theme-category-strip__tiles::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
	.theme-category-strip__tiles {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
		overflow-x: visible;
	}
	.theme-category-tile { flex-shrink: 1; }
	.theme-category-tile__icon-ring { width: 5rem; height: 5rem; }
	.theme-category-tile__label { font-size: 10px; letter-spacing: 0.15em; margin-top: 1rem; }
}
@media (min-width: 768px) { .theme-category-strip__tiles { justify-content: center; gap: 2.5rem; flex-wrap: wrap; overflow: visible; } }
.theme-category-tile { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.theme-category-tile__icon-ring {
	position: relative;
	width: 6rem; height: 6rem;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	transition: transform 0.5s var(--transition-smooth);
}
@media (min-width: 640px) { .theme-category-tile__icon-ring { width: 7rem; height: 7rem; } }
@media (min-width: 768px) { .theme-category-tile__icon-ring { width: 10rem; height: 10rem; } }
.theme-category-tile:hover .theme-category-tile__icon-ring { transform: scale(1.05); }
.theme-category-tile__icon-bg {
	width: 100%; height: 100%;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.theme-category-tile__icon-bg--all { background: color-mix(in srgb, var(--accent) 15%, transparent); }
.theme-category-tile__icon-bg--candles { background: color-mix(in srgb, var(--primary) 15%, transparent); }
.theme-category-tile__icon-bg--room-linen-sprays { background: color-mix(in srgb, var(--lilac) 15%, transparent); }
.theme-category-tile__icon-bg--yoni-oils { background: color-mix(in srgb, var(--teal) 15%, transparent); }
.theme-category-tile__label {
	margin-top: 1.25rem;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--foreground) 80%, transparent);
	text-align: center;
	transition: color 0.2s ease;
}
@media (min-width: 768px) { .theme-category-tile__label { font-size: 0.875rem; margin-top: 1.5rem; } }
.theme-category-tile:hover .theme-category-tile__label { color: var(--foreground); }
.theme-category-tile.is-active .theme-category-tile__label { color: var(--foreground); font-weight: 600; }

/* -------------------------------------------------------------------------
   Section headings (per-section scales — Section 2.2.5)
   ------------------------------------------------------------------------- */
.theme-featured-products__heading { text-align: center; font-size: 1.875rem; font-weight: 400; line-height: 1.2; }
@media (min-width: 768px) { .theme-featured-products__heading { font-size: 3rem; } }

.about-section__heading { font-size: 2.5rem; font-weight: 300; line-height: 0.95; max-width: 64rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3.75rem; } }

.offerings-section__heading { font-size: 2.25rem; font-weight: 300; line-height: 1.05; }
@media (min-width: 768px) { .offerings-section__heading { font-size: 3.75rem; } }

.shop-heading { text-align: center; font-size: 1.875rem; font-weight: 400; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }

.faq-section__heading, .team-section__heading, .testimonials-section__heading { font-size: 2.25rem; font-weight: 300; line-height: 1.05; }
@media (min-width: 768px) { .faq-section__heading, .team-section__heading, .testimonials-section__heading { font-size: 3.75rem; } }

.related-products-section__heading { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__pre { font-family: var(--font-display); font-style: italic; color: var(--muted-foreground); margin-bottom: 0.5rem; }

.cta-band__title { font-size: 2.25rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; color: var(--background); }
@media (min-width: 768px) { .cta-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 3.75rem; } }

/* -------------------------------------------------------------------------
   Product grid + card
   ------------------------------------------------------------------------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { gap: 2.5rem; } }
.theme-product-grid--featured { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 2rem; }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; } }

.theme-product-card-wrap { display: flex; }
.theme-product-card { display: flex; flex-direction: column; width: 100%; height: 100%; }
.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--card);
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: 1.25rem;
}
.theme-product-card > .theme-product-card__image-wrapper > .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__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-product-card__badge--soldout { right: 1rem; background: var(--foreground); color: var(--background); }
.theme-product-card__add-btn {
	position: absolute;
	left: 1rem; right: 1rem; bottom: 1rem;
	z-index: 3;
	pointer-events: auto;
	padding: 0.75rem 0;
	border-radius: 999px;
	background: var(--teal);
	color: var(--background);
	border: 1px solid var(--teal);
	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, background-color 0.3s ease, color 0.3s ease;
}
.theme-product-card:hover .theme-product-card__add-btn { opacity: 1; transform: translateY(0); }
.theme-product-card__add-btn:hover { background: var(--background); color: var(--teal); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.04); }
.theme-product-card__image-wrapper img { transition: transform 0.7s cubic-bezier(0.25,0.4,0.25,1); }

.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); margin: 0; }
.theme-product-card__title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
	color: var(--foreground);
	transition: color 0.3s ease;
	min-width: 0;
	overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--primary); }
.theme-product-card__price { font-size: 1rem; color: color-mix(in srgb, var(--foreground) 85%, transparent); margin: 0; }
.theme-product-card__price del { opacity: 0.6; margin-right: 0.4rem; }

.theme-section-footer-cta { text-align: center; margin-top: 3.5rem; }
@media (min-width: 768px) { .theme-section-footer-cta { margin-top: 3.5rem; } }

/* -------------------------------------------------------------------------
   About / Story section
   ------------------------------------------------------------------------- */
.about-section { padding-bottom: 6rem; }
@media (min-width: 768px) { .about-section { padding-bottom: 8rem; } }
.theme-story-banner {
	position: relative;
	width: 100%;
	height: 42vh;
	min-height: 280px;
	overflow: hidden;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .theme-story-banner { height: 55vh; } }
.theme-story-banner__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-section__inner { margin-top: 4rem; }
@media (min-width: 768px) { .about-section__inner { margin-top: 6rem; } }
@media (min-width: 1024px) { .about-section__inner { margin-top: 8rem; } }
.about-section__header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .about-section__header { margin-bottom: 5rem; } }

.about-section__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (max-width: 767px) {
	.about-section__grid { gap: 2rem; }
	.about-section__col--left,
	.about-section__col--right { grid-column: 1 / -1; }
	.about-section__paragraph { font-size: 1rem; margin-bottom: 1.5rem; }
	.about-section__col-content { gap: 1.5rem; }
}
@media (min-width: 768px) { .about-section__grid { grid-template-columns: repeat(12, 1fr); gap: 0; } }
.about-section__col--right { display: flex; flex-direction: column; }
@media (min-width: 768px) {
	.about-section__col--left { grid-column: 2 / span 4; }
	.about-section__col--right { grid-column: 8 / span 4; }
}
.about-section__col-content { display: flex; flex-direction: column; gap: 2.5rem; }
.about-section__col-divider { display: none; }
@media (min-width: 768px) {
	.about-section__col-divider { display: flex; grid-column: 6 / span 2; justify-content: center; }
	.about-section__col-divider::after { content: ''; width: 1px; height: 100%; background: color-mix(in srgb, var(--nopal) 20%, transparent); }
}
.about-section__rule { display: block; height: 1px; width: 3rem; background: var(--marigold); margin-bottom: 2rem; }
.about-section__paragraph { font-size: 1.125rem; line-height: 1.75; color: color-mix(in srgb, var(--foreground) 90%, transparent); font-weight: 300; margin-bottom: 2.5rem; }
.about-section__col--right .about-section__paragraph { margin-bottom: 0; }
.about-section__cta { display: inline-flex; flex-direction: column; width: 100%; max-width: 20rem; text-align: left; margin-top: 0; padding-top: 0.5rem; }
.about-section__cta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; transition: color 0.3s ease; }
.about-section__cta:hover .about-section__cta-label { color: var(--marigold); }
.about-section__cta-line { position: relative; display: block; width: 100%; height: 1px; background: var(--foreground); overflow: hidden; }
.about-section__cta-line-fill { position: absolute; inset: 0; background: var(--marigold); transform: translateX(-100%); transition: transform 0.5s ease-in-out; }
.about-section__cta:hover .about-section__cta-line-fill { transform: translateX(0); }
.about-section__accent { margin-top: 5rem; display: flex; justify-content: center; }
.about-section__accent::after {
	content: '';
	height: 1px; width: 100%; max-width: 28rem;
	background: linear-gradient(to right, transparent, var(--marigold), transparent);
	opacity: 0.4;
}

/* -------------------------------------------------------------------------
   Services / offerings
   ------------------------------------------------------------------------- */
.offerings-section__inner { padding: 5rem 0; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .offerings-section__inner { padding: 7rem 0; } }
@media (min-width: 1024px) { .offerings-section__inner { padding: 8rem 0; } }
.offerings-section .theme-section-header { max-width: 32rem; margin-inline: auto; }
.offerings-section__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .offerings-section__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.offerings-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
	background: color-mix(in srgb, var(--background) 70%, transparent);
	padding: 1.75rem;
	transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 768px) { .offerings-card { padding: 2rem; } }
.offerings-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--foreground) 20%, transparent); box-shadow: 0 18px 40px -24px rgba(38,51,44,0.35); }
.offerings-card--feature { padding: 1.75rem; }
@media (min-width: 768px) { .offerings-card--feature { grid-column: span 2; padding: 2.5rem; } }
.offerings-card__icon-badge {
	position: relative;
	width: 3.5rem; height: 3.5rem;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	margin-bottom: 1.5rem;
	transition: transform 0.5s ease;
	color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.offerings-card:hover .offerings-card__icon-badge { transform: scale(1.05); }
.offerings-card__icon-badge--lg { width: 4rem; height: 4rem; }
@media (min-width: 768px) { .offerings-card__icon-badge--lg { width: 5rem; height: 5rem; } }
.offerings-card__icon-badge--flame { background: color-mix(in srgb, var(--primary) 12%, transparent); }
.offerings-card__icon-badge--wind { background: color-mix(in srgb, var(--lilac) 14%, transparent); }
.offerings-card__icon-badge--leaf { background: color-mix(in srgb, var(--teal) 14%, transparent); }
.offerings-card__icon-badge--gift { background: color-mix(in srgb, var(--accent) 15%, transparent); }
.offerings-card__icon-badge--package { background: color-mix(in srgb, var(--marigold) 16%, transparent); }
.offerings-card__icon-badge--sparkles { background: color-mix(in srgb, var(--marigold) 16%, transparent); }
.offerings-card__kicker { display: block; text-transform: uppercase; letter-spacing: 0.22em; font-size: 10px; font-weight: 600; color: var(--marigold); margin-bottom: 0.75rem; }
.offerings-card__title { font-size: 1.5rem; font-weight: 300; line-height: 1.2; margin-bottom: 0.75rem; }
.offerings-card__title--lg { font-size: 1.875rem; }
@media (min-width: 768px) { .offerings-card__title--lg { font-size: 2.25rem; } }
.offerings-card__description { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.7; }
.offerings-card--feature .offerings-card__description { max-width: 32rem; }
@media (min-width: 768px) { .offerings-card--feature .offerings-card__description { font-size: 1rem; } }
.offerings-card__explore {
	margin-top: auto; padding-top: 1.5rem;
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
	color: color-mix(in srgb, var(--foreground) 45%, transparent);
	transition: color 0.3s ease;
}
.offerings-card:hover .offerings-card__explore { color: var(--nopal); }
.offerings-card__explore svg { transition: transform 0.3s ease; }
.offerings-card:hover .offerings-card__explore svg { transform: translate(2px, -2px); }
.offerings-section__footer { margin-top: 3rem; display: flex; justify-content: center; }
@media (min-width: 768px) { .offerings-section__footer { margin-top: 4rem; } }
.offerings-section__footer-link { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; font-weight: 500; }
.offerings-section__footer-rule { height: 1px; width: 2rem; background: var(--nopal); transition: width 0.3s ease; }
.offerings-section__footer-link:hover .offerings-section__footer-rule { width: 4rem; }

/* -------------------------------------------------------------------------
   Shop section
   ------------------------------------------------------------------------- */
.shop-section { padding: 4rem 0; }
@media (min-width: 768px) { .shop-section { padding: 6rem 0; } }
.shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); }
.shop-search__input {
	width: 100%;
	padding: 0.5rem 0 0.5rem 1.75rem;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--border);
	font-size: 0.95rem;
	color: var(--foreground);
	transition: border-color 0.2s ease;
}
.shop-search__input:focus { outline: none; border-color: var(--foreground); }
.shop-search__input::placeholder { color: var(--muted-foreground); }

.shop-categories {
	display: flex;
	overflow-x: auto;
	gap: 0.5rem;
	margin: 0 0 1rem;
	padding: 0;
	scrollbar-width: none;
	scroll-padding-inline: var(--page-gutter);
}
.shop-categories::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
	.shop-categories {
		flex-wrap: wrap;
		justify-content: center;
		overflow-x: visible;
		margin-inline: 0;
		padding-inline: 0;
		gap: 0.5rem;
	}
	.shop-category-pill {
		flex-shrink: 1;
		font-size: 10px;
		padding: 0.45rem 0.9rem;
		letter-spacing: 0.14em;
	}
}
@media (min-width: 768px) { .shop-categories { overflow: visible; flex-wrap: wrap; justify-content: center; } }
.shop-category-pill {
	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(--border);
	background: transparent;
	color: var(--foreground);
	transition: all 0.3s ease;
}
.shop-category-pill:hover { border-color: var(--lilac); color: var(--lilac); }
.shop-category-pill.is-active { background: var(--teal); color: var(--background); border-color: var(--teal); }

.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(--muted-foreground);
	transition: color 0.3s ease;
}
.shop-price-filter__toggle:hover { color: var(--foreground); }
.shop-price-filter__toggle svg { transition: transform 0.3s ease; }
.shop-price-filter__toggle.is-open svg { transform: rotate(180deg); }
.shop-price-filter__current { opacity: 0.7; text-transform: none; letter-spacing: normal; }
.shop-price-filter__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);
}
.shop-price-filter__panel.is-open { max-height: 200px; opacity: 1; }
.shop-price-filter__labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin: 0.5rem 0; }
.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(--border); }
.range-track-fill { background: var(--primary); }
.range-input {
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; margin: 0;
	-webkit-appearance: none; appearance: none;
	background: transparent;
	pointer-events: none;
}
.range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: auto;
	width: 1.25rem; height: 1.25rem;
	border-radius: 50%;
	background: var(--background);
	border: 2px solid var(--primary);
	cursor: pointer;
	margin-top: 0;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 1.25rem; height: 1.25rem;
	border-radius: 50%;
	background: var(--background);
	border: 2px solid var(--primary);
	cursor: pointer;
}
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-show-more { text-align: center; margin-top: 3rem; }
.shop-empty-state { text-align: center; padding: 5rem 0; color: var(--muted-foreground); }

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq-section__inner { padding-block: 5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .faq-section__inner { padding-block: 7rem; } }
@media (min-width: 1024px) { .faq-section__inner { padding-block: 8rem; } }
@media (min-width: 768px) and (max-width: 1023px) {
	.faq-section__inner { padding-inline: 2.5rem; }
}
.faq-section .theme-section-header { max-width: 32rem; margin-inline: auto; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .faq-section .theme-section-header { margin-bottom: 5rem; } }
.faq-list { border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; }
@media (min-width: 768px) { .faq-item__question { padding: 1.75rem 0; } }
.faq-item__question-text { font-size: 1.125rem; font-weight: 300; line-height: 1.4; }
@media (min-width: 768px) { .faq-item__question-text { font-size: 1.5rem; } }
.faq-item__icon {
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent);
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
	transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.faq-item__question:hover .faq-item__icon { border-color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); background: color-mix(in srgb, var(--nopal) 10%, transparent); color: var(--nopal); border-color: color-mix(in srgb, var(--nopal) 30%, transparent); }
.faq-item__answer-wrap { display: grid; grid-template-rows: 1fr; opacity: 1; transition: grid-template-rows 0.5s ease-out, opacity 0.5s ease-out; }
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer { font-size: 0.9rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.7; max-width: 42rem; padding-bottom: 1.75rem; padding-right: 3rem; }
@media (min-width: 768px) { .faq-item__answer { font-size: 1rem; } }

/* -------------------------------------------------------------------------
   Team
   ------------------------------------------------------------------------- */
.team-section__inner { padding-block: 5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .team-section__inner { padding-block: 7rem; } }
@media (min-width: 1024px) { .team-section__inner { padding-block: 8rem; } }
.team-section .theme-section-header { max-width: 32rem; margin-inline: auto; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.team-card {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
	background: color-mix(in srgb, var(--background) 70%, transparent);
	padding: 2rem;
	transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 768px) { .team-card { padding: 2.5rem; } }
.team-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--foreground) 20%, transparent); box-shadow: 0 18px 40px -24px rgba(38,51,44,0.35); }
.team-card__avatar {
	position: relative;
	width: 6rem; height: 6rem;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	margin-bottom: 1.5rem;
	transition: transform 0.5s ease;
}
@media (min-width: 768px) { .team-card__avatar { width: 7rem; height: 7rem; } }
.team-card:hover .team-card__avatar { transform: scale(1.05); }
.team-card__avatar--flame { background: color-mix(in srgb, var(--primary) 12%, transparent); }
.team-card__avatar--sparkles { background: color-mix(in srgb, var(--marigold) 15%, transparent); }
.team-card__avatar--leaf { background: color-mix(in srgb, var(--teal) 14%, transparent); }
.team-card__initials { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: color-mix(in srgb, var(--foreground) 80%, transparent); }
@media (min-width: 768px) { .team-card__initials { font-size: 1.875rem; } }
.team-card__badge {
	position: absolute; bottom: -0.25rem; right: -0.25rem;
	display: flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem;
	border-radius: 50%;
	background: var(--background);
	border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
	color: color-mix(in srgb, var(--foreground) 60%, transparent);
}
.team-card__name { font-size: 1.5rem; font-weight: 300; line-height: 1.2; }
.team-card__role { display: block; text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px; font-weight: 600; color: var(--marigold); margin-top: 0.5rem; margin-bottom: 1rem; }
.team-card__bio { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.7; }

/* -------------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------------- */
.testimonials-section { overflow: hidden; }
.testimonials-section__inner { padding: 5rem 0; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-section__inner { padding: 7rem 0; } }
@media (min-width: 1024px) { .testimonials-section__inner { padding: 8rem 0; } }
.testimonials-section .theme-section-header { max-width: 32rem; margin-inline: auto; margin-bottom: 3rem; }
@media (min-width: 768px) { .testimonials-section .theme-section-header { margin-bottom: 4rem; } }
.testimonials-carousel { position: relative; text-align: center; }
.testimonials-carousel__quote-icon { margin: 0 auto 2rem; color: color-mix(in srgb, var(--nopal) 40%, transparent); }
.testimonials-carousel__viewport { position: relative; min-height: 240px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .testimonials-carousel__viewport { min-height: 220px; } }
.testimonials-carousel__slide {
	position: absolute; inset: 0;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 0.5rem;
	margin: 0;
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
@media (min-width: 768px) { .testimonials-carousel__slide { padding: 0 2.5rem; } }
.testimonials-carousel__slide.is-active { display: flex; opacity: 1; transform: translateX(0); position: relative; }
.testimonials-carousel__stars { display: flex; align-items: center; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonials-carousel__star { color: var(--marigold); fill: currentColor; }
.testimonials-carousel__quote { font-size: 1.25rem; font-weight: 300; font-style: italic; line-height: 1.6; margin: 0; }
@media (min-width: 768px) { .testimonials-carousel__quote { font-size: 1.875rem; } }
.testimonials-carousel__footer { margin-top: 2rem; }
.testimonials-carousel__name { display: block; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; }
.testimonials-carousel__detail { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: color-mix(in srgb, var(--foreground) 50%, transparent); margin-top: 0.25rem; }
.testimonials-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.testimonials-carousel__arrow {
	display: flex; align-items: center; justify-content: center;
	width: 2.75rem; height: 2.75rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--foreground) 20%, transparent);
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
	transition: border-color 0.2s ease, color 0.2s ease;
}
.testimonials-carousel__arrow:hover { border-color: color-mix(in srgb, var(--foreground) 40%, transparent); color: var(--foreground); }
.testimonials-carousel__dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonials-carousel__dot { height: 0.5rem; width: 0.5rem; border-radius: 999px; background: color-mix(in srgb, var(--foreground) 20%, transparent); transition: all 0.3s ease; }
.testimonials-carousel__dot:hover { background: color-mix(in srgb, var(--foreground) 40%, transparent); }
.testimonials-carousel__dot.is-active { width: 1.5rem; background: var(--nopal); }

/* -------------------------------------------------------------------------
   Final CTA band
   ------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; padding: 0; }
.cta-band__media { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .cta-band__media { min-height: 640px; } }
.cta-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); pointer-events: none; z-index: 1; }
.cta-band__content {
	position: relative; z-index: 10;
	max-width: 42rem; width: 100%;
	text-align: center;
	padding: 6rem 2rem;
	margin-inline: auto;
}
@media (min-width: 768px) { .cta-band__content { padding: 7rem 4rem; } }
.cta-band__kicker { color: var(--background); }
.cta-band__paragraph { color: color-mix(in srgb, var(--background) 90%, transparent); line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; margin-inline: auto; }
.cta-band__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cta-band__actions { flex-direction: row; } }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--butter); }
.site-footer__inner { padding-block: 4rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem; } }
@media (min-width: 768px) and (max-width: 1023px) {
	.site-footer__inner { padding-inline: 2.5rem; }
}
.site-footer__top {
	display: flex; flex-direction: column; gap: 1.5rem;
	margin-bottom: 3rem; padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) { .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__logo-img { height: 6rem; width: auto; object-fit: contain; border-radius: 0.375rem; }
@media (min-width: 640px) { .site-footer__logo-img { height: 7rem; } }
.site-footer__intro { max-width: 36rem; }
@media (min-width: 640px) { .site-footer__intro { text-align: right; } }
.site-footer__tagline { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); line-height: 1.7; }
.site-footer__contact-line { margin-top: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 70%, transparent); }
.site-footer__contact-line a:hover { color: var(--foreground); }
.site-footer__dot { margin: 0 0.5rem; color: color-mix(in srgb, var(--foreground) 40%, transparent); }
.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(3, 1fr); gap: 3rem; } }
.site-footer__col--reach { grid-column: span 2; }
@media (min-width: 768px) { .site-footer__col--reach { grid-column: span 1; } }
.site-footer__col-title { font-size: 1.5rem; margin-bottom: 1.25rem; }
.site-footer__col-subtitle { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.site-footer__list a { color: color-mix(in srgb, var(--foreground) 70%, transparent); transition: color 0.2s ease; }
.site-footer__list a:hover { color: var(--foreground); }
.site-footer__icon-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__bottom {
	margin-top: 3.5rem; padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem;
	text-align: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__quote { font-size: 12px; color: var(--nopal); letter-spacing: 0.02em; font-style: italic; font-family: var(--font-display); }
.site-footer__copyright { font-size: 12px; color: var(--muted-foreground); letter-spacing: 0.02em; }

/* -------------------------------------------------------------------------
   Contact modal
   ------------------------------------------------------------------------- */
.theme-contact-modal { position: fixed; inset: 0; z-index: 80; display: none; }
.theme-contact-modal.is-open { display: block; }
.theme-contact-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.25s ease; }
.theme-contact-modal.is-open .theme-contact-modal__overlay { opacity: 1; }
.theme-contact-modal__panel {
	position: relative; z-index: 1;
	max-width: 32rem; max-height: 90vh; overflow-y: auto;
	margin: 5vh auto; padding: 2rem;
	background: var(--background);
	border-radius: var(--card-radius);
	box-shadow: var(--shadow-elevated);
	opacity: 0; transform: translateY(16px) scale(0.98);
	transition: opacity 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}
.theme-contact-modal.is-open .theme-contact-modal__panel { opacity: 1; transform: translateY(0) scale(1); }
.theme-contact-modal__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.25rem; opacity: 0.6; transition: opacity 0.2s ease; }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; padding-right: 2rem; }
.theme-contact-modal__description { font-size: 0.9rem; color: var(--muted-foreground); margin-bottom: 1.25rem; }
.theme-contact-modal__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.theme-contact-modal__meta-link { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; }
.theme-contact-modal__meta-link:hover { color: var(--foreground); }
.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-contact-form__field input, .theme-contact-form__field textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: 0.375rem;
	font-size: 1rem;
	transition: box-shadow 0.3s ease, border-color 0.2s ease;
}
.theme-contact-form__field textarea { resize: none; }
.theme-contact-form__field input:focus, .theme-contact-form__field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 50%, transparent); }
.theme-contact-form__field input::placeholder, .theme-contact-form__field textarea::placeholder { color: var(--muted-foreground); }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__success { text-align: center; padding: 2rem 0; }
.theme-contact-form__success-icon {
	width: 3.5rem; height: 3.5rem;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--primary);
	color: var(--primary-foreground);
}
.theme-contact-form__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-form__success p { font-size: 0.875rem; color: var(--muted-foreground); }

/* -------------------------------------------------------------------------
   Cart drawer + overlay
   ------------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 60;
	background: color-mix(in srgb, var(--foreground) 20%, transparent);
	opacity: 0; visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0;
	height: 100%; width: 100%; max-width: 26rem;
	z-index: 61;
	background: var(--background);
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.theme-cart-drawer__title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; opacity: 0.6; 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; }
.theme-cart-drawer__empty-icon { color: var(--muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty-text { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { position: relative; width: 5rem; height: 6rem; flex-shrink: 0; background: var(--secondary); overflow: hidden; display: block; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { display: block; font-size: 0.875rem; font-weight: 500; 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: 0.875rem; color: var(--muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__item-variation { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s ease; display: flex; }
.theme-cart-drawer__qty-btn:hover { background: var(--secondary); }
.theme-cart-drawer__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal-label { color: var(--muted-foreground); }
.theme-cart-drawer__subtotal-value { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; font-size: 11px; padding: 0 1.5rem; min-height: 40px; }

/* -------------------------------------------------------------------------
   Single product page
   ------------------------------------------------------------------------- */
.single-product-page { padding-top: 0.5rem; background: var(--background); }
@media (min-width: 1024px) { .single-product-page { padding-top: 0.75rem; } }

/* Hide default WooCommerce single-product output the theme replaces */
.single-product-page .woocommerce-tabs,
.single-product-page .upsells.products,
.single-product-page > .container-wide > .related.products,
.single-product-page .summary.entry-summary:not(.theme-product-info) {
	display: none !important;
}
.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); overflow-wrap: anywhere; }
.theme-breadcrumb__link { transition: color 0.2s ease; }
.theme-breadcrumb__link:hover { color: var(--foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--foreground); }

.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 6rem;
	padding-top: 1rem;
	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__mobile { display: block; }
@media (min-width: 1024px) { .theme-product-gallery__mobile { display: none; } }
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; overflow-x: auto; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--secondary); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active img { opacity: 1; }
.theme-product-thumb::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--foreground); opacity: 0; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active::after { opacity: 1; }
.theme-product-main-image { position: relative; aspect-ratio: 1/1; background: var(--secondary); overflow: hidden; }

/* On desktop the source stacks ALL images full-size in a column (no thumb rail). */
.theme-product-gallery__stack { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery__stack { display: flex; flex-direction: column; gap: 1rem; }
	.theme-product-gallery__stack-image { position: relative; aspect-ratio: 1/1; background: var(--secondary); overflow: hidden; }
}

.theme-product-info { position: relative; }
@media (min-width: 1024px) { .theme-product-info { padding-left: 1rem; position: sticky; top: calc(var(--header-height) + 1.75rem); align-self: flex-start; } }
.theme-product-info__category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--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-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-info__price .price { font-family: var(--font-body); }
.theme-product-info__lead { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; }
.theme-stock-indicator { font-size: 0.875rem; margin-bottom: 1.5rem; }
.theme-stock-indicator--out { color: color-mix(in srgb, var(--foreground) 60%, transparent); }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 0; overflow: hidden; }
.theme-field-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.theme-quantity-field { margin-bottom: 1rem; }
.theme-add-to-cart-field { margin-bottom: 0.5rem; }
.theme-add-to-cart-field .single_add_to_cart_button { width: 100%; }
.theme-qty-minus, .theme-qty-plus { padding: 0.6rem 0.9rem; transition: background-color 0.2s ease; display: flex; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--secondary); }
.theme-qty-input {
	width: 3rem; text-align: center;
	border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
	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; }

.theme-add-to-cart-area { display: flex; flex-direction: column; gap: 0; margin-bottom: 0.5rem; }
.theme-add-to-cart-area .single_add_to_cart_button { width: 100%; }
.single-product .woocommerce-variation-add-to-cart { display: flex; flex-direction: column; gap: 0; }
.single-product .woocommerce-variation-add-to-cart .single_add_to_cart_button { width: 100%; margin-top: 0; }
.single-product .reset_variations { display: none !important; }
.single-product .woocommerce-info,
.single-product .woocommerce-variation-availability,
.single-product .woocommerce-variation-price { display: none !important; }

/* PDP add-to-cart — matches Lovable (foreground pill, full width) */
.single-product .single_add_to_cart_button.button,
.single-product a.single_add_to_cart_button.button {
	background-color: var(--foreground) !important;
	color: var(--background) !important;
	border: none !important;
	border-radius: 999px !important;
	width: 100% !important;
	min-height: 3.5rem !important;
	padding: 1rem 2rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.25em !important;
	font-weight: 500 !important;
	font-size: 12px !important;
}
.single-product .single_add_to_cart_button.button:hover,
.single-product a.single_add_to_cart_button.button:hover {
	background-color: color-mix(in srgb, var(--foreground) 90%, transparent) !important;
	color: var(--background) !important;
	opacity: 1 !important;
}

.theme-product-accordion { margin-top: 2.5rem; border-top: 1px solid var(--border); }
.theme-accordion-item { border-bottom: 1px solid var(--border); }
.theme-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion-trigger svg { transition: transform 0.3s ease; }
.theme-accordion-trigger.is-open svg, .theme-accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.theme-accordion-panel { overflow: hidden; transition: max-height 0.3s ease; }
.theme-accordion-panel.is-open,
.theme-accordion-panel[style*="max-height: none"] { padding-bottom: 1.5rem; }
.theme-accordion-panel[style*="max-height:0"],
.theme-accordion-panel[style*="max-height: 0"] { padding-bottom: 0; }
.theme-accordion-panel p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 0.75rem; }
.theme-accordion-panel p:last-child { margin-bottom: 0; }
.theme-product-description, .woocommerce-product-details__short-description, .woocommerce-variation-description, .posted_in {
	overflow-wrap: break-word; word-break: break-word;
	font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem;
}
.theme-product-details-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.theme-product-details-list li { font-size: 0.9375rem; color: var(--muted-foreground); display: flex; align-items: flex-start; }
.theme-detail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--foreground); margin-top: 0.5rem; margin-right: 0.75rem; flex-shrink: 0; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--border); }
.related-products-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Single product variations table */
.single-product .theme-product-layout { min-width: 0; }
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.single-product .variations tbody td.value select { width: 100%; max-width: 20rem; padding: 0.6rem 0.75rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--background); }
.single-product .variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }
.theme-attr-select-hidden { display: none !important; }

/* -------------------------------------------------------------------------
   404
   ------------------------------------------------------------------------- */
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 6rem 0; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__message { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* Generic page title (About/Contact fallback, Cart, My Account, Checkout) */
.page-title { font-size: 2rem; margin: 2rem 0; }
@media (min-width: 768px) { .page-title { font-size: 2.5rem; } }
.entry-content { padding-bottom: 4rem; }

/* -------------------------------------------------------------------------
   Animations / scroll reveal
   ------------------------------------------------------------------------- */
@keyframes vvFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes vvSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.25,0.4,0.25,1), transform 0.7s cubic-bezier(0.25,0.4,0.25,1);
}
.reveal-item[data-reveal="fade-in"] { transform: none; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.theme-product-card__image-wrapper img, .theme-product-card__add-btn { transition: none !important; }
}

/* Customizer preview fallback: never leave reveal-item stuck invisible while editing */
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

/* =========================================================================
   WooCommerce overrides
   ========================================================================= */

/* Add to cart buttons */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button — overrides global rules for the product-card variant */
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__add-btn {
	min-height: unset !important;
	height: auto !important;
	padding: 0.75rem 0 !important;
	border-radius: 999px !important;
	background-color: var(--teal) !important;
	border: 1px solid var(--teal) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__add-btn:hover {
	background-color: var(--background) !important;
	color: var(--teal) !important;
}

/* Hide "View cart" injected after AJAX add */
.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; }

/* Notices — scoped visibility */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	padding: 1rem 1.25rem 1rem 3rem;
	border-top: 3px solid var(--primary);
	background: var(--card);
	color: var(--foreground);
	list-style: none;
}
.woocommerce-error { border-top-color: #b3261e; }

/* Breadcrumb (design has none — kept hidden via functions.php removal) */

/* =========================================================================
   Checkout Block overrides (Section 13)
   ========================================================================= */
body.woocommerce-checkout .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	font-family: var(--font-body);
}
body.woocommerce-checkout .wc-block-checkout {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--foreground);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	background: var(--background);
}
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(--primary) 50%, transparent);
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-surface);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: none !important;
	font-family: var(--font-body) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	font-family: var(--font-body);
}

/* =========================================================================
   Thank-you page
   ========================================================================= */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	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: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; max-width: none; }
}

/* =========================================================================
   Cart / Account pages width parity
   ========================================================================= */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 2rem; padding-bottom: 4rem; }
