/* ==========================================================================
   Upscale Unique Medical — theme.css
   All visual styling for the theme lives here (Section 10 / 14).
   ========================================================================== */

:root {
	--color-background: #f5f8fa;
	--color-foreground: #122030;
	--color-primary: #15385b;
	--color-primary-foreground: #f5f8fa;
	--color-secondary: #e8eef3;
	--color-accent: #308885;
	--color-accent-foreground: #ffffff;
	--color-border: #cdd8df;
	--color-muted: #dfe7ec;
	--color-muted-foreground: #566778;
	--color-destructive: #b82e2e;
	--color-linen: #e8eef3;
	--color-sand: #c5d0d9;

	--color-card: #ffffff;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Newsreader', 'Times New Roman', serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;

	--radius: 0.5rem;
	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0.75rem 1.75rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--header-height: 80px;
	--container-max: 1280px;
	--shadow-soft: 0 6px 24px -12px rgba(18, 32, 48, 0.14);
	--shadow-elevated: 0 24px 60px -24px rgba(18, 32, 48, 0.22);
	--checkout-gap: 2.5rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--logo-height: 60px;
}

@media (min-width: 1024px) {
	:root { --header-height: 96px; }
}

/* --------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .font-display, .section-heading {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: -0.01em;
	margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
a, button, [role="button"], summary, label { cursor: pointer; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.italic { font-style: italic; }
.block { display: block; }
.hidden-sm-up { display: none; }
@media (min-width: 640px) {
	.hidden-sm-up { display: inline; }
}

::selection { background: color-mix(in srgb, var(--color-primary) 85%, transparent); color: var(--color-primary-foreground); }

section[id] { scroll-margin-top: 96px; }

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

.theme-light { color-scheme: light; }

/* --------------------------------------------------------------------
   COVER IMAGE EXCLUSION LIST (Section 15.1)
   -------------------------------------------------------------------- */
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__img):not(.theme-product-gallery__main-img):not(.owner-section__image):not(.services-section__card-image) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.hero-bg-img,
.theme-product-card__img,
.theme-product-gallery__main-img,
.owner-section__image,
.services-section__card-image,
.theme-cart-drawer__item-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}
.theme-product-card__img,
.theme-product-gallery__main-img,
.theme-cart-drawer__item-thumb img {
	height: 100% !important;
}

/* --------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------- */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes scale-in { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

.skeleton-shimmer {
	background: linear-gradient(90deg, var(--color-muted) 0%, var(--color-linen) 50%, var(--color-muted) 100%);
	background-size: 200% 100%;
	animation: shimmer 1.6s linear infinite;
}
.img-fade-in { opacity: 0; transition: opacity 700ms ease-out; }
.img-fade-in.is-loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
	.skeleton-shimmer { animation: none; }
	.img-fade-in { transition: none; opacity: 1; }
}

.fade-in-el { opacity: 0; }
.fade-in-el.is-revealed { animation: fade-in 0.7s ease-out both; }

.slide-up-el { opacity: 0; transform: translateY(20px); }
.slide-up-el.is-revealed { animation: slide-in-bottom 0.9s ease-out both; }
.slide-up-el--delay-1.is-revealed { animation-delay: 120ms; }
.slide-up-el--delay-2.is-revealed { animation-delay: 240ms; }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms ease-out, transform 900ms ease-out;
	will-change: opacity, transform;
}
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

/* Customizer preview fallback — reveal content is never hidden in editor (Section 2.1.5) */
body.is-customizer .reveal-item,
body.is-customizer .fade-in-el,
body.is-customizer .slide-up-el {
	opacity: 1 !important;
	transform: none !important;
	animation: none !important;
}

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

/* --------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------- */
.btn-hero-primary,
.btn-hero-outline,
.theme-btn-primary,
.theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	height: var(--btn-height);
	padding: var(--btn-padding);
	transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	text-transform: none;
}
.btn-hero-primary, .theme-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border: 1px solid var(--color-primary);
}
.btn-hero-primary:hover, .theme-btn-primary:hover { opacity: 0.9; }
.btn-hero-outline {
	background: color-mix(in srgb, #ffffff 10%, transparent);
	color: #fff;
	border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
	backdrop-filter: blur(10px);
}
.btn-hero-outline:hover { background: color-mix(in srgb, #ffffff 20%, transparent); }
.theme-btn-outline {
	background: transparent;
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.theme-btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-btn-primary:disabled, .btn-hero-primary.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ======================================================================
   HEADER
   ====================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	width: 100%;
	transition: background-color 300ms ease-out, border-color 300ms ease-out, color 300ms ease-out;
	background: transparent;
	border-bottom: 1px solid transparent;
	color: #fff;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: var(--color-foreground);
	box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	height: 80px;
	padding: 0 1rem;
	width: 100%;
}
@media (min-width: 640px) {
	.site-header__inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
	.site-header__inner { height: 96px; padding: 0 2rem; gap: 1rem; }
}
.site-header__left { display: flex; align-items: center; gap: 0.75rem; min-width: 0; flex: 1; }
@media (min-width: 1024px) {
	.site-header__left { justify-content: flex-end; padding-right: 2.5rem; }
}
@media (min-width: 1280px) {
	.site-header__left { padding-right: 5rem; }
}
.theme-mobile-menu-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 0.375rem;
	color: currentColor; transition: transform 0.3s ease, background-color 0.3s ease;
}
.theme-mobile-menu-toggle:hover { background: color-mix(in srgb, currentColor 6%, transparent); transform: scale(1.1); }
@media (min-width: 1024px) { .theme-mobile-menu-toggle { display: none; } }

.site-header__brand { display: flex; align-items: center; min-width: 0; }
.site-header__brand .site-logo-img {
	width: auto;
	height: var(--logo-height, 60px) !important;
	object-fit: contain;
	transition: height 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}
.site-header.is-solid .site-header__brand .site-logo-img { filter: none; }
.site-header:not(.is-solid) .site-header__brand .site-logo-img {
	filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.site-header__brand .site-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.site-header__brand:hover .site-logo-img,
.site-header__brand:hover .site-logo-text { transform: scale(1.05); }

.site-header__nav { display: none; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; overflow: hidden; }
}
.theme-nav-list { display: flex; align-items: center; gap: 0.25rem; }
.theme-nav-link {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	color: color-mix(in srgb, currentColor 68%, transparent);
	transition: color 0.2s ease;
	white-space: nowrap;
}
@media (min-width: 1280px) {
	.theme-nav-link { padding: 0.5rem 1rem; font-size: 14px; }
}
.theme-nav-link::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: -2px;
	height: 1.5px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	background: currentColor;
}
@media (min-width: 1280px) {
	.theme-nav-link::after { left: 1rem; right: 1rem; }
}
.theme-nav-link:hover,
.theme-nav-link.is-active { color: currentColor; }
.theme-nav-link:hover::after,
.theme-nav-link.is-active::after { transform: scaleX(1); }
.site-header:not(.is-solid) .theme-nav-link::after { background: #fff; }
.site-header.is-solid .theme-nav-link::after { background: var(--color-primary); }

.site-header__right { display: flex; align-items: center; flex: 1; justify-content: flex-end; }
@media (min-width: 1024px) {
	.site-header__right { justify-content: flex-start; padding-left: 2.5rem; }
}
@media (min-width: 1280px) {
	.site-header__right { padding-left: 5rem; }
}
.theme-cart-toggle {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 0.375rem;
	color: currentColor;
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.theme-cart-toggle:hover { background: color-mix(in srgb, currentColor 6%, transparent); transform: scale(1.1) rotate(-6deg); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 11px; font-weight: 600;
	display: flex; align-items: center; justify-content: center;
	animation: scale-in 0.3s ease-out both;
}
.theme-cart-count:empty { display: none; }
.site-header:not(.is-solid) .theme-cart-count { background: #fff; color: var(--color-foreground); }

.theme-mobile-menu-overlay {
	position: fixed; inset: 0; z-index: 90;
	background: color-mix(in srgb, var(--color-foreground) 40%, transparent);
	opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.mobile-menu-open { overflow: hidden; }
body.mobile-menu-open .theme-mobile-menu-overlay { opacity: 1; pointer-events: auto; }
body.mobile-menu-open .site-header {
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: var(--color-foreground);
	box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
body.mobile-menu-open .site-header .site-header__brand .site-logo-img { filter: none; height: var(--logo-height, 60px) !important; }

.theme-mobile-menu {
	position: fixed; top: 0; right: 0; height: 100dvh; width: 100%; max-width: 24rem;
	background: var(--color-background);
	box-shadow: var(--shadow-elevated);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 100;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
body.mobile-menu-open .theme-mobile-menu { transform: translateX(0); }
.theme-mobile-menu-close {
	position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem; border-radius: 999px; padding: 0.5rem;
	color: var(--color-foreground); opacity: 0.7;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}
.theme-mobile-menu-close:hover { opacity: 1; background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-mobile-menu__nav { padding: 4rem 1.5rem 2rem; }
.theme-mobile-menu__nav,
.theme-mobile-nav-list {
	display: flex !important;
	flex-direction: column !important;
	width: 100%;
}
.theme-mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.theme-mobile-nav-list li,
.theme-mobile-nav-list a {
	display: block !important;
	width: 100%;
}
.theme-mobile-nav-list a {
	padding: 1rem 0; border-bottom: 1px solid var(--color-border);
	font-size: 15px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.3s ease, transform 0.3s ease;
}
.theme-mobile-nav-list a:hover { color: var(--color-primary); transform: translateX(4px); }

/* ======================================================================
   HERO
   ====================================================================== */
.theme-no-hero .site-main { padding-top: var(--header-height); }

.hero-section {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #0e1b2a;
}
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(at center, rgba(18,32,48,0.35) 0%, rgba(18,32,48,0.6) 70%, rgba(18,32,48,0.72) 100%);
}
.hero-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-top: 8rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-top: 10rem; padding-bottom: 8rem; } }

.hero-section__badge-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem; border-radius: 999px;
	background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
	font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.85);
	backdrop-filter: blur(4px);
}
.hero-section__title {
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -0.015em;
	max-width: 64rem;
	margin: 0 auto;
	color: #fff;
	filter: drop-shadow(0 2px 20px rgba(0,0,0,0.45));
	font-size: clamp(2.75rem, 8vw, 6.5rem);
}

.hero-section__paragraph {
	margin: 2rem auto 0; max-width: 42rem;
	font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7;
	filter: drop-shadow(0 1px 10px rgba(0,0,0,0.4));
}
@media (min-width: 640px) { .hero-section__paragraph { font-size: 18px; } }

.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; } }

/* ======================================================================
   MARQUEE
   ====================================================================== */
.marquee-strip {
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	background: color-mix(in srgb, var(--color-secondary) 60%, transparent);
	padding: 1.25rem 0;
	overflow: hidden;
}
.marquee-strip__track {
	width: max-content;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	animation: marquee-scroll 45s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-strip__track { animation: none; } }
.marquee-strip__item { display: flex; align-items: center; gap: 2.5rem; white-space: nowrap; }
.marquee-strip__text { font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.marquee-strip__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--color-accent); flex-shrink: 0; }

/* ======================================================================
   SECTION HEADINGS (Section 2.2.5 — per-section scale)
   ====================================================================== */
.section-heading { color: var(--color-foreground); font-weight: 400; }

.about-section, .owner-section, .shop-section, .services-section { padding: 6rem 0; }
@media (min-width: 768px) { .about-section, .owner-section, .shop-section, .services-section { padding: 8rem 0; } }
.about-section { background-color: var(--color-secondary); }
.owner-section { background-color: var(--color-secondary); }
.amazon-cta-section { padding-bottom: 6rem; }
@media (min-width: 768px) { .amazon-cta-section { padding-bottom: 8rem; } }

.about-section__heading { font-size: 1.875rem; line-height: 1.12; }
@media (min-width: 768px) { .about-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 2.9rem; } }

.shop-heading, .services-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } .services-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.4rem; } }

.amazon-cta-card__heading { font-size: 1.875rem; line-height: 1.12; }
@media (min-width: 640px) { .amazon-cta-card__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .amazon-cta-card__heading { font-size: 2.9rem; } }

.owner-section__name { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .owner-section__name { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-section__name { font-size: 3.4rem; } }

.contact-title { font-size: 2.25rem; line-height: 1.08; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.6rem; } }

.contact-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }

/* ======================================================================
   ABOUT
   ====================================================================== */
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-section__col { display: flex; flex-direction: column; height: 100%; }
.about-section__eyebrow { font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
.about-section__body { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); flex: 1; }
@media (min-width: 768px) { .about-section__body { font-size: 16px; } }
.about-section__closing { margin-top: 2rem; font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-size: 1.125rem; }
@media (min-width: 768px) { .about-section__closing { font-size: 1.25rem; } }
.about-section__stats { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
@media (min-width: 640px) { .about-section__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.about-section__stat-value { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; line-height: 1.1; color: var(--color-foreground); }
@media (min-width: 768px) { .about-section__stat-value { font-size: 2.25rem; } }
.about-section__stat-label { margin-top: 0.5rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.about-section__stat-rule { margin-top: 0.75rem; display: block; height: 1px; width: 1.5rem; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); transition: width 0.5s ease, background 0.5s ease; }
.about-section__stat:hover .about-section__stat-rule { width: 4rem; background: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ======================================================================
   SHOP + PRODUCT CARD
   ====================================================================== */
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__head-text { max-width: 42rem; }
.shop-section__eyebrow { font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; font-weight: 500; }
.shop-section__paragraph { margin-top: 1.25rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 36rem; }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-section__search input {
	width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem; border-radius: 999px;
	background: var(--color-secondary); border: 1px solid var(--color-border);
	font-size: 15px; 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: var(--color-primary); }

.shop-section__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 3rem; }
.theme-cat-filter {
	padding: 0 1.25rem; height: 2.5rem; border-radius: 999px; font-size: 14px; font-weight: 500;
	border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
	background: transparent; color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.theme-cat-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cat-filter.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); }

.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	column-gap: 1.5rem;
	row-gap: 3rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .theme-product-grid { grid-template-columns: repeat(4, 1fr); } }
.theme-product-grid--related { row-gap: 2.5rem; }
@media (max-width: 767px) { .theme-product-grid--related { grid-template-columns: repeat(2, 1fr); } }

.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; min-width: 0; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 1; pointer-events: auto; }
.theme-product-card__image-wrapper { z-index: 2; }
.theme-product-card:hover .theme-product-card__image-wrapper .theme-product-card__img { transform: scale(1.03); }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	background: color-mix(in srgb, var(--color-secondary) 60%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}
.theme-product-card__image-wrapper::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
.theme-product-card:hover .theme-product-card__image-wrapper::after { opacity: 1; }
.theme-product-card__skeleton {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.theme-product-card:hover .theme-product-card__image-wrapper {
	border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
	box-shadow: var(--shadow-elevated);
	transform: translateY(-4px);
}
.theme-product-card__img { transition: transform 0.7s ease; }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 13px; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 999px;
}
.theme-product-card__hover-actions {
	position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 5;
	display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transition: opacity 0.5s ease;
	pointer-events: auto;
}
.theme-product-card:hover .theme-product-card__hover-actions { opacity: 1; }
.theme-product-card__add-btn {
	flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 2.5rem; border-radius: 999px;
	background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
	box-shadow: var(--shadow-soft);
	pointer-events: auto;
	position: relative;
	z-index: 5;
	transition: background-color 0.2s ease, transform 0.2s ease;
}
.theme-product-card__add-btn:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-product-card__quickview {
	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) 90%, transparent);
	color: var(--color-foreground); border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
	box-shadow: var(--shadow-soft);
	pointer-events: auto;
	position: relative;
	z-index: 5;
	flex-shrink: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.theme-product-card__quickview:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__info { display: flex; flex-direction: column; flex: 1; padding: 0 2px; }
.theme-product-card__cat { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 80%, transparent); margin-bottom: 0.375rem; }
.theme-product-card__title { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.3; color: var(--color-foreground); font-weight: 400; transition: color 0.2s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.15rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: auto; padding-top: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4rem; }
.theme-product-card__price ins { text-decoration: none; }

/* ======================================================================
   AMAZON CTA
   ====================================================================== */
.amazon-cta-card {
	position: relative; overflow: hidden; border-radius: 1rem;
	border: 1px solid var(--color-border); background: var(--color-card);
	box-shadow: var(--shadow-soft);
	transition: box-shadow 0.5s ease, border-color 0.5s ease;
	padding: 0;
}
.amazon-cta-card::before {
	content: '';
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 1px;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to right, transparent, color-mix(in srgb, var(--color-primary) 50%, transparent), transparent);
	opacity: 0;
	transition: opacity 0.7s ease;
}
.amazon-cta-card:hover::before { opacity: 1; }
.amazon-cta-card:hover { box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.amazon-cta-card__glow { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; }
.amazon-cta-card__grid { position: relative; display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .amazon-cta-card__grid { grid-template-columns: 1.15fr 0.85fr; } }
.amazon-cta-card__text { display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
@media (min-width: 640px) { .amazon-cta-card__text { padding: 3rem; } }
@media (min-width: 1024px) { .amazon-cta-card__text { padding: 4rem; } }
.amazon-cta-card__badge {
	display: inline-flex; width: fit-content; align-items: center; gap: 0.5rem;
	border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	background: color-mix(in srgb, var(--color-accent) 10%, transparent);
	padding: 0.375rem 1rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-accent);
	cursor: default;
	transition: background-color 0.5s ease, letter-spacing 0.5s ease;
}
.amazon-cta-card__badge:hover { background: color-mix(in srgb, var(--color-accent) 20%, transparent); letter-spacing: 0.28em; }
.amazon-cta-card__badge svg { width: 0.875rem; height: 0.875rem; transition: transform 0.5s ease; }
.amazon-cta-card:hover .amazon-cta-card__badge svg { transform: rotate(12deg); }
.amazon-cta-card__heading { margin-top: 1.5rem; }
.amazon-cta-card__paragraph { margin-top: 1.5rem; max-width: 36rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 768px) { .amazon-cta-card__paragraph { font-size: 16px; } }
.amazon-cta-card__chips { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.amazon-cta-card__chip { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.amazon-cta-card__btn {
	position: relative; overflow: hidden; margin-top: 2.5rem; display: inline-flex; width: fit-content; align-items: center; gap: 0.75rem;
	border-radius: 999px; background: var(--color-primary); padding: 1rem 2rem;
	font-size: 14px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary-foreground);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.amazon-cta-card__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-elevated); }
.amazon-cta-card__btn-fill { position: absolute; inset: 0; transform: translateY(100%); background: var(--color-accent); transition: transform 0.5s ease; }
.amazon-cta-card__btn:hover .amazon-cta-card__btn-fill { transform: translateY(0); }
.amazon-cta-card__btn-text, .amazon-cta-card__btn svg { position: relative; }
.amazon-cta-card__side { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--color-secondary); padding: 2.5rem; }
@media (min-width: 640px) { .amazon-cta-card__side { padding: 3rem; } }
.amazon-cta-card__side-bg { position: absolute; inset: 0; opacity: 0.6; transition: transform 1.2s ease; background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 60%), radial-gradient(circle at 75% 80%, color-mix(in srgb, var(--color-primary) 16%, transparent), transparent 60%); }
.amazon-cta-card:hover .amazon-cta-card__side-bg { transform: scale(1.1); }
.amazon-cta-card__side-content { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.amazon-cta-card__side-circle { position: relative; display: flex; height: 8rem; width: 8rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); background: var(--color-card); box-shadow: var(--shadow-soft); color: var(--color-primary); transition: transform 0.7s ease; }
@media (min-width: 640px) { .amazon-cta-card__side-circle { height: 10rem; width: 10rem; } }
.amazon-cta-card:hover .amazon-cta-card__side-circle { transform: scale(1.05); }
.amazon-cta-card:hover .amazon-cta-card__side-circle svg { transform: rotate(8deg); color: var(--color-accent); }
.amazon-cta-card__side-circle svg { width: 3.5rem; height: 3.5rem; transition: transform 0.7s ease, color 0.7s ease; }
@media (min-width: 640px) { .amazon-cta-card__side-circle svg { width: 4rem; height: 4rem; } }
.amazon-cta-card__side-ring1 {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	transition: transform 0.7s ease, opacity 0.7s ease;
}
.amazon-cta-card:hover .amazon-cta-card__side-ring1 { transform: scale(1.25); opacity: 0; }
.amazon-cta-card__side-ring2 {
	position: absolute;
	inset: -1rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	transition: transform 1s ease;
}
.amazon-cta-card:hover .amazon-cta-card__side-ring2 { transform: scale(1.1); }
.amazon-cta-card__side-title { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--color-foreground); transition: transform 0.5s ease; }
.amazon-cta-card:hover .amazon-cta-card__side-title { transform: translateY(-2px); }
.amazon-cta-card__side-sub { margin-top: 0.75rem; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.amazon-cta-card__side-rule { margin-top: 1.25rem; display: block; height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); transition: width 0.7s ease, background 0.7s ease; }
.amazon-cta-card:hover .amazon-cta-card__side-rule { width: 6rem; background: color-mix(in srgb, var(--color-primary) 60%, transparent); }

/* ======================================================================
   OWNER
   ====================================================================== */
.owner-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .owner-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.owner-section__image-col { position: relative; display: flex; }
.owner-section__blob { position: absolute; pointer-events: none; border-radius: 1rem; height: 7rem; width: 7rem; }
.owner-section__blob--1 { left: -0.75rem; top: -0.75rem; background: color-mix(in srgb, var(--color-accent) 20%, transparent); }
.owner-section__blob--2 { right: -0.75rem; bottom: -0.75rem; background: color-mix(in srgb, var(--color-primary) 15%, transparent); }
@media (min-width: 640px) { .owner-section__blob { height: 9rem; width: 9rem; } }
.owner-section__image-frame { position: relative; width: 100%; overflow: hidden; border-radius: 1rem; border: 1px solid var(--color-border); background: var(--color-card); box-shadow: var(--shadow-soft); min-height: 420px; transition: box-shadow 0.5s ease; }
.owner-section__image-frame:hover { box-shadow: var(--shadow-elevated); }
.owner-section__image { object-position: top; transition: transform 1.2s ease-out; }
.owner-section__image-frame:hover .owner-section__image { transform: scale(1.04); }
.owner-section__years-badge { position: absolute; bottom: 1.25rem; right: 1.25rem; border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-card); padding: 1rem 1.25rem; box-shadow: var(--shadow-soft); transition: transform 0.5s ease; }
.owner-section__image-frame:hover .owner-section__years-badge { transform: translateY(-4px); }
.owner-section__years-value { font-family: var(--font-display); font-size: 1.875rem; line-height: 1; color: var(--color-foreground); }
.owner-section__years-plus { color: var(--color-accent); }
.owner-section__years-label { margin-top: 0.5rem; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.owner-section__text-col { display: flex; height: 100%; flex-direction: column; }
.owner-section__badge {
	display: inline-flex; width: fit-content; align-items: center; border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); background: color-mix(in srgb, var(--color-accent) 10%, transparent);
	padding: 0.375rem 1rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-accent);
}
.owner-section__name { margin-top: 1.5rem; }
.owner-section__title { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.125rem; color: var(--color-primary); }
@media (min-width: 768px) { .owner-section__title { font-size: 1.25rem; } }
.owner-section__subtitle { margin-top: 0.5rem; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.owner-section__body { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); flex: 1; }
@media (min-width: 768px) { .owner-section__body { font-size: 16px; } }
.owner-section__roles { margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .owner-section__roles { grid-template-columns: 1fr 1fr; } }
.owner-section__role-chip { display: flex; align-items: center; gap: 0.75rem; border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-card); padding: 0.875rem 1rem; min-width: 0; transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease; }
.owner-section__role-chip:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.owner-section__role-icon { display: inline-flex; height: 2.25rem; width: 2.25rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 999px; background: color-mix(in srgb, var(--color-accent) 12%, transparent); color: var(--color-accent); }
.owner-section__role-chip p { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.owner-section__quote { margin-top: 2rem; border-left: 2px solid var(--color-accent); padding-left: 1.25rem; }
.owner-section__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
@media (min-width: 768px) { .owner-section__quote p { font-size: 1.25rem; } }
.owner-section__quote footer { margin-top: 0.75rem; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.owner-section__cta {
	margin-top: 2rem; display: inline-flex; width: fit-content; align-items: center; gap: 0.75rem;
	border-radius: 999px; background: var(--color-primary); padding: 1rem 2rem;
	font-size: 14px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary-foreground);
	transition: transform 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
}
.owner-section__cta:hover { transform: translateY(-2px); background-color: var(--color-accent); box-shadow: var(--shadow-elevated); }

/* ======================================================================
   SERVICES
   ====================================================================== */
.services-section__head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.services-section__eyebrow { font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; font-weight: 500; }
.services-section__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 767px) { .services-section__grid { grid-template-columns: 1fr; } }
.services-section__card {
	display: block; border-radius: 1rem; overflow: hidden; border: 1px solid var(--color-border);
	background: var(--color-secondary); transition: border-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}
.services-section__card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.services-section__card-image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.services-section__card-image { transition: transform 0.9s ease-out; }
.services-section__card:hover .services-section__card-image { transform: scale(1.06); }
.services-section__card-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 70%); opacity: 0.7; transition: opacity 0.5s ease; }
.services-section__card:hover .services-section__card-image-wrap::after { opacity: 0.9; }
.services-section__card-icon, .services-section__card-arrow {
	position: absolute; top: 1rem; z-index: 2;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(4px); transition: all 0.5s ease;
}
.services-section__card-icon { left: 1rem; width: 2.75rem; height: 2.75rem; color: var(--color-primary); }
.services-section__card-arrow { right: 1rem; width: 2.5rem; height: 2.5rem; color: var(--color-foreground); }
.services-section__card:hover .services-section__card-icon { background: var(--color-primary); color: var(--color-primary-foreground); transform: rotate(12deg); }
.services-section__card:hover .services-section__card-arrow { background: var(--color-primary); color: var(--color-primary-foreground); transform: translate(2px, -2px); }
.services-section__card-body { padding: 2rem; }
.services-section__card-title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 0.75rem; transition: color 0.3s ease; }
.services-section__card:hover .services-section__card-title { color: var(--color-primary); }
.services-section__card-desc { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.services-section__card-link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); font-weight: 500; }

/* ======================================================================
   CONTACT
   ====================================================================== */
.contact-section__hero { position: relative; overflow: hidden; min-height: 70vh; display: flex; align-items: center; }
@media (min-width: 768px) { .contact-section__hero { min-height: 80vh; } }
.contact-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-section__scrim { position: absolute; inset: 0; background: radial-gradient(at center, rgba(18,32,48,0.35) 0%, rgba(18,32,48,0.6) 70%, rgba(18,32,48,0.72) 100%); }
.contact-section__hero-content { position: relative; z-index: 10; padding-top: 6rem; padding-bottom: 6rem; text-align: center; }
@media (min-width: 768px) { .contact-section__hero-content { padding-top: 10rem; padding-bottom: 10rem; } }
.contact-section__eyebrow-top { font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1rem; font-weight: 500; }
.contact-title { color: #fff; max-width: 48rem; margin: 0 auto; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }
.contact-section__paragraph-top { margin-top: 1.5rem; max-width: 36rem; margin-inline: auto; font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; white-space: pre-line; }
@media (min-width: 768px) { .contact-section__paragraph-top { font-size: 16px; } }

.contact-section__form-wrap { padding: 4rem 0; }
@media (min-width: 768px) { .contact-section__form-wrap { padding: 6rem 0; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 4rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; }
.contact-section__eyebrow { font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; font-weight: 600; }
.contact-section__paragraph { margin-top: 1.5rem; max-width: 30rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin-bottom: 2.5rem; }
.contact-section__list { margin-top: auto; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-section__list-link { display: flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s ease; overflow-wrap: break-word; }
.contact-section__list-link:hover { color: var(--color-primary); }
.contact-section__list-icon { width: 3rem; height: 3rem; flex-shrink: 0; border-radius: 999px; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); display: inline-flex; align-items: center; justify-content: center; transition: background-color 0.2s ease, color 0.2s ease; }
.contact-section__list-link:hover .contact-section__list-icon { background: var(--color-accent); color: var(--color-accent-foreground); }
.contact-section__list-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__list-label { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__list-value { font-size: 15px; font-weight: 600; overflow-wrap: break-word; }

.contact-section__form {
	height: 100%; display: flex; flex-direction: column;
	background: var(--color-background); border: 1px solid var(--color-border); border-radius: 1rem;
	padding: 1.5rem; box-shadow: 0 18px 50px -30px color-mix(in srgb, var(--color-foreground) 35%, transparent);
}
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-fields { 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; } }
.theme-input {
	width: 100%; height: 3rem; padding: 0 1rem; background: var(--color-background);
	border: 1px solid var(--color-border); border-radius: var(--radius);
	font-size: 15px; color: var(--color-foreground); transition: border-color 0.2s ease;
}
.theme-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-input:focus { outline: none; border-color: var(--color-primary); }
.theme-textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-select-wrap { position: relative; }
.theme-select { appearance: none; padding-right: 2.5rem; }
.theme-select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__form-footer { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .contact-section__form-footer { flex-direction: row; } }
.contact-section__reply-note { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__submit { width: 100%; }
@media (min-width: 640px) { .contact-section__submit { width: auto; } }
.contact-section__submit-idle, .contact-section__submit-sent { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ======================================================================
   FOOTER
   ====================================================================== */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-background); }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 1.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 2rem; } }
.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, 1fr); gap: 3rem; } }
.site-footer__logo {
	display: block;
	height: 6rem;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: none;
	transition: transform 0.5s ease;
}
.site-footer__logo-link:hover .site-footer__logo { transform: scale(1.05); }
@media (min-width: 768px) { .site-footer__logo { height: 7rem; } }
.site-footer__tagline { margin-top: 1rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__col-title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 1rem; }
.theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-footer-nav-list a { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.theme-footer-nav-list a:hover { color: var(--color-primary); transform: translateX(4px); }
.site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 13px; }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 0.2s ease; white-space: nowrap; overflow-wrap: break-word; }
.site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__contact-icon { flex-shrink: 0; display: inline-flex; }
.site-footer__contact-note { margin-top: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.6; }
.site-footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: center; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { grid-template-columns: repeat(3, 1fr); } }
.site-footer__copyright { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); text-align: center; }
@media (min-width: 640px) { .site-footer__copyright { text-align: left; } }
.site-footer__totop-wrap { display: flex; justify-content: center; }
.site-footer__totop { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.site-footer__totop-circle { width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid var(--color-border); display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.site-footer__totop:hover .site-footer__totop-circle { border-color: var(--color-primary); transform: translateY(-4px); background: var(--color-primary); color: var(--color-primary-foreground); }
.site-footer__credit { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); text-align: center; }
@media (min-width: 640px) { .site-footer__credit { text-align: right; } }
.site-footer__credit a { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); text-underline-offset: 4px; }
.site-footer__credit a:hover { color: var(--color-primary); text-decoration: underline; }

/* ======================================================================
   404
   ====================================================================== */
.theme-404 { min-height: 70vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__eyebrow { font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; font-weight: 500; }
.theme-404__heading { font-size: 2.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .theme-404__heading { font-size: 3rem; } }
.theme-404__text { max-width: 28rem; margin: 0 auto 2rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-size: 1.1rem; }

/* ======================================================================
   CART DRAWER + OVERLAY (Section 12)
   ====================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 90;
	background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-background); z-index: 91;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.35s ease;
}
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 color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; transition: background-color 0.2s ease; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 15px; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-thumb { width: 5rem; height: 6rem; border-radius: 0.375rem; overflow: hidden; flex-shrink: 0; background: var(--color-muted); position: relative; }
.theme-cart-drawer__item-thumb img { width: 100% !important; height: 100% !important; object-fit: cover; position: absolute; inset: 0; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 15px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-price { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-drawer__item-variation { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-muted); }
.theme-cart-drawer__qty-value { font-size: 15px; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-secondary) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 15px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 2.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); border-radius: var(--radius); transition: color 0.2s ease, background-color 0.2s ease; }
.theme-cart-drawer__empty-btn:hover { color: var(--color-destructive); background: color-mix(in srgb, var(--color-destructive) 8%, transparent); }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart (Section 11.4.2) */
.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; }

/* ======================================================================
   WOOCOMMERCE: NOTICES (Section 14.1)
   ====================================================================== */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none; margin: 0 0 1.5rem; padding: 1rem 1.5rem; border-radius: var(--radius);
	background: var(--color-secondary); color: var(--color-foreground); font-size: 15px;
}
.woocommerce-error { background: color-mix(in srgb, var(--color-destructive) 10%, transparent); color: var(--color-destructive); }

/* ======================================================================
   WOOCOMMERCE: ADD TO CART BUTTON OVERRIDE (Section 11.4.1)
   ====================================================================== */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button — overrides global rules (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0 1rem !important;
	border-radius: 999px !important;
	font-size: 13px !important;
}

/* ======================================================================
   WOOCOMMERCE: SINGLE PRODUCT (Section 11.13)
   ====================================================================== */
.product-breadcrumb { padding: 1.5rem 0; font-size: 14px; letter-spacing: 0.18em; 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, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: calc(var(--header-height) + 1rem); } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1/1; width: 100%; background: var(--color-secondary); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.625rem; max-width: 100%; }
.theme-product-thumb { width: calc(20% - 0.5rem); aspect-ratio: 1/1; background: var(--color-secondary); border-radius: 0.375rem; overflow: hidden; border: 2px solid transparent; position: relative; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }

.theme-product-info__cat { font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.product-title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.05; margin-bottom: 1rem; }
@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-bottom: 1.75rem; }
.theme-quantity-label { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-quantity-block { margin-bottom: 1.5rem; }
.theme-product-info__price del { opacity: 0.5; margin-right: 0.5rem; font-size: 0.85em; }
.theme-product-info__stock { display: inline-block; margin-bottom: 1rem; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 13px; font-weight: 500; }
.theme-product-info__stock.is-out { background: color-mix(in srgb, var(--color-destructive) 12%, transparent); color: var(--color-destructive); }
.theme-product-info__description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 1rem; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px; }
.theme-qty-minus, .theme-qty-plus { padding: 0.625rem 1rem; transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 3rem; border: none; background: none; text-align: center; font-size: 15px; font-weight: 500; padding: 0.625rem 0; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-buy-now { flex: 1 1 auto; min-width: 160px; height: var(--btn-height); }

.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-title { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-info__details-body { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; }
.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, 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: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.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; gap: 1rem; }
.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); }
@media (min-width: 640px) { .related-products-section__view-all { display: inline-flex; } }
.related-products-section__view-all:hover { color: var(--color-primary); }

/* Variations — pills + labels */
.theme-variations { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.theme-variation { position: relative; }
.theme-variation__label {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0.625rem;
}
.theme-variation__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.theme-variation-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-variation-pill.is-active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-primary-foreground);
}
.theme-variation-select,
.theme-variation select,
.variations .theme-variation-select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none;
	overflow: hidden;
}
.reset_variations { display: none !important; }

.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; }
.variations label {
	font-family: var(--font-body);
	font-weight: 600;
	font-style: normal;
}

/* ======================================================================
   WOOCOMMERCE: SHOP ARCHIVE
   ====================================================================== */
.shop-archive { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 5rem; }
.shop-archive .page-title { margin-bottom: 2rem; }

/* ======================================================================
   WOOCOMMERCE: CHECKOUT BLOCK (Section 13)
   ====================================================================== */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: calc(var(--header-height) + 2rem);
	padding-bottom: 4rem;
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { margin-bottom: 2rem; }

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-textarea textarea,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-state-input select,
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout form.woocommerce-checkout select,
body.woocommerce-checkout form.woocommerce-checkout input[type="text"],
body.woocommerce-checkout form.woocommerce-checkout input[type="email"],
body.woocommerce-checkout form.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout form.woocommerce-checkout textarea {
	width: 100% !important;
	max-width: none !important;
	height: 3rem !important;
	background-color: var(--color-background) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	border-radius: var(--radius) !important;
	font-family: var(--font-body) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	color: var(--color-foreground) !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout form.woocommerce-checkout textarea {
	height: auto !important;
	min-height: 6rem !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder,
body.woocommerce-checkout form.woocommerce-checkout input::placeholder,
body.woocommerce-checkout form.woocommerce-checkout textarea::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 45%, transparent) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-checkout select:focus,
body.woocommerce-checkout form.woocommerce-checkout select:focus,
body.woocommerce-checkout form.woocommerce-checkout input:focus,
body.woocommerce-checkout form.woocommerce-checkout textarea:focus {
	border-color: var(--color-primary) !important;
	outline: none !important;
	box-shadow: none !important;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: var(--checkout-gap) !important;
		align-items: flex-start !important;
	}
	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-main,
	body.woocommerce-checkout .wc-block-components-sidebar {
		flex: 1 1 0 !important;
		min-width: 0 !important;
		width: auto !important;
		max-width: none !important;
		display: block !important;
		grid-template-columns: none !important;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

/* ======================================================================
   THANK YOU PAGE (Section 22.8)
   ====================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { max-width: 900px; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 1.5rem; margin: 0 auto 2rem;
	background: var(--color-secondary); border-radius: var(--card-radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page h2, body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display); font-size: 1.75rem; padding: 0 0 1rem 0; font-weight: 400;
}
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; font-style: normal; }

/* ======================================================================
   VARIATIONS (Sections 11.5.x — inert unless variable products exist)
   ====================================================================== */
.single_variation_wrap { margin-top: 1rem; }
