/* =========================================================================
   MsPatsWisdom — theme.css
   Color tokens are injected as CSS variables via wp_add_inline_style
   (see functions.php / theme_enqueue_assets). Do not hardcode hex values
   for any color that has a Customizer control.
   ========================================================================= */

:root {
	--radius: 0.625rem;
	--shadow-soft: 0 4px 18px -8px rgb(39 46 36 / 0.10);
	--shadow-elevated: 0 16px 48px -16px rgb(39 46 36 / 0.22);
	--font-display: 'Libre Caslon Text', 'Times New Roman', serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;
	--header-height: 80px;
}

/* -------------------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; height: auto; display: block; }
img.cover-img,
.hero-section__bg,
.precontact-section__bg,
.hero-section__bg video,
.precontact-section__bg video,
.theme-product-card__image,
.theme-product-gallery__main img,
.theme-product-thumb img,
.about-section__main-photo img,
.about-section__portrait-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; margin: 0; }
section[id] { scroll-margin-top: 80px; }

.container-wide {
	box-sizing: border-box;
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }

.eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 500;
	margin: 0 0 1rem;
}

.section-heading { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.012em; line-height: 1.05; color: var(--color-foreground); margin: 0; }

/* -------------------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--font-body);
	text-transform: none;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	height: 2.75rem;
	padding: 0 1.5rem;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-lg { height: 3rem; padding: 0 1.75rem; }
.btn-sm { height: 2.25rem; padding: 0 1rem; }
.btn-default { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.btn-default:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.btn-outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.btn-outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.btn-amber { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); }
.btn-amber:hover { background: color-mix(in srgb, var(--color-accent) 90%, transparent); }
.btn-glass { background: color-mix(in srgb, #ffffff 10%, transparent); color: #fff; border-color: color-mix(in srgb, #ffffff 40%, transparent); backdrop-filter: blur(8px); }
.btn-glass:hover { background: color-mix(in srgb, #ffffff 20%, transparent); }
.btn.disabled { cursor: not-allowed; opacity: 0.6; pointer-events: none; }

/* -------------------------------------------------------------------------
   ANIMATIONS (Section 2.1) — per-element inventory:
   hero eyebrow: fade-in, 700ms ease-out, opacity only, on mount.
   hero heading/subtext/ctas: slide-in-bottom, 700ms ease-out, opacity+translateY(20px), staggered 0/120/240ms.
   section reveal-item: scroll IntersectionObserver, 700ms ease-out, opacity+translateY(20px).
   mobile menu panel: fade-in, 700ms ease-out.
   FAQ panel: grid-template-rows 0fr<->1fr, 300ms ease-out.
   product card image: scale 1.04, 1400ms cubic-bezier(0.22,0.61,0.36,1), on hover.
   product card quick actions: opacity+translateY(8px->0), 500ms ease-out, on hover.
   ---------------------------------------------------------------------- */
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.anim-fade-in { animation: theme-fade-in 700ms ease-out both; }
.anim-slide-up { animation: theme-slide-up 700ms ease-out both; }
.anim-delay-1 { animation-delay: 120ms; }
.anim-delay-2 { animation-delay: 240ms; }

.reveal-item { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease-out, transform 700ms ease-out; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* Customizer preview + no-JS fallback: never leave content invisible. */
body.is-customizer .reveal-item,
body.no-js .reveal-item,
.reveal-item.theme-product-card-wrap,
.reveal-item.theme-product-card-wrap--shop { opacity: 1; transform: none; }
body.is-customizer .reveal-item { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .anim-fade-in, .anim-slide-up { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* -------------------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 500ms ease, border-color 500ms ease;
}
.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-menu-open {
	background: color-mix(in srgb, var(--color-background) 80%, transparent);
	backdrop-filter: blur(24px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
@media (min-width: 1024px) {
	.site-header__inner { height: 5rem; display: grid; grid-template-columns: 1fr auto; }
}
.site-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	border: none;
	background: transparent;
	color: #fff;
	order: 1;
	transition: color 300ms ease, background-color 200ms ease;
}
.site-header.is-solid .site-header__menu-toggle,
.site-header.is-scrolled .site-header__menu-toggle { color: var(--color-foreground); }
.site-header__menu-toggle:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__logo { display: flex; align-items: center; flex-shrink: 0; order: 2; }
@media (min-width: 1024px) { .site-header__logo { order: 1; justify-self: start; } }
.site-logo-img { height: 18px !important; width: auto !important; display: block; transition: opacity 500ms ease; }
@media (min-width: 640px) { .site-logo-img { height: 20px !important; } }
@media (min-width: 1024px) { .site-logo-img { height: var(--logo-height, 22px) !important; } }
.site-logo-img--light { display: block; }
.site-logo-img--dark { display: none; }
.site-header.is-solid .site-logo-img--light,
.site-header.is-scrolled .site-logo-img--light,
.site-header.is-menu-open .site-logo-img--light { display: none; }
.site-header.is-solid .site-logo-img--dark,
.site-header.is-scrolled .site-logo-img--dark,
.site-header.is-menu-open .site-logo-img--dark { display: block; }
.site-logo-text {
	font-family: var(--font-display);
	font-size: 1.125rem;
	letter-spacing: -0.01em;
	color: #fff;
	transition: color 500ms ease;
}
@media (min-width: 640px) { .site-logo-text { font-size: 1.25rem; } }
.site-header.is-solid .site-logo-text,
.site-header.is-scrolled .site-logo-text,
.site-header.is-menu-open .site-logo-text { color: var(--color-foreground); }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) { .site-header__nav { display: flex; order: 2; justify-self: end; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-list a {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, #fff 85%, transparent);
	transition: color 300ms ease;
}
.theme-nav-list a:hover { color: #fff; }
.site-header.is-solid .theme-nav-list a,
.site-header.is-scrolled .theme-nav-list a { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.site-header.is-solid .theme-nav-list a:hover,
.site-header.is-scrolled .theme-nav-list a:hover { color: var(--color-primary); }
.theme-nav-list a.is-active { color: #fff; }
.site-header.is-solid .theme-nav-list a.is-active,
.site-header.is-scrolled .theme-nav-list a.is-active { color: var(--color-primary); }
.theme-nav-list a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -0.375rem;
	width: 3px;
	height: 3px;
	border-radius: 999px;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 300ms ease;
	background: var(--color-accent);
}
.theme-nav-list a.is-active::after { opacity: 1; }

.site-header__mobile-panel {
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(24px);
	animation: theme-fade-in 700ms ease-out both;
}
@media (min-width: 1024px) { .site-header__mobile-panel { display: none !important; } }
.site-header__mobile-inner { padding-top: 1rem; padding-bottom: 1rem; display: flex; flex-direction: column; }
.theme-nav-list--mobile { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
.theme-nav-list--mobile li { display: flex; flex-direction: column; width: 100%; }
.site-header__mobile-inner .theme-nav-list { flex-direction: column; align-items: stretch; width: 100%; }
.theme-nav-list--mobile a {
	display: block;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	padding-left: 0;
	padding-right: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	font-size: 14px;
	font-weight: 500;
	transition: color 200ms ease;
}
.theme-nav-list--mobile a:hover { color: var(--color-primary); }
.theme-nav-list--mobile li:last-child a { border-bottom: none; }

/* -------------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------- */
.hero-section {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero-section__scrim-radial {
	position: absolute; inset: 0;
	background-image: radial-gradient(at center, rgb(0 0 0 / 0.55) 0%, rgb(0 0 0 / 0.78) 70%, rgb(0 0 0 / 0.88) 100%);
	pointer-events: none;
}
.hero-section__scrim-tint {
	position: absolute; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	pointer-events: none;
}
.hero-section__content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: #fff;
	padding: 10rem 0 6rem;
}
@media (min-width: 1024px) { .hero-section__content { padding: 13rem 0 8rem; } }
.hero-section__eyebrow-wrap { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-section__eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 999px;
	background: color-mix(in srgb, #fff 10%, transparent);
	border: 1px solid color-mix(in srgb, #fff 25%, transparent);
	backdrop-filter: blur(8px);
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.hero-section__heading {
	font-family: var(--font-display); font-weight: 400; color: #fff;
	line-height: 1.05; letter-spacing: -0.012em;
	max-width: 64rem; margin: 0 auto;
	font-size: clamp(2rem, 5.4vw, 4.2rem);
	filter: drop-shadow(0 2px 30px rgb(0 0 0 / 0.55));
}
.hero-section__heading em { font-style: italic; color: var(--color-accent); }
.hero-section__break { display: none; }
@media (min-width: 640px) { .hero-section__break { display: block; } }
.hero-section__subtext {
	margin: 1.75rem auto 0; max-width: 42rem;
	font-size: 14px; color: color-mix(in srgb, #fff 75%, transparent); line-height: 1.6;
}
@media (min-width: 640px) { .hero-section__subtext { font-size: 15px; } }
.hero-section__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }

/* -------------------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------------- */
.about-section { background: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section__photos { position: relative; display: flex; }
.about-section__main-photo {
	position: relative; width: 100%; min-height: 520px; aspect-ratio: 4/5;
	border-radius: 1rem; overflow: hidden; background: var(--color-bone); box-shadow: var(--shadow-elevated);
}
@media (min-width: 1024px) { .about-section__main-photo { min-height: 0; aspect-ratio: auto; height: 100%; } }
.about-section__portrait-photo {
	display: none; position: absolute; bottom: -2.5rem; right: -1.5rem;
	width: 10rem; aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden;
	border: 6px solid var(--color-linen); background: var(--color-bone); box-shadow: var(--shadow-elevated);
}
@media (min-width: 768px) { .about-section__portrait-photo { display: block; } }
@media (min-width: 1024px) { .about-section__portrait-photo { right: -2.5rem; width: 12rem; } }
.about-section__copy { min-width: 0; }
@media (min-width: 1024px) { .about-section__copy { padding-left: 1.5rem; } }
.about-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.4rem; } }
.about-section__quote {
	margin: 2rem 0 0; font-family: var(--font-display); font-style: italic;
	font-size: 1.25rem; line-height: 1.35; color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border-left: 2px solid color-mix(in srgb, var(--color-accent) 60%, transparent); padding-left: 1.25rem;
}
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__body { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; max-width: 65ch; }
.about-section__body p { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin: 0; overflow-wrap: break-word; }
@media (min-width: 768px) { .about-section__body p { font-size: 16px; } }
.about-section__closing { font-family: var(--font-display); font-style: italic; font-size: 18px; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); padding-top: 0.5rem; }
.about-section .eyebrow { margin-bottom: 1.25rem; }
.about-section__stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
.about-section__stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); margin: 0; }
@media (min-width: 768px) { .about-section__stat-value { font-size: 1.875rem; } }
.about-section__stat-label { margin: 0.25rem 0 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* -------------------------------------------------------------------------
   SHOP
   ---------------------------------------------------------------------- */
.shop-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .shop-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-section__heading { font-size: 3.2rem; } }
.shop-section__subtext { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .shop-section__subtext { font-size: 15px; } }
.shop-section__notice { margin-top: 1rem; display: flex; align-items: flex-start; gap: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.6; max-width: 36rem; }
.shop-section__notice svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--color-primary); }
.shop-section__admin-notice { margin: 1.5rem 0; padding: 1rem 1.25rem; border-radius: 0.5rem; background: color-mix(in srgb, var(--color-primary) 8%, transparent); border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); pointer-events: none; }
.shop-section__search input {
	width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem; border-radius: 999px;
	background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	font-size: 14px; color: var(--color-foreground);
}
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }

.shop-section__pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.shop-pill {
	height: 2.5rem; padding: 0 1.25rem; border-radius: 999px; font-size: 14px; font-weight: 500;
	background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.shop-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-pill.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__more-wrap { margin-top: 3rem; display: flex; justify-content: center; }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem 1.5rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* -------------------------------------------------------------------------
   PRODUCT CARD
   ---------------------------------------------------------------------- */
.theme-product-card-wrap { display: flex; }
.theme-product-card-wrap.is-shop-filter-hidden { 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; }
.theme-product-card__image-wrapper,
.theme-product-card__info { pointer-events: none; }
.theme-product-card__quick-actions,
.theme-product-card__quick-actions a,
.theme-product-card__quick-actions button {
	pointer-events: auto;
	position: relative;
	z-index: 4;
}
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1/1; background: var(--color-linen);
	border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem;
}
.theme-product-card__image {
	transition: transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent 60%);
	opacity: 0; transition: opacity 500ms ease;
}
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	background: var(--color-foreground); color: var(--color-background);
	font-size: 11px; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 999px;
}
.theme-product-card__quick-actions {
	position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 3;
	display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transform: translateY(8px);
	transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; transform: translateY(0); }
.theme-product-card__shop-btn {
	flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 2.5rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(6px);
	color: var(--color-foreground); font-size: 12.5px; font-weight: 500;
	transition: background-color 300ms ease, color 300ms ease;
	box-shadow: var(--shadow-soft);
}
.theme-product-card__shop-btn:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__eye-btn {
	width: 2.5rem; height: 2.5rem; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(6px);
	color: var(--color-foreground); box-shadow: var(--shadow-soft);
	transition: background-color 300ms ease, color 300ms ease;
}
.theme-product-card__eye-btn:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__info { flex: 1; padding: 0 0.125rem; }
.theme-product-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin: 0 0 0.375rem; }
.theme-product-card__title {
	font-family: var(--font-display); font-size: 1.15rem; line-height: 1.35; color: var(--color-foreground);
	transition: color 300ms ease; margin: 0;
	overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin: 0.375rem 0 0; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }

/* -------------------------------------------------------------------------
   SERVICES
   ---------------------------------------------------------------------- */
.services-section { background: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.services-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .services-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__heading { font-size: 3.2rem; } }
.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.service-card { background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; padding: 1.75rem; transition: border-color 200ms ease; }
@media (min-width: 768px) { .service-card { padding: 2rem; } }
.service-card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.service-card__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
	border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); margin-bottom: 1.5rem;
}
.service-card__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 0.75rem; }
.service-card__body { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin: 0; overflow-wrap: break-word; }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.faq-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }
.faq-section__stack { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 768px) { .faq-section__stack { gap: 6rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 4fr 8fr; } }
.faq-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__subtext { margin-top: 1.5rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 24rem; }
@media (min-width: 768px) { .faq-section__subtext { font-size: 15px; } }
.faq-section__sidebar-card {
	display: none; position: relative; overflow: hidden; border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: var(--color-linen);
	padding: 1.75rem; margin-top: 2.5rem;
}
@media (min-width: 1024px) { .faq-section__sidebar-card { display: block; } }
.faq-section__sidebar-icon {
	display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-accent) 15%, transparent); color: var(--color-accent); margin-bottom: 1.25rem;
}
.faq-section__sidebar-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 0.5rem; line-height: 1.3; }
.faq-section__sidebar-card p { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin: 0 0 1.5rem; }

.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item--hidden { display: none; }
.faq-item__question {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: 1.25rem 0; background: none; border: none; text-align: left;
}
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon { flex-shrink: 0; color: var(--color-primary); display: inline-flex; }
.faq-item__icon-minus { display: none; }
.faq-item[data-open="true"] .faq-item__icon-plus { display: none; }
.faq-item[data-open="true"] .faq-item__icon-minus { display: inline-flex; }
.faq-item__panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 300ms ease-out; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel-inner p { padding: 0 2rem 1.5rem 0; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; margin: 0; overflow-wrap: break-word; }
@media (min-width: 768px) { .faq-item__panel-inner p { font-size: 15px; } }
.faq-section__toggle-wrap { margin-top: 2rem; display: flex; justify-content: center; }
@media (min-width: 1024px) { .faq-section__toggle-wrap { justify-content: flex-start; } }

/* -------------------------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------------------- */
.testimonials .eyebrow { margin-bottom: 0.75rem; }
.testimonials { overflow-x: clip; }
.testimonials__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials__heading { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.3; color: var(--color-foreground); margin: 0; }
@media (min-width: 768px) { .testimonials__heading { font-size: 2.25rem; } }
.testimonials__nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .testimonials__nav { display: flex; } }
.testimonials__nav-btn {
	width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--color-foreground);
	transition: color 200ms ease, border-color 200ms ease;
}
.testimonials__nav-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.testimonials__viewport { overflow: hidden; margin: 0 -0.75rem; }
.testimonials__track { display: flex; transition: transform 400ms ease; }
.testimonials__slide { flex: 0 0 100%; padding: 0 0.75rem; min-width: 0; }
@media (min-width: 768px) { .testimonials__slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .testimonials__slide { flex-basis: 25%; } }
.testimonial-card { height: 100%; display: flex; flex-direction: column; background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; padding: 1.5rem; }
.testimonial-card__stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; color: var(--color-accent); }
.testimonial-card__text { flex: 1; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin: 0; overflow-wrap: break-word; }
.testimonial-card__meta { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.testimonial-card__name { font-size: 14px; font-weight: 500; color: var(--color-foreground); margin: 0; }
.testimonial-card__city { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin: 0.125rem 0 0; }
.testimonials__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials__dots button { height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); border: none; transition: width 200ms ease, background-color 200ms ease; }
.testimonials__dots button:hover { background: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.testimonials__dots button.is-active { width: 2rem; background: var(--color-primary); }

/* -------------------------------------------------------------------------
   PRE-CONTACT CTA
   ---------------------------------------------------------------------- */
.precontact-section { position: relative; overflow: hidden; }
.precontact-section__scrim-radial { position: absolute; inset: 0; background-image: radial-gradient(at center, rgb(0 0 0 / 0.55) 0%, rgb(0 0 0 / 0.78) 70%, rgb(0 0 0 / 0.88) 100%); pointer-events: none; }
.precontact-section__scrim-tint { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 35%, transparent); pointer-events: none; }
.precontact-section__content { position: relative; z-index: 10; padding: 7rem 0; text-align: center; color: #fff; }
@media (min-width: 768px) { .precontact-section__content { padding: 10rem 0; } }
.precontact-section__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: color-mix(in srgb, #fff 85%, transparent); font-weight: 500; margin-bottom: 1.5rem; }
.precontact-section__hairline { height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-accent) 70%, transparent); }
.precontact-section__heading { font-family: var(--font-display); font-weight: 400; color: #fff; line-height: 1.05; max-width: 56rem; margin: 0 auto; font-size: clamp(2rem, 5.4vw, 4rem); filter: drop-shadow(0 2px 30px rgb(0 0 0 / 0.55)); }
.precontact-section__heading em { font-style: italic; color: var(--color-accent); }
.precontact-section__subtext {
	margin: 1.75rem auto 0; max-width: 36rem; font-size: 15px; color: color-mix(in srgb, #fff 75%, transparent); line-height: 1.6;
	display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
}
.precontact-section__subtext-hairline { display: none; height: 1px; width: 1.5rem; background: color-mix(in srgb, #fff 35%, transparent); flex-shrink: 0; }
@media (min-width: 640px) { .precontact-section__subtext-hairline { display: inline-block; } }
.precontact-section__cta-wrap { margin-top: 2.5rem; }

/* -------------------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------------- */
.contact-section { background: var(--color-linen); padding: 6rem 0 3rem; }
@media (min-width: 768px) { .contact-section { padding: 8rem 0 4rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.contact-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 3.4rem; } }
.contact-section__subtext { margin-top: 1.5rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 30rem; overflow-wrap: break-word; }
.contact-section__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__item { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 200ms ease; }
a.contact-section__item:hover { color: var(--color-primary); }
.contact-section__icon { width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 200ms ease; }
.contact-section__item:hover .contact-section__icon { border-color: var(--color-primary); }
.contact-section__item-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__item-text > span:last-child { font-size: 15px; font-weight: 500; overflow-wrap: break-word; }
.contact-section__quote-card {
	margin-top: auto;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-radius: 1rem;
	background: color-mix(in srgb, var(--color-background) 60%, transparent);
	padding: 1.5rem;
}
@media (min-width: 768px) { .contact-section__quote-card { padding: 1.75rem; } }
.contact-section__quote {
	font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	font-size: 18px; line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-accent) 60%, transparent);
	padding: 0 0 0 1.25rem; margin: 0; background: transparent;
	border-radius: 0; overflow-wrap: break-word;
}
@media (min-width: 768px) { .contact-section__quote { font-size: 20px; } }
.contact-section__quote-caption { margin: 0.75rem 0 0 1.25rem; padding: 0; font-size: 13px; letter-spacing: 0.02em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); background: transparent; border-radius: 0; }

.contact-section__form {
	background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-section__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-section__form-row { grid-template-columns: 1fr 1fr; } }
.contact-section__field label { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-section__field input, .contact-section__field select, .contact-section__field textarea {
	width: 100%; height: 3rem; padding: 0 1rem; background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-radius: 0.375rem;
	font-size: 14px; color: var(--color-foreground); font-family: var(--font-body); transition: border-color 200ms ease;
}
.contact-section__field textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.contact-section__field input::placeholder, .contact-section__field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-section__field input:focus, .contact-section__field select:focus, .contact-section__field textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-section__select-wrap { position: relative; }
.contact-section__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-section__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 55%, transparent); pointer-events: none; }
.contact-section__form-submit { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.contact-section__submit-btn { width: 100%; }
.contact-section__form-note { font-size: 12px; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin: 0; }
.contact-section__form-message { font-size: 13px; text-align: center; margin: 0; min-height: 1.2em; }
.contact-section__form-message.is-error { color: var(--color-destructive); }
.contact-section__form-message.is-success { color: var(--color-primary); }

/* -------------------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------------- */
.site-footer { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; } }
.site-footer__logo { display: inline-flex; align-items: center; }
.site-footer .site-logo-text, .site-footer .site-logo-img { color: var(--color-foreground); }
.site-footer .site-logo-img { height: 1.5rem !important; }
.site-footer__blurb { margin-top: 1rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 20rem; overflow-wrap: break-word; }
.site-footer__tagline { margin-top: 1rem; font-size: 14px; line-height: 1.6; font-style: italic; font-family: var(--font-display); color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 20rem; }
.site-footer__col-title { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 1rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__links a { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 200ms ease; }
.site-footer__links a:hover { color: var(--color-primary); }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
a.site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright, .site-footer__credit { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin: 0; }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 2px; transition: color 200ms ease; }
.site-footer__credit a:hover { color: var(--color-primary); }

/* -------------------------------------------------------------------------
   SINGLE PRODUCT
   ---------------------------------------------------------------------- */
.single-product-main { padding-top: 6rem; background: var(--color-background); }
@media (min-width: 1024px) { .single-product-main { padding-top: 7rem; } }
.product-back-link { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1.5rem; font-size: 13px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 200ms ease; }
.product-back-link:hover { color: var(--color-primary); }
.product-breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.product-breadcrumb a:hover { color: var(--color-primary); }
.product-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1/1; width: 100%; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1/1; background: var(--color-linen); border-radius: 0.375rem; overflow: hidden; border: 2px solid transparent; transition: border-color 200ms ease; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:not(.is-active):hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }

.theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-info__cat { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); font-weight: 500; margin: 0 0 0.75rem; }
.product-title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.05; color: var(--color-foreground); margin: 0 0 1rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin: 0 0 1.75rem; }
.theme-product-info__description { font-size: 15px; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin: 0 0 2rem; white-space: pre-line; overflow-wrap: break-word; word-break: break-word; }
.theme-add-to-cart-area { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .theme-add-to-cart-area { flex-direction: row; } }
.theme-printful-btn, .theme-add-to-cart-area .btn { flex: 1 1 auto; width: 100%; text-transform: none; }
.theme-printful-btn__icon { margin-right: 0.5rem; }
.theme-product-info__notice { margin-top: 1rem; font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-product-info__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__details-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin: 0 0 1rem; }
.theme-product-info__details ul { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-info__details li { display: flex; align-items: flex-start; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; }
.theme-product-info__bullet { width: 4px; height: 4px; border-radius: 999px; background: var(--color-primary); margin: 0.55rem 0.75rem 0 0; flex-shrink: 0; }
.theme-product-info__trust { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.theme-product-info__trust-item { text-align: center; }
.theme-product-info__trust-item svg { margin: 0 auto 0.5rem; color: var(--color-primary); }
.theme-product-info__trust-item p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin: 0; }

.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__view-all { display: none; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 200ms ease; }
@media (min-width: 640px) { .related-products-section__view-all { display: inline-flex; } }
.related-products-section__view-all:hover { color: var(--color-primary); }

/* -------------------------------------------------------------------------
   GENERIC / 404 / SHOP ARCHIVE
   ---------------------------------------------------------------------- */
.generic-page, .notfound-page, .shop-archive { padding-top: 7rem; padding-bottom: 5rem; min-height: 60vh; }
body.theme-no-hero .generic-page,
body.theme-no-hero .notfound-page,
body.theme-no-hero .shop-archive { padding-top: calc(var(--header-height) + 1.5rem); }
.page-title { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; margin-bottom: 1.5rem; color: var(--color-foreground); }
.notfound-page__inner { text-align: center; }
.notfound-page__inner h1 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.notfound-page__inner p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.notfound-page__link { display: inline-flex; text-decoration: underline; color: var(--color-primary); }
.shop-archive__empty { text-align: center; padding: 4rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   ICONS
   ---------------------------------------------------------------------- */
.theme-icon { flex-shrink: 0; }
.theme-icon--amber { color: var(--color-accent); }
