/* ===== Design tokens ===== */
:root {
	--gs-ink: #0A0A0A;
	--gs-white: #FFFFFF;
	--gs-warm-white: #F7F7F2;
	--gs-surface: #F1F2ED;
	--gs-line: #E3E4DE;
	--gs-muted: #6D706A;
	--gs-green: #2DBE5B;
	--gs-green-dark: #187A39;
	--gs-aqua: #78D8CE;
	--gs-pink: #EC3B88;
	--gs-yellow: #D8F027;
	--gs-error: #C62828;
	--gs-success: #18833B;
	--gs-graphite: #2B2E2C;

	--gs-font: 'Manrope', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--gs-max: 1440px;
	--gs-content: 1280px;
	--gs-text: 680px;
	--gs-pad: clamp(20px, 4vw, 72px);

	--gs-radius-lg: 28px;
	--gs-radius-md: 20px;
	--gs-radius-pill: 999px;
	--gs-radius-sm: 12px;

	--gs-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--gs-shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.05);
	--gs-shadow-md: 0 12px 32px rgba(10, 10, 10, 0.08);
	--gs-shadow-lg: 0 24px 64px rgba(10, 10, 10, 0.12);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; font-family: var(--gs-font); color: var(--gs-ink); background: var(--gs-white); font-variant-numeric: tabular-nums; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ===== Layout ===== */
.gs-container { max-width: var(--gs-content); margin-inline: auto; padding-inline: var(--gs-pad); }
.gs-container--narrow { max-width: var(--gs-text); }
.gs-section { padding-block: clamp(48px, 8vw, 120px); }
.gs-prose { max-width: var(--gs-text); }
.gs-prose img { border-radius: var(--gs-radius-md); }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

.gs-skip-link { position: absolute; left: -9999px; top: 0; background: var(--gs-ink); color: var(--gs-white); padding: 12px 20px; z-index: 1000; border-radius: 0 0 8px 0; }
.gs-skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gs-green-dark); outline-offset: 2px; }

.gs-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gs-muted); margin-bottom: 1em; }

/* ===== Buttons ===== */
.gs-button { display: inline-flex; align-items: center; justify-content: center; gap: 0.5em; padding: 1em 2em; border-radius: var(--gs-radius-pill); font-weight: 700; font-size: 0.95rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform 0.3s var(--gs-ease), background-color 0.3s var(--gs-ease), border-color 0.3s var(--gs-ease), box-shadow 0.3s var(--gs-ease); min-height: 46px; }
.gs-button--primary { background: var(--gs-ink); color: var(--gs-white); box-shadow: var(--gs-shadow-sm); }
.gs-button--primary:hover { background: var(--gs-green-dark); transform: translateY(-2px); box-shadow: var(--gs-shadow-md); }
.gs-button--ghost { background: transparent; color: var(--gs-ink); border-color: var(--gs-ink); }
.gs-button--ghost:hover { background: var(--gs-ink); color: var(--gs-white); transform: translateY(-2px); box-shadow: var(--gs-shadow-md); }
.gs-link-arrow { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; min-height: 44px; transition: opacity 0.25s var(--gs-ease); }
.gs-link-arrow:hover { opacity: 0.6; }

/* ===== Header ===== */
.gs-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--gs-line); }
.gs-header__inner { max-width: var(--gs-max); margin-inline: auto; padding: 16px var(--gs-pad); display: flex; align-items: center; gap: 24px; }
.gs-header__logo img { height: 24px; width: auto; }
.gs-header__nav { margin-left: auto; }
.gs-nav { display: flex; gap: 32px; }
.gs-nav a { font-size: 0.92rem; font-weight: 600; text-decoration: none; transition: opacity 0.25s var(--gs-ease); }
.gs-nav a:hover { opacity: 0.6; }
.gs-header__actions { display: flex; align-items: center; gap: 8px; }
.gs-icon-button { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; transition: background-color 0.25s var(--gs-ease); }
.gs-icon-button:hover { background: var(--gs-surface); }
.gs-cart-count { position: absolute; top: 2px; right: 2px; background: var(--gs-green); color: var(--gs-white); font-size: 0.65rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.gs-menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: transparent; border: none; }
.gs-mobile-menu { display: none; }

@media (max-width: 900px) {
	.gs-header__nav { display: none; }
	.gs-menu-toggle { display: inline-flex; }
	.gs-mobile-menu { position: fixed; inset: 0; top: 62px; background: var(--gs-white); z-index: 99; padding: 32px var(--gs-pad); }
	.gs-mobile-menu[hidden] { display: none; }
	.gs-mobile-menu:not([hidden]) { display: block; }
	.gs-nav--mobile { display: flex; flex-direction: column; gap: 24px; font-size: 1.4rem; }
}

/* ===== Hero ===== */
.gs-hero { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 80px) clamp(56px, 9vw, 110px); }
.gs-hero__glow { position: absolute; inset: -20% -10% auto -10%; height: 760px; background: radial-gradient(60% 60% at 50% 20%, rgba(45,190,91,0.13), transparent 70%); pointer-events: none; z-index: 0; }
.gs-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.gs-hero__headline { font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1; margin-bottom: 0.4em; }
.gs-hero__supporting { font-size: clamp(1.1rem, 1.4vw, 1.3rem); color: var(--gs-muted); max-width: 46ch; margin-bottom: 1.4em; line-height: 1.55; }
.gs-hero__price { font-size: 1.7rem; font-weight: 700; margin-bottom: 1.5em; }
.gs-hero__actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 2.5em; }
.gs-trust-strip { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.gs-trust-strip li { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.85rem; color: var(--gs-muted); }
.gs-trust-strip li svg { color: var(--gs-green-dark); flex-shrink: 0; width: 18px; height: 18px; }
.gs-hero__media { display: flex; justify-content: center; align-items: center; padding: clamp(20px, 4vw, 56px); position: relative; }
.gs-hero__media::before { content: ''; position: absolute; inset: 8%; background: radial-gradient(closest-side, rgba(45,190,91,0.08), transparent 75%); border-radius: 50%; z-index: -1; }
.gs-hero__media img { max-width: min(100%, 480px); border-radius: var(--gs-radius-lg); transition: transform 0.5s var(--gs-ease); filter: drop-shadow(0 26px 36px rgba(10,10,10,0.09)); }
.gs-hero__media:hover img { transform: translateY(-6px) scale(1.02); }

@media (max-width: 900px) {
	.gs-hero__inner { grid-template-columns: 1fr; text-align: center; }
	.gs-hero__actions { justify-content: center; }
	.gs-trust-strip { justify-content: center; }
}

/* ===== Value statement ===== */
.gs-value-statement { padding-block: clamp(80px, 12vw, 160px); text-align: center; }
.gs-value-statement h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.06; margin-bottom: 0.65em; }
.gs-value-statement p { font-size: clamp(1.1rem, 1.5vw, 1.35rem); color: var(--gs-muted); }

/* ===== Selector ===== */
#gs-why-glass, #gs-features, #gs-reviews, #gs-faq { scroll-margin-top: 90px; }
.gs-selector { background: var(--gs-warm-white); padding-block: clamp(56px, 9vw, 110px); scroll-margin-top: 90px; }
.gs-selector__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.gs-selector__media { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--gs-surface), var(--gs-warm-white)); border-radius: var(--gs-radius-lg); padding: clamp(16px, 3.5vw, 32px); overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }
.gs-selector__image { position: absolute; max-width: 94%; max-height: 94%; width: auto; height: auto; opacity: 0; transition: opacity 0.4s var(--gs-ease), transform 0.4s var(--gs-ease); filter: drop-shadow(0 24px 32px rgba(10,10,10,0.1)); }
.gs-selector__image.is-active { opacity: 1; position: relative; }
.gs-selector__media:hover .gs-selector__image.is-active { transform: scale(1.03); }
.gs-selector__color-name { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 0.2em; }
.gs-selector__lid { color: var(--gs-muted); margin-bottom: 0.9em; }
.gs-selector__price { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5em; }

.gs-swatches { border: none; padding: 0; margin: 0 0 2em; display: flex; flex-wrap: wrap; gap: 12px; }
.gs-swatch { display: flex; align-items: center; gap: 8px; padding: 8px 14px 8px 8px; border-radius: var(--gs-radius-pill); border: 1.5px solid var(--gs-line); cursor: pointer; transition: border-color 0.25s var(--gs-ease), box-shadow 0.25s var(--gs-ease), transform 0.25s var(--gs-ease); background: var(--gs-white); }
.gs-swatch:hover { transform: translateY(-1px); box-shadow: var(--gs-shadow-sm); }
.gs-swatch:has(input:checked) { border-color: var(--gs-ink); box-shadow: var(--gs-shadow-sm); }
.gs-swatch:has(input:focus-visible) { outline: 2px solid var(--gs-green-dark); outline-offset: 2px; }
.gs-swatch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.gs-swatch__swatch { width: 24px; height: 24px; border-radius: 50%; background: var(--swatch-color); border: 1px solid rgba(0,0,0,0.1); flex-shrink: 0; }
.gs-swatch__label { font-size: 0.85rem; font-weight: 600; }
.gs-swatch:has(input:disabled) { opacity: 0.4; cursor: not-allowed; }

.gs-selector__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 1.1em; }
.gs-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--gs-line); border-radius: var(--gs-radius-pill); overflow: hidden; }
.gs-qty__btn { width: 40px; height: 46px; background: transparent; border: none; font-size: 1.1rem; cursor: pointer; transition: background-color 0.2s var(--gs-ease); }
.gs-qty__btn:hover { background: var(--gs-surface); }
.gs-qty input { width: 44px; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 1rem; -moz-appearance: textfield; }
.gs-qty input::-webkit-outer-spin-button, .gs-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.gs-selector__status:empty { display: none; }
.gs-selector__stock { color: var(--gs-success); font-size: 0.85rem; margin-bottom: 0.6em; }
.gs-selector__shipping-notice { color: var(--gs-muted); font-size: 0.85rem; margin-bottom: 0.6em; }
.gs-selector__confirmation { background: var(--gs-white); box-shadow: var(--gs-shadow-sm); padding: 0.9em 1.2em; border-radius: var(--gs-radius-sm); font-size: 0.9rem; }
.gs-selector__confirmation a { text-decoration: underline; font-weight: 700; }

@media (max-width: 900px) {
	.gs-selector__inner { grid-template-columns: 1fr; }
}

/* ===== Why glass ===== */
.gs-why-glass { padding-block: clamp(80px, 10vw, 150px); }
.gs-why-glass__layout { display: grid; grid-template-columns: 1fr auto; gap: clamp(40px, 6vw, 96px); align-items: center; }
.gs-why-glass__intro { max-width: var(--gs-text); margin-bottom: 3.5em; }
.gs-why-glass__intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 0.65em; }
.gs-why-glass__media img { max-width: 420px; filter: drop-shadow(0 24px 32px rgba(10,10,10,0.09)); }
@media (max-width: 900px) { .gs-why-glass__layout { grid-template-columns: 1fr; } .gs-why-glass__media { order: -1; max-width: 260px; margin-inline: auto; } .gs-why-glass__media img { max-width: 100%; } }
.gs-check-list li { display: flex; align-items: flex-start; gap: 0.7em; margin-bottom: 0.8em; font-size: 1.08rem; }
.gs-check-list li svg { color: var(--gs-green-dark); flex-shrink: 0; margin-top: 0.15em; width: 20px; height: 20px; }
.gs-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gs-compare__col { padding: clamp(28px, 3.5vw, 44px); border-radius: var(--gs-radius-md); background: var(--gs-surface); box-shadow: var(--gs-shadow-sm); transition: box-shadow 0.3s var(--gs-ease), transform 0.3s var(--gs-ease); }
.gs-compare__col:hover { box-shadow: var(--gs-shadow-md); transform: translateY(-3px); }
.gs-compare__col--gs { background: var(--gs-ink); color: var(--gs-white); }
.gs-compare__col h3 { margin-bottom: 0.5em; }
@media (max-width: 700px) { .gs-compare { grid-template-columns: 1fr; } }

/* ===== Numbers ===== */
.gs-numbers { padding-block: clamp(56px, 9vw, 120px); background: var(--gs-ink); color: var(--gs-white); }
.gs-numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 4vw, 56px); text-align: center; }
.gs-numbers__item { display: flex; flex-direction: column; align-items: center; gap: 0.4em; }
.gs-numbers__icon { color: rgba(255,255,255,0.55); margin-bottom: 0.3em; }
.gs-numbers__value { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; line-height: 1; }
.gs-numbers__label { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
@media (max-width: 700px) { .gs-numbers__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Product detail / hotspots ===== */
.gs-product-detail { padding-block: clamp(80px, 10vw, 150px); text-align: center; }
.gs-product-detail h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 0 auto 3.5em; max-width: 20ch; }
.gs-product-detail__figure { position: relative; max-width: 480px; margin-inline: auto; }
.gs-product-detail__figure img { filter: drop-shadow(0 26px 36px rgba(10,10,10,0.09)); }
.gs-hotspots { position: absolute; inset: 0; }
.gs-hotspot { position: absolute; transform: translate(-50%, -50%); text-align: left; }
.gs-hotspot__dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gs-white); border: 2px solid var(--gs-green-dark); cursor: pointer; position: relative; box-shadow: var(--gs-shadow-sm); transition: transform 0.25s var(--gs-ease); }
.gs-hotspot__dot:hover { transform: scale(1.15); }
.gs-hotspot__dot::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--gs-green-dark); }
.gs-hotspot__label { position: absolute; top: 50%; transform: translateY(-50%); white-space: nowrap; font-size: 0.8rem; font-weight: 600; background: var(--gs-white); padding: 7px 14px; border-radius: var(--gs-radius-pill); box-shadow: var(--gs-shadow-md); opacity: 0; pointer-events: none; transition: opacity 0.25s var(--gs-ease); }
.gs-hotspot--right .gs-hotspot__label { left: calc(100% + 14px); }
.gs-hotspot--left .gs-hotspot__label { right: calc(100% + 14px); }
.gs-hotspot:hover .gs-hotspot__label, .gs-hotspot__dot:focus-visible + .gs-hotspot__label, .gs-hotspot.is-active .gs-hotspot__label { opacity: 1; }
@media (max-width: 640px) {
	.gs-hotspot__label { position: static; opacity: 1; transform: none; display: inline-block; margin-top: 6px; box-shadow: none; padding: 2px 0; background: transparent; }
	.gs-hotspot { position: static; transform: none; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
	.gs-hotspots { position: static; display: block; margin-top: 24px; text-align: left; }
}

/* ===== Feature story ===== */
.gs-feature-story { padding-block: clamp(80px, 10vw, 150px); background: var(--gs-surface); }
.gs-feature-story__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; }
.gs-feature-story__item { text-align: left; }
.gs-feature-story__icon { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gs-white); color: var(--gs-green-dark); margin-bottom: 1.1em; box-shadow: var(--gs-shadow-sm); transition: box-shadow 0.3s var(--gs-ease), transform 0.3s var(--gs-ease); }
.gs-feature-story__item:hover .gs-feature-story__icon { box-shadow: var(--gs-shadow-md); transform: translateY(-3px); }
.gs-feature-story__item h3 { font-size: 1.12rem; margin-bottom: 0.45em; }
.gs-feature-story__item p { color: var(--gs-muted); font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 900px) { .gs-feature-story__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gs-feature-story__grid { grid-template-columns: 1fr; } }

/* ===== Lifestyle ===== */
.gs-lifestyle { padding-block: clamp(80px, 10vw, 150px); }
.gs-lifestyle__inner { display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.gs-lifestyle__media img { border-radius: 50%; max-width: 360px; margin-inline: auto; transition: transform 0.5s var(--gs-ease); box-shadow: var(--gs-shadow-lg); }
.gs-lifestyle__media:hover img { transform: scale(1.03); }
.gs-lifestyle__copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 0.55em; }
.gs-lifestyle__copy p { font-size: 1.15rem; color: var(--gs-muted); max-width: 40ch; line-height: 1.6; }
@media (max-width: 800px) { .gs-lifestyle__inner { grid-template-columns: 1fr; text-align: center; } }

/* ===== How to use ===== */
.gs-how-to-use { padding-block: clamp(80px, 10vw, 150px); text-align: center; }
.gs-how-to-use__steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 56px); margin-top: 3em; }
.gs-how-to-use__step { display: flex; flex-direction: column; align-items: center; }
.gs-how-to-use__icon { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gs-surface); color: var(--gs-green-dark); margin-bottom: 1.2em; box-shadow: var(--gs-shadow-sm); transition: box-shadow 0.3s var(--gs-ease), transform 0.3s var(--gs-ease); }
.gs-how-to-use__step:hover .gs-how-to-use__icon { box-shadow: var(--gs-shadow-md); transform: translateY(-3px); }
.gs-how-to-use__number { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gs-muted); margin-bottom: 0.6em; }
.gs-how-to-use__step h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.gs-how-to-use__step p { color: var(--gs-muted); font-size: 0.95rem; }
.gs-how-to-use__line { grid-column: 1 / -1; height: 2px; background: var(--gs-line); position: relative; order: 99; margin-top: 0.5em; }
.gs-how-to-use__line-fill { position: absolute; inset: 0; width: 0; background: var(--gs-green); transition: width 1.2s var(--gs-ease); }
.gs-how-to-use.is-in-view .gs-how-to-use__line-fill { width: 100%; }
@media (max-width: 700px) { .gs-how-to-use__steps { grid-template-columns: 1fr; } .gs-how-to-use__line { display: none; } }

/* ===== Reviews ===== */
.gs-reviews { padding-block: clamp(80px, 10vw, 150px); background: var(--gs-warm-white); }
.gs-carousel { max-width: var(--gs-text); margin-inline: auto; text-align: center; }
.gs-carousel__track { min-height: 170px; display: flex; align-items: center; justify-content: center; }
.gs-carousel__slide p { font-size: clamp(1.25rem, 2.3vw, 1.7rem); line-height: 1.45; margin-bottom: 0.8em; }
.gs-carousel__slide cite { font-style: normal; font-weight: 700; color: var(--gs-muted); }
.gs-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 1.6em; }
.gs-carousel__btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gs-line); background: var(--gs-white); cursor: pointer; transition: box-shadow 0.25s var(--gs-ease), transform 0.25s var(--gs-ease); }
.gs-carousel__btn:hover { box-shadow: var(--gs-shadow-sm); transform: translateY(-2px); }
.gs-carousel__dots { display: flex; gap: 8px; }
.gs-carousel__dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: var(--gs-line); border: none; cursor: pointer; transition: background-color 0.25s var(--gs-ease); }
.gs-carousel__dot.is-active { background: var(--gs-ink); }

/* ===== FAQ / accordion ===== */
.gs-faq { padding-block: clamp(80px, 10vw, 150px); }
.gs-accordion__item { border-bottom: 1px solid var(--gs-line); transition: border-color 0.25s var(--gs-ease); }
.gs-accordion__heading { margin: 0; }
.gs-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 1.6em 0.25em; margin: 0 -0.25em; background: none; border: none; text-align: left; font-size: 1.1rem; font-weight: 700; cursor: pointer; border-radius: var(--gs-radius-sm); transition: background-color 0.25s var(--gs-ease); }
.gs-accordion__trigger:hover { background: var(--gs-surface); }
.gs-accordion__icon { width: 32px; height: 32px; flex-shrink: 0; position: relative; border-radius: 50%; background: var(--gs-surface); transition: background-color 0.25s var(--gs-ease); }
.gs-accordion__trigger:hover .gs-accordion__icon { background: var(--gs-white); box-shadow: var(--gs-shadow-sm); }
.gs-accordion__icon::before, .gs-accordion__icon::after { content: ''; position: absolute; background: var(--gs-ink); top: 50%; left: 50%; }
.gs-accordion__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.gs-accordion__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); transition: transform 0.35s var(--gs-ease); }
.gs-accordion__trigger[aria-expanded="true"] .gs-accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.gs-accordion__panel { padding: 0 0.25em 1.6em; color: var(--gs-muted); max-width: var(--gs-text); line-height: 1.65; font-size: 1rem; }
.gs-accordion__panel:not([hidden]) { animation: gs-accordion-open 0.35s var(--gs-ease); }
@keyframes gs-accordion-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Final CTA ===== */
.gs-final-cta { padding-block: clamp(80px, 12vw, 160px); background: var(--gs-ink); color: var(--gs-white); }
.gs-final-cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.gs-final-cta__copy h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 0.55em; }
.gs-final-cta__copy p { color: rgba(255,255,255,0.68); font-size: 1.15rem; margin-bottom: 2em; max-width: 40ch; line-height: 1.6; }
.gs-final-cta .gs-button--primary { background: var(--gs-white); color: var(--gs-ink); }
.gs-final-cta .gs-button--primary:hover { background: var(--gs-green); color: var(--gs-white); }
.gs-final-cta__media { position: relative; }
.gs-final-cta__media::before { content: ''; position: absolute; inset: 10%; background: radial-gradient(closest-side, rgba(255,255,255,0.10), transparent 75%); border-radius: 50%; z-index: 0; }
.gs-final-cta__media img { position: relative; z-index: 1; max-width: min(100%, 480px); margin-inline: auto; transition: transform 0.5s var(--gs-ease); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)); }
.gs-final-cta__media:hover img { transform: scale(1.02); }
@media (max-width: 800px) { .gs-final-cta__inner { grid-template-columns: 1fr; text-align: center; } .gs-final-cta__media img { margin-top: 24px; } }

/* ===== Footer ===== */
.gs-footer { background: var(--gs-surface); padding-top: clamp(48px, 6vw, 80px); }
.gs-footer__inner { max-width: var(--gs-content); margin-inline: auto; padding-inline: var(--gs-pad); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.gs-footer__brand p { color: var(--gs-muted); margin-block: 1em; max-width: 32ch; }
.gs-footer__social { display: flex; gap: 16px; }
.gs-footer__social a { font-size: 0.85rem; font-weight: 700; text-decoration: underline; }
.gs-footer-nav { display: flex; flex-direction: column; gap: 10px; }
.gs-footer-nav a { text-decoration: none; font-size: 0.92rem; }
.gs-footer-nav a:hover { text-decoration: underline; }
.gs-footer__contact p { margin-bottom: 0.5em; font-size: 0.92rem; }
.gs-footer__bottom { border-top: 1px solid var(--gs-line); padding: 20px var(--gs-pad); text-align: center; font-size: 0.8rem; color: var(--gs-muted); }
@media (max-width: 700px) { .gs-footer__inner { grid-template-columns: 1fr; text-align: center; } .gs-footer__social { justify-content: center; } }

/* ===== Scroll reveal ===== */
.gs-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--gs-ease), transform 0.7s var(--gs-ease); }
.gs-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Sticky mobile add-to-cart (single product page) ===== */
.gs-sticky-atc { display: none; }
@media (max-width: 700px) {
	.gs-sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--gs-white); border-top: 1px solid var(--gs-line); padding: 12px var(--gs-pad); display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: 0 -8px 24px rgba(10,10,10,0.06); }
}

/* ===== Generic page / post content ===== */
.gs-page-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.8em; }
.gs-page-content { line-height: 1.7; }
.gs-page-content p { margin-bottom: 1.2em; }

/* =====================================================================
   WooCommerce: Cart & Checkout blocks (WooCommerce 8.3+ default pages)
   ===================================================================== */
.gs-woocommerce-wrap, .gs-page-content { --wc-gap: clamp(24px, 4vw, 48px); }

.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { font-family: var(--gs-font); }

.wc-block-components-sidebar-layout { display: grid !important; grid-template-columns: 1.6fr 1fr; gap: var(--wc-gap); align-items: start; }
.wc-block-components-main { min-width: 0; }
.wc-block-components-sidebar { background: var(--gs-warm-white); border-radius: var(--gs-radius-md); padding: clamp(20px, 3vw, 32px); }
@media (max-width: 800px) { .wc-block-components-sidebar-layout { grid-template-columns: 1fr; } }

.wc-block-cart-items { width: 100%; border-collapse: collapse; }
.wc-block-cart-items__header th { text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gs-muted); padding-bottom: 16px; border-bottom: 1px solid var(--gs-line); font-weight: 700; }
.wc-block-cart-items__row td { padding-block: 20px; border-bottom: 1px solid var(--gs-line); vertical-align: top; }
.wc-block-cart-item__image img { border-radius: var(--gs-radius-sm); background: var(--gs-surface); }
.wc-block-components-product-name { font-weight: 700; text-decoration: none; }
.wc-block-components-product-metadata__description p { color: var(--gs-muted); font-size: 0.9rem; margin: 0.3em 0; }
.wc-block-components-product-details__color { font-size: 0.85rem; color: var(--gs-muted); }

.wc-block-components-quantity-selector { border: 1.5px solid var(--gs-line); border-radius: var(--gs-radius-pill); overflow: hidden; display: inline-flex; }
.wc-block-components-quantity-selector__button, .wc-block-components-quantity-selector__input { border: none; background: transparent; }

.wc-block-components-totals-item__value, .wc-block-components-totals-item__label { font-weight: 600; }
.wc-block-cart__totals-title, .wc-block-components-title { font-family: var(--gs-font); }

.wc-block-cart__submit-container a,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button,
.wp-block-woocommerce-proceed-to-checkout-block a {
	background: var(--gs-ink) !important; color: var(--gs-white) !important; border-radius: var(--gs-radius-pill) !important;
	font-weight: 700 !important; border: none !important; padding: 0.9em 1.75em !important; min-height: 44px;
	transition: background-color 0.3s var(--gs-ease), transform 0.3s var(--gs-ease) !important;
}
.wc-block-cart__submit-container a:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:hover { background: var(--gs-green-dark) !important; transform: translateY(-2px); }

.wc-block-components-checkout-step { border-bottom: 1px solid var(--gs-line); padding-block: clamp(20px, 3vw, 32px); }
.wc-block-components-checkout-step__title { font-size: 1.2rem; }
.wc-block-components-text-input input,
.wc-block-components-address-form input,
.wc-block-checkout__form input[type="text"],
.wc-block-checkout__form input[type="email"],
.wc-block-checkout__form input[type="tel"],
select.wc-block-components-select-input__select {
	border-radius: var(--gs-radius-sm) !important; border: 1.5px solid var(--gs-line) !important; min-height: 48px !important;
	font-family: var(--gs-font);
}
.wc-block-components-text-input input:focus, .wc-block-components-address-form input:focus { border-color: var(--gs-ink) !important; }
.wc-block-components-radio-control__option { border-radius: var(--gs-radius-sm); border: 1.5px solid var(--gs-line); padding: 12px 16px; margin-bottom: 8px; }
.wc-block-components-radio-control__option--checked { border-color: var(--gs-ink); }

.wc-block-components-notice-banner { border-radius: var(--gs-radius-sm); }

/* =====================================================================
   WooCommerce: My Account (classic templates)
   ===================================================================== */
.woocommerce-form-row { margin-bottom: 1em; }
.woocommerce-form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4em; }
.woocommerce-Input, input.input-text, textarea.input-text { width: 100%; padding: 0.75em 1em; border: 1.5px solid var(--gs-line); border-radius: var(--gs-radius-sm); font-family: var(--gs-font); font-size: 1rem; min-height: 44px; }
.woocommerce-Input:focus { border-color: var(--gs-ink); }
.woocommerce-button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	display: inline-flex; align-items: center; justify-content: center; background: var(--gs-ink); color: var(--gs-white) !important;
	border-radius: var(--gs-radius-pill); font-weight: 700; padding: 0.85em 1.75em; border: none; text-decoration: none; min-height: 44px; cursor: pointer;
	transition: background-color 0.3s var(--gs-ease), transform 0.3s var(--gs-ease);
}
.woocommerce-button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--gs-green-dark); transform: translateY(-2px); }

.woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 4px; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 0.6em 1em; border-radius: var(--gs-radius-sm); text-decoration: none; font-weight: 600; }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--gs-surface); }
.woocommerce-MyAccount-navigation-link--customer-logout a { color: var(--gs-error); }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 700px) { .woocommerce-account .woocommerce { grid-template-columns: 1fr; } }

.woocommerce-orders-table { width: 100%; border-collapse: collapse; }
.woocommerce-orders-table th { text-align: left; font-size: 0.8rem; text-transform: uppercase; color: var(--gs-muted); border-bottom: 1px solid var(--gs-line); padding-bottom: 12px; }
.woocommerce-orders-table td { padding-block: 14px; border-bottom: 1px solid var(--gs-line); }

.woocommerce-message, .woocommerce-error, .woocommerce-info, .woocommerce-notices-wrapper .woocommerce-message {
	border-radius: var(--gs-radius-sm); border-left: 4px solid var(--gs-success); background: var(--gs-surface); padding: 1em 1.2em; list-style: none;
}
.woocommerce-error { border-left-color: var(--gs-error); }
.woocommerce-info { border-left-color: var(--gs-muted); }
