/* ═══════════════════════════════════════════════════════════════════════════
   She Thinks, He Inks — home.css
   Chrome (header / announcement / search / offcanvas / footer / newsletter) +
   homepage section styles. Layers on the tokens, base, buttons, .sthi-card,
   .sthi-badge, .sthi-price, .sthi-eyebrow and .sthi-section-head foundations in
   theme.css — references --sthi-* tokens only, never raw hex.

   Proportions are recomputed against the brand's 1440px canvas (the reference
   mockups are 4:3; values here are scaled to 1440, not copied pixel-for-pixel).
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-skip-link {
	position: absolute;
	left: 1rem;
	top: .5rem;
	z-index: 2000;
	background: var(--sthi-navy);
	color: #fff;
	padding: .6rem 1rem;
	border-radius: var(--sthi-radius);
	transform: translateY(-150%);
	transition: transform var(--sthi-transition);
}
.sthi-skip-link:focus { transform: translateY(0); color: #fff; }


/* ═══════════════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR  (base lives in theme.css; here: icons + dot)
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-announce__msg { display: inline-flex; align-items: center; gap: .45rem; }
.sthi-announce__msg .bi { font-size: .95em; }
.sthi-announce__dot { opacity: .6; }


/* ═══════════════════════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: color-mix(in srgb, var(--sthi-bg) 92%, #fff);
	border-bottom: 1px solid var(--sthi-border-subtle);
	backdrop-filter: saturate(1.1) blur(6px);
	transition: box-shadow var(--sthi-transition), background-color var(--sthi-transition);
}
.sthi-header.is-stuck {
	background: color-mix(in srgb, var(--sthi-bg) 97%, #fff);
	box-shadow: var(--sthi-shadow);
}

.sthi-nav {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-block: .75rem;
	flex-wrap: nowrap;
}

/* Brand / logo */
.sthi-logo { display: inline-flex; align-items: center; text-decoration: none; }
.sthi-logo__img { height: clamp(38px, 4vw, 52px); width: auto; }
.sthi-nav__brand { margin-right: auto; }

/* Two-tone text lockup fallback (until the wordmark image is supplied) */
.sthi-logo--text { flex-direction: column; line-height: .9; gap: 0; }
.sthi-logo__line {
	font-family: var(--sthi-font-script);
	font-weight: 700;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}
.sthi-logo__line--she { color: var(--sthi-brand); }
.sthi-logo__line--he  { color: var(--sthi-navy); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }

/* Primary menu */
.sthi-nav__menu { align-items: center; gap: .25rem; margin: 0 auto; }
.sthi-nav__menu .nav-link {
	font-weight: 700;
	color: var(--sthi-navy);
	padding: .5rem .9rem;
	border-radius: var(--sthi-radius-pill);
	position: relative;
	transition: color var(--sthi-transition-fast), background-color var(--sthi-transition-fast);
}
.sthi-nav__menu .nav-link:hover,
.sthi-nav__menu .nav-link:focus-visible { color: var(--sthi-brand); }
.sthi-nav__menu .nav-link.active { color: var(--sthi-brand); }
.sthi-nav__menu .nav-link.active::after {
	content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .2rem;
	height: 2px; border-radius: 2px; background: var(--sthi-brand);
}
.sthi-nav__has-dropdown .dropdown-toggle::after {
	border: 0; content: "\F229"; font-family: "bootstrap-icons";
	vertical-align: -.1em; margin-left: .15rem; font-size: .7em;
}

/* Dropdowns */
.sthi-dropdown {
	border: 1px solid var(--sthi-border);
	border-radius: var(--sthi-radius-lg);
	box-shadow: var(--sthi-shadow);
	padding: .5rem;
	margin-top: .5rem;
	background: var(--sthi-bg-tertiary);
	min-width: 230px;
}
.sthi-dropdown .dropdown-item {
	border-radius: var(--sthi-radius);
	padding: .55rem .8rem;
	font-weight: 600;
	color: var(--sthi-text);
}
.sthi-dropdown .dropdown-item:hover,
.sthi-dropdown .dropdown-item:focus {
	background: var(--sthi-brand-soft);
	color: var(--sthi-navy);
}
.sthi-dropdown__all { color: var(--sthi-brand) !important; font-weight: 800; }
.sthi-dropdown .dropdown-divider { border-color: var(--sthi-border); }

/* Right-side icon buttons */
.sthi-nav__actions { display: flex; align-items: center; gap: .35rem; }
.sthi-iconbtn {
	--sz: 44px;
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: var(--sz); height: var(--sz);
	border: 0; background: transparent;
	color: var(--sthi-navy);
	font-size: 1.2rem;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color var(--sthi-transition-fast), color var(--sthi-transition-fast);
}
.sthi-iconbtn:hover,
.sthi-iconbtn:focus-visible { background: var(--sthi-brand-soft); color: var(--sthi-brand); }

/* Cart badge — the .tc-cart-count class is the plugin's live-update hook */
.sthi-cart__count {
	position: absolute;
	top: 4px; right: 2px;
	min-width: 18px; height: 18px;
	padding: 0 5px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: .68rem; font-weight: 800; line-height: 1;
	color: #fff; background: var(--sthi-brand);
	border-radius: var(--sthi-radius-pill);
	box-shadow: 0 0 0 2px var(--sthi-bg);
}
.sthi-cart__count--pop { animation: sthi-cart-pop .4s var(--sthi-transition); }
@keyframes sthi-cart-pop {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.4); }
	100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.sthi-cart__count--pop { animation: none; }
}

/* Mobile toggler */
.sthi-nav__toggler {
	display: none;
	width: 44px; height: 44px;
	border: 0; background: transparent;
	color: var(--sthi-navy); font-size: 1.5rem;
	border-radius: 50%; cursor: pointer;
}
.sthi-nav__toggler:hover { background: var(--sthi-brand-soft); color: var(--sthi-brand); }

/* Search panel (desktop, collapsible) */
.sthi-search-panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height var(--sthi-transition);
	border-top: 1px solid transparent;
}
.sthi-search-panel.is-open {
	max-height: 120px;
	border-top-color: var(--sthi-border-subtle);
}
.sthi-search {
	display: flex; align-items: center; gap: .5rem;
	background: var(--sthi-bg-tertiary);
	border: 1px solid var(--sthi-border);
	border-radius: var(--sthi-radius-pill);
	padding: .4rem .4rem .4rem 1rem;
	margin-block: .9rem;
}
.sthi-search__icon { color: var(--sthi-text-tertiary); }
.sthi-search__input {
	flex: 1; border: 0; background: transparent; outline: none;
	font-family: var(--sthi-font); font-size: 1rem; color: var(--sthi-text);
	min-width: 0;
}
.sthi-search__submit { flex-shrink: 0; }
.sthi-search--mobile { margin-block: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   OFFCANVAS (mobile menu)
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-offcanvas { background: var(--sthi-bg); width: min(86vw, 380px); }
.sthi-offcanvas .offcanvas-header { border-bottom: 1px solid var(--sthi-border-subtle); }
.sthi-offcanvas__menu { list-style: none; margin: 0; padding: 0; }
.sthi-offcanvas__menu > li { border-bottom: 1px solid var(--sthi-border-subtle); }
.sthi-offcanvas__menu a {
	display: block; padding: .85rem .25rem;
	font-weight: 700; color: var(--sthi-navy);
}
.sthi-offcanvas__menu a:hover { color: var(--sthi-brand); }
.sthi-offcanvas__submenu { list-style: none; margin: 0 0 .5rem; padding: 0 0 0 1rem; }
.sthi-offcanvas__submenu a { padding: .5rem .25rem; font-weight: 600; color: var(--sthi-text-secondary); }
.sthi-offcanvas__actions { margin-top: 1.25rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   IMAGE PLACEHOLDER  (graceful art fallback — KI-2)
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-img-placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%;
	background:
		radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--sthi-brand) 8%, transparent), transparent 60%),
		radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--sthi-teal) 8%, transparent), transparent 60%),
		var(--sthi-bg-secondary);
	border: 1px dashed var(--sthi-border-strong);
	border-radius: var(--sthi-radius-lg);
	color: var(--sthi-text-tertiary);
	font-size: clamp(1.8rem, 4vw, 3rem);
}


/* ═══════════════════════════════════════════════════════════════════════════
   1 · HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(32px, 5vw, 72px);
	background:
		radial-gradient(60% 80% at 12% 18%, color-mix(in srgb, var(--sthi-brand) 8%, transparent), transparent 70%),
		radial-gradient(50% 70% at 88% 82%, color-mix(in srgb, var(--sthi-teal) 8%, transparent), transparent 70%),
		var(--sthi-bg);
}
.sthi-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}
.sthi-hero__splatter {
	position: absolute; border-radius: 50%; filter: blur(6px); opacity: .5;
	pointer-events: none;
}
.sthi-hero__splatter--1 { width: 220px; height: 220px; left: -60px; top: 40px;
	background: radial-gradient(circle, color-mix(in srgb, var(--sthi-gold) 35%, transparent), transparent 70%); }
.sthi-hero__splatter--2 { width: 260px; height: 260px; right: -70px; bottom: -40px;
	background: radial-gradient(circle, color-mix(in srgb, var(--sthi-brand) 22%, transparent), transparent 70%); }

.sthi-hero__content { position: relative; z-index: 1; }
.sthi-hero__wordmark { margin: 0 0 1rem; line-height: .85; }
.sthi-hero__wordmark-img { max-width: min(100%, 560px); height: auto; }
.sthi-hero__word { display: block; font-family: var(--sthi-font-script); font-weight: 700; }
.sthi-hero__word--she { color: var(--sthi-brand); font-size: clamp(3rem, 8vw, 6rem); }
.sthi-hero__word--he  {
	color: var(--sthi-navy); font-size: clamp(3rem, 8vw, 6rem);
	text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 4px;
}

.sthi-hero__tagline {
	display: inline-flex; align-items: center; gap: .5rem;
	background: var(--sthi-brand-soft);
	color: var(--sthi-navy);
	font-weight: 800;
	padding: .5rem 1.1rem;
	border-radius: var(--sthi-radius-pill);
	margin-bottom: 1rem;
}
.sthi-hero__tagline .bi { color: var(--sthi-brand); }
.sthi-hero__lead { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--sthi-text-secondary); max-width: 46ch; margin-bottom: 1.5rem; }
.sthi-hero__lead .sthi-text-teal,
.sthi-hero__lead .sthi-text-brand,
.sthi-hero__lead .sthi-text-navy { font-weight: 800; }

.sthi-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }

.sthi-hero__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem .75rem;
}
.sthi-feature { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.sthi-feature__icon {
	width: 46px; height: 46px; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; font-size: 1.25rem;
}
.sthi-feature__icon--pink { background: var(--sthi-brand-soft); color: var(--sthi-brand); }
.sthi-feature__icon--teal { background: color-mix(in srgb, var(--sthi-teal) 16%, #fff); color: var(--sthi-teal); }
.sthi-feature__icon--gold { background: color-mix(in srgb, var(--sthi-gold) 20%, #fff); color: color-mix(in srgb, var(--sthi-gold) 75%, var(--sthi-text)); }
.sthi-feature__icon--navy { background: color-mix(in srgb, var(--sthi-navy) 12%, #fff); color: var(--sthi-navy); }
.sthi-feature__title { font-weight: 700; font-size: .9rem; color: var(--sthi-text); line-height: 1.25; }
.sthi-feature__desc { font-size: .8rem; color: var(--sthi-text-tertiary); }

.sthi-hero__art { position: relative; z-index: 1; }
.sthi-hero__art-img {
	width: 100%; height: auto; object-fit: cover;
	border-radius: var(--sthi-radius-xl);
	box-shadow: var(--sthi-shadow-lg);
}

/* ── Full-width hero (IMAGE ONLY — whole image, contained, never cropped) ──
   The image's natural proportions define the hero height; an optional max-width
   (--sthi-hero-w) contains it and alignment (--sthi-hero-mi = margin-inline)
   positions it. No text/buttons in this layout. */
.sthi-hero--full { padding-block: 0; background: none; }
.sthi-hero--full .sthi-hero__full-media {
	max-width: var(--sthi-hero-w, 100%);
	margin-inline: var(--sthi-hero-mi, auto);
}
.sthi-hero--full .sthi-hero__full-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain; /* whole image, never cropped or distorted */
}


/* ═══════════════════════════════════════════════════════════════════════════
   2 · SHOP BY CATEGORY
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-cat-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(12px, 1.5vw, 22px);
}
.sthi-cat-card {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	gap: .65rem; padding: 1.5rem 1rem 1.25rem;
	text-decoration: none; color: var(--sthi-navy);
}
.sthi-cat-card__thumb {
	width: clamp(72px, 8vw, 104px); height: clamp(72px, 8vw, 104px);
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.sthi-cat-card--pink .sthi-cat-card__thumb { background: var(--sthi-brand-soft); color: var(--sthi-brand); }
.sthi-cat-card--teal .sthi-cat-card__thumb { background: color-mix(in srgb, var(--sthi-teal) 16%, #fff); color: var(--sthi-teal); }
.sthi-cat-card--gold .sthi-cat-card__thumb { background: color-mix(in srgb, var(--sthi-gold) 22%, #fff); color: color-mix(in srgb, var(--sthi-gold) 78%, var(--sthi-text)); }
.sthi-cat-card--navy .sthi-cat-card__thumb { background: color-mix(in srgb, var(--sthi-navy) 12%, #fff); color: var(--sthi-navy); }
.sthi-cat-card__name { font-weight: 800; font-size: 1.05rem; }
.sthi-cat-card__browse { font-size: .85rem; font-weight: 700; color: var(--sthi-brand); display: inline-flex; align-items: center; gap: .25rem; }
.sthi-cat-card:hover .sthi-cat-card__browse { gap: .5rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   3 · FEATURED PRODUCTS  (cards + Swiper)
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.5vw, 24px);
}
.sthi-product-card { display: flex; flex-direction: column; height: 100%; }
.sthi-product-card__media { position: relative; }
.sthi-product-card__imglink { display: block; }
.sthi-product-card__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.sthi-product-card__badges { position: absolute; top: .6rem; left: .6rem; display: flex; flex-direction: column; gap: .35rem; }
.sthi-product-card__body { display: flex; flex-direction: column; gap: .4rem; padding: 1rem; flex: 1; }
.sthi-product-card__brand { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--sthi-text-tertiary); }
.sthi-product-card__title { font-size: 1rem; font-weight: 700; line-height: 1.3; margin: 0; }
.sthi-product-card__title a { color: var(--sthi-navy); }
.sthi-product-card__title a:hover { color: var(--sthi-brand); }
.sthi-product-card__pricerow { display: flex; align-items: baseline; gap: .5rem; margin-top: auto; }
.sthi-price__was { color: var(--sthi-text-tertiary); text-decoration: line-through; font-size: .85rem; }
.sthi-product-card__action { margin-top: .65rem; }
.sthi-product-card--placeholder .sthi-product-card__title { color: var(--sthi-text-tertiary); }

/* Swiper */
.sthi-swiper { position: relative; padding-bottom: 2.75rem; }
.sthi-swiper .swiper-slide { height: auto; }
.sthi-swiper .swiper-slide .sthi-product-card { height: 100%; }
.sthi-swiper__pagination { bottom: 0 !important; }
.sthi-swiper .swiper-pagination-bullet { background: var(--sthi-border-strong); opacity: 1; }
.sthi-swiper .swiper-pagination-bullet-active { background: var(--sthi-brand); }
.sthi-swiper__nav {
	position: absolute; top: 40%; z-index: 5;
	width: 44px; height: 44px; border: 0; border-radius: 50%;
	background: var(--sthi-bg-tertiary); color: var(--sthi-navy);
	box-shadow: var(--sthi-shadow); cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background-color var(--sthi-transition-fast), color var(--sthi-transition-fast);
}
.sthi-swiper__nav:hover { background: var(--sthi-brand); color: #fff; }
.sthi-swiper__nav--prev { left: -10px; }
.sthi-swiper__nav--next { right: -10px; }
.sthi-swiper__nav.swiper-button-disabled { opacity: .4; cursor: default; }


/* ═══════════════════════════════════════════════════════════════════════════
   4 · OUR PROCESS
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-process {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
}
.sthi-step {
	display: flex; gap: 1rem; align-items: flex-start;
	background: var(--sthi-bg-tertiary);
	border: 1px solid var(--sthi-border);
	border-radius: var(--sthi-radius-lg);
	box-shadow: var(--sthi-shadow-sm);
	padding: 1.5rem;
	height: 100%;
}
.sthi-step__num {
	flex-shrink: 0;
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; font-weight: 900; font-size: 1.25rem; color: #fff;
}
.sthi-step__num--pink { background: var(--sthi-brand); }
.sthi-step__num--navy { background: var(--sthi-navy); }
.sthi-step__num--gold { background: var(--sthi-gold); color: var(--sthi-navy); }
.sthi-step__num--teal { background: var(--sthi-teal); }
.sthi-step__title { display: flex; align-items: center; gap: .4rem; margin: 0 0 .35rem; color: var(--sthi-navy); }
.sthi-step__icon { color: var(--sthi-gold); }
.sthi-step__desc { margin: 0; color: var(--sthi-text-secondary); font-size: .95rem; }
.sthi-process__arrow { color: var(--sthi-border-strong); font-size: 1.5rem; display: flex; justify-content: center; }


/* ═══════════════════════════════════════════════════════════════════════════
   5 · MEET THE DUO
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-duo {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}
.sthi-duo__art-img {
	width: 100%; height: auto; object-fit: cover;
	transform: rotate(-2deg);
}
.sthi-duo__body .sthi-section-head { text-align: left; margin-bottom: 1rem; }
.sthi-duo__body .sthi-section-head .sthi-eyebrow::before { display: none; }
.sthi-duo__body p { color: var(--sthi-text-secondary); }
.sthi-duo__values {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.75rem;
}
.sthi-valueprop { display: flex; gap: .85rem; align-items: flex-start; }
.sthi-valueprop__icon {
	flex-shrink: 0; width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; font-size: 1.1rem;
}
.sthi-valueprop__icon--pink { background: var(--sthi-brand-soft); color: var(--sthi-brand); }
.sthi-valueprop__icon--teal { background: color-mix(in srgb, var(--sthi-teal) 16%, #fff); color: var(--sthi-teal); }
.sthi-valueprop__icon--gold { background: color-mix(in srgb, var(--sthi-gold) 22%, #fff); color: color-mix(in srgb, var(--sthi-gold) 78%, var(--sthi-text)); }
.sthi-valueprop__icon--navy { background: color-mix(in srgb, var(--sthi-navy) 12%, #fff); color: var(--sthi-navy); }
.sthi-valueprop__title { margin: 0 0 .15rem; color: var(--sthi-navy); }
.sthi-valueprop__desc { margin: 0; font-size: .85rem; color: var(--sthi-text-secondary); line-height: 1.45; }


/* ═══════════════════════════════════════════════════════════════════════════
   6 · TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-testimonials {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
}
.sthi-testimonial { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.sthi-stars { font-size: 1rem; display: inline-flex; gap: 2px; }
.sthi-testimonial__quote { margin: 0; font-size: 1.02rem; color: var(--sthi-text); font-style: italic; line-height: 1.6; }
.sthi-testimonial__author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.sthi-testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.sthi-testimonial__avatar .sthi-img-placeholder,
.sthi-testimonial__avatar-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; font-size: 1.1rem; border-style: solid; }
.sthi-testimonial__name { font-weight: 800; color: var(--sthi-navy); font-size: .95rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER BAND  (teal, just above the footer)
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-newsletter {
	background:
		radial-gradient(70% 120% at 10% 0%, color-mix(in srgb, var(--sthi-teal) 86%, #fff) 0%, transparent 60%),
		var(--sthi-teal);
	color: #fff;
	padding-block: clamp(36px, 5vw, 64px);
}
.sthi-newsletter__inner {
	display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 40px);
}
.sthi-newsletter__body { text-align: center; max-width: 640px; flex: 1; }
.sthi-newsletter__title { color: #fff; font-family: var(--sthi-font-script); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .35rem; }
.sthi-newsletter__sub { color: color-mix(in srgb, #fff 90%, var(--sthi-teal)); margin-bottom: 1.25rem; }
.sthi-newsletter__form {
	display: flex; gap: .5rem;
	background: #fff;
	border-radius: var(--sthi-radius-pill);
	padding: .4rem .4rem .4rem 1.25rem;
	max-width: 480px; margin: 0 auto;
	box-shadow: var(--sthi-shadow);
}
.sthi-newsletter__input {
	flex: 1; border: 0; outline: none; background: transparent;
	font-family: var(--sthi-font); font-size: 1rem; color: var(--sthi-text); min-width: 0;
}
.sthi-newsletter__submit { flex-shrink: 0; white-space: nowrap; }
.sthi-newsletter__msg { margin: .9rem 0 0; font-weight: 700; min-height: 1.2em; }
.sthi-newsletter__msg.is-error { color: #FFE3E0; }
.sthi-newsletter__msg.is-success { color: #fff; }
.sthi-newsletter__deco { font-size: clamp(2rem, 5vw, 4rem); opacity: .9; color: color-mix(in srgb, #fff 85%, var(--sthi-teal)); }
.sthi-newsletter__deco--right { display: inline-flex; flex-direction: column; gap: .25rem; }
.sthi-newsletter__deco--right .bi:last-child { font-size: .6em; align-self: flex-end; }


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.sthi-footer { background: var(--sthi-bg); padding-block: clamp(40px, 5vw, 72px) 1.5rem; border-top: 1px solid var(--sthi-border-subtle); }
.sthi-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
	gap: clamp(20px, 3vw, 48px);
	align-items: start;
}
.sthi-footer__logo { margin-bottom: 1rem; }
.sthi-footer__tagline { color: var(--sthi-text-secondary); font-size: .92rem; max-width: 32ch; }
.sthi-footer__heading { font-size: 1rem; font-weight: 800; color: var(--sthi-navy); margin-bottom: 1rem; }
.sthi-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.sthi-footer__menu a { color: var(--sthi-text-secondary); font-size: .92rem; }
.sthi-footer__menu a:hover { color: var(--sthi-brand); }

/* Socials */
.sthi-socials { list-style: none; display: flex; gap: .5rem; padding: 0; margin: 1.25rem 0 0; }
.sthi-socials__link {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--sthi-bg-secondary);
	color: var(--sthi-navy);
	transition: background-color var(--sthi-transition-fast), color var(--sthi-transition-fast), transform var(--sthi-transition-fast);
}
.sthi-socials__link:hover { background: var(--sthi-brand); color: #fff; transform: translateY(-2px); }

/* Thanks bubble */
.sthi-footer__thanks { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.sthi-thanks-bubble {
	position: relative;
	background: var(--sthi-bg-tertiary);
	border: 2px dashed var(--sthi-teal);
	border-radius: var(--sthi-radius-xl);
	padding: 1.1rem 1.4rem;
	max-width: 200px; text-align: center;
}
.sthi-thanks-bubble::after {
	content: ""; position: absolute; left: 30px; bottom: -12px;
	border-width: 12px 12px 0; border-style: solid;
	border-color: var(--sthi-teal) transparent transparent;
}
.sthi-thanks-bubble__text { color: var(--sthi-teal); font-size: 1.5rem; line-height: 1.1; display: block; }
.sthi-footer__plant { font-size: 1.75rem; color: var(--sthi-teal); }

/* Legal row */
.sthi-footer__legal {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem 1.5rem;
	margin-top: 2.5rem; padding-top: 1.25rem;
	border-top: 1px solid var(--sthi-border-subtle);
}
.sthi-footer__copy { margin: 0; color: var(--sthi-text-tertiary); font-size: .85rem; }
.sthi-footer__legal-links { list-style: none; display: flex; gap: 1.5rem; padding: 0; margin: 0; }
.sthi-footer__legal-links a { color: var(--sthi-text-tertiary); font-size: .85rem; }
.sthi-footer__legal-links a:hover { color: var(--sthi-brand); }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ≤ 1200px — tighten 5-up category row + 4-up products */
@media (max-width: 1199.98px) {
	.sthi-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
	.sthi-footer__thanks { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; margin-top: .5rem; }
}

/* ≤ 992px — collapse nav to offcanvas */
@media (max-width: 991.98px) {
	.sthi-nav__toggler { display: inline-flex; order: 3; }
	.sthi-nav__actions { order: 2; margin-left: auto; }
	.sthi-nav__brand { order: 1; }
	.sthi-hero__grid { grid-template-columns: 1fr; text-align: center; }
	.sthi-hero__content { order: 2; }
	.sthi-hero__art { order: 1; max-width: 520px; margin: 0 auto; }
	.sthi-hero__tagline,
	.sthi-hero__cta { justify-content: center; }
	.sthi-hero__lead { margin-inline: auto; }
	.sthi-hero__features { max-width: 640px; margin-inline: auto; }
	.sthi-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sthi-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sthi-process { grid-template-columns: 1fr; }
	.sthi-process__arrow { transform: rotate(90deg); }
	.sthi-duo { grid-template-columns: 1fr; }
	.sthi-duo__art { max-width: 520px; margin: 0 auto; }
	.sthi-duo__body .sthi-section-head { text-align: center; }
	.sthi-testimonials { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
	.sthi-footer__grid { grid-template-columns: 1fr 1fr; }
	.sthi-newsletter__deco { display: none; }
}

/* ≤ 576px */
@media (max-width: 575.98px) {
	.sthi-hero__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sthi-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sthi-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sthi-hero__cta .btn { width: 100%; justify-content: center; }
	.sthi-newsletter__form { flex-direction: column; padding: .75rem; border-radius: var(--sthi-radius-lg); }
	.sthi-newsletter__input { text-align: center; padding: .5rem; }
	.sthi-footer__grid { grid-template-columns: 1fr; }
	.sthi-footer__legal { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.sthi-socials__link:hover { transform: none; }
	.sthi-search-panel { transition: none; }
}
