/* ==========================================================================
   Groziomedicina — pagrindinis stilius (v2, pagal kliento maketus).
   Kreminis fonas, šalavijo žalia + koralinė, pastelinės kortelės, line ikonos.
   ========================================================================== */

/* „Klinikinės ramybės" paletė (brandbook 7 sk.). Kontrastai patikrinti WCAG:
   tekstas — Clinical Ink / Deep Moss; Sage TIK dekorui; CTA — Terracotta Deep. */
:root {
	--bg: #F7F3EC;      /* Warm Ivory */
	--bg-2: #F1ECE2;    /* gilesnis ivory sekcijoms */
	--card: #FFFDF9;    /* Pure Canvas */
	--ink: #26332D;     /* Clinical Ink */
	--text: #26332D;
	--muted: #596655;   /* Deep Moss — antrinis tekstas (AA) */
	--line: #DED7CC;    /* Warm Line */

	--coral: #A0563C;        /* Terracotta Deep — CTA (balta 5.4:1) */
	--coral-dark: #8E4A32;   /* hover */
	--coral-soft: #F1E1D9;   /* Soft Blush */
	--accent: #B6674A;       /* gryna Terracotta — tik dideliam tekstui/dekorui */
	--sage: #596655;         /* Deep Moss — antriniai mygtukai (balta 6.1:1) */
	--sage-dark: #596655;    /* nuorodos, akcentai tekste */
	--sage-soft: #E7EBE2;
	--sage-deco: #AAB4A4;    /* tikroji Sage — TIK fonams/linijos/dekorui */
	--olive: #26332D;        /* tamsios sekcijos, poraštė */

	/* Pritildytos kortelių tonacijos */
	--tint-green: #E9EDE3;
	--tint-rose: #F1E1D9;
	--tint-peach: #F3E7DA;
	--tint-sand: #F2EDE1;
	--tint-gray: #E7EAE4;

	--ok: #3F6D55;
	--danger: #A4493D;
	--radius: 12px;
	--radius-s: 8px;
	--shadow: 0 12px 30px rgba(38, 51, 45, 0.1);
	--shadow-s: 0 2px 10px rgba(38, 51, 45, 0.06);
	--serif: 'Newsreader', Georgia, 'Times New Roman', serif;
	--sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
	--tr: 0.22s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ---------- Bazė ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 15.5px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.12;
	letter-spacing: 0.005em;
}
h1 { font-size: clamp(40px, 5vw, 56px); line-height: 1.1; }
h2 { font-size: clamp(32px, 3.5vw, 40px); line-height: 1.2; }
h3 { font-size: clamp(24px, 2.5vw, 28px); line-height: 1.28; }
h1 em, h2 em { font-style: italic; color: var(--sage-dark); }
::selection { background: var(--coral-soft); color: var(--ink); }

.gm-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gm-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- Mygtukai ---------- */
.gm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	background: var(--coral);
	color: #fff;
	font-family: var(--sans);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	border: 1px solid var(--coral);
	border-radius: 10px;
	cursor: pointer;
	transition: background var(--tr), border-color var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.gm-btn:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-s); }
.gm-btn--sage { background: var(--sage); border-color: var(--sage); }
.gm-btn--sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.gm-btn--ghost { background: transparent; color: var(--ink); border-color: rgba(47, 43, 34, 0.3); }
.gm-btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.gm-btn--sm { padding: 9px 18px; font-size: 12.5px; }
.gm-btn svg { width: 15px; height: 15px; }

.gm-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid var(--coral);
	padding-bottom: 3px;
	transition: color var(--tr), border-color var(--tr);
}
.gm-link:hover { color: var(--coral-dark); border-color: var(--ink); }

/* ---------- Informacinė juosta ---------- */
.gm-topbar {
	background: var(--ink);
	color: var(--bg);
	font-size: 12.5px;
	text-align: center;
	padding: 8px 16px;
}
.gm-topbar a { color: var(--bg); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.gm-topbar a:hover { color: var(--coral-soft); }

/* ---------- Antraštė ---------- */
.gm-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(246, 242, 234, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.gm-header__in {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}
.gm-logo { display: block; line-height: 1.05; }
.gm-logo b {
	display: block;
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	white-space: nowrap;
}
.gm-logo span {
	display: block;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 3px;
}
.gm-logo__dot { display: inline-block !important; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-left: 5px; vertical-align: 2px; }
.gm-nav ul { display: flex; gap: 24px; list-style: none; align-items: center; }
.gm-nav a {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	padding: 6px 0;
	border-bottom: 1px solid transparent;
}
.gm-nav a:hover, .gm-nav .current-menu-item > a { color: var(--sage-dark); border-color: var(--sage); }
.gm-header__tools { display: flex; align-items: center; gap: 16px; }
.gm-cart-link { position: relative; display: inline-flex; color: var(--ink); }
.gm-cart-link svg { width: 21px; height: 21px; }
.gm-cart-link .gm-cart-n {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--coral);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}
.gm-burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; position: relative; }
.gm-burger i, .gm-burger i::before, .gm-burger i::after {
	content: '';
	position: absolute;
	left: 8px;
	width: 24px;
	height: 2px;
	background: var(--ink);
	transition: transform var(--tr), opacity var(--tr);
}
.gm-burger i { top: 19px; }
.gm-burger i::before { left: 0; top: -7px; }
.gm-burger i::after { left: 0; top: 7px; }
body.gm-nav-open .gm-burger i { background: transparent; }
body.gm-nav-open .gm-burger i::before { transform: translateY(7px) rotate(45deg); }
body.gm-nav-open .gm-burger i::after { transform: translateY(-7px) rotate(-45deg); }

/* Paieška antraštėje */
.gm-search-toggle { background: none; border: 0; cursor: pointer; color: var(--ink); display: inline-flex; padding: 4px; }
.gm-search-toggle svg { width: 20px; height: 20px; }
.gm-search-bar { display: none; border-top: 1px solid var(--line); background: var(--card); }
.gm-search-bar.is-open { display: block; }
.gm-search-bar form { max-width: 720px; margin: 0 auto; padding: 14px 24px; display: flex; gap: 10px; }
.gm-search-bar input[type='search'] {
	flex: 1;
	padding: 11px 16px;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-family: var(--sans);
	font-size: 15px;
	background: var(--bg);
}
.gm-search-bar input:focus { outline: none; border-color: var(--sage); }

/* ---------- Pasitikėjimo juosta ---------- */
.gm-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gm-trust__item { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.gm-trust__item svg { flex: none; width: 22px; height: 22px; color: var(--sage-dark); margin-top: 2px; }
.gm-trust__item b { display: block; font-size: 13.5px; color: var(--ink); }
.gm-trust__item small { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

/* ---------- Principų sąrašas („Kaip atrenku") ---------- */
.gm-principles { display: grid; gap: 14px; }
.gm-principle { display: flex; gap: 14px; align-items: flex-start; }
.gm-principle span {
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--sage-soft);
	color: var(--sage-dark);
	font-family: var(--serif);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gm-principle p { font-size: 14.5px; margin: 0; }
.gm-principle b { color: var(--ink); }

/* ---------- Sekcijos ---------- */
.gm-section { padding: clamp(48px, 8vw, 96px) 0; }
.gm-section--alt { background: var(--bg-2); }
.gm-section--white { background: var(--card); }
.gm-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 16px;
}
.gm-kicker svg { width: 17px; height: 17px; color: var(--sage-dark); flex: none; }
.gm-kicker--muted { color: var(--muted); }
.gm-section__head { max-width: 720px; margin-bottom: clamp(26px, 4vw, 44px); }
.gm-section__head p { margin-top: 12px; font-size: 16px; }
.gm-section__bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(24px, 4vw, 40px); }
.gm-section__foot { margin-top: 36px; text-align: center; }

/* ---------- Kortelės (bendra) ---------- */
.gm-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.gm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* Pastelinės tonacijos (kortelėms suteikiama .gm-tint-N) */
.gm-tint-0 { background: var(--tint-green); border-color: transparent; }
.gm-tint-1 { background: var(--tint-rose); border-color: transparent; }
.gm-tint-2 { background: var(--tint-peach); border-color: transparent; }
.gm-tint-3 { background: var(--tint-sand); border-color: transparent; }
.gm-tint-4 { background: var(--tint-gray); border-color: transparent; }

/* Žymų lusteliai */
.gm-tag {
	display: inline-block;
	padding: 4px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	background: var(--sage-soft);
	color: var(--sage-dark);
}
.gm-tag--rose { background: var(--tint-rose); color: #a06a55; }
.gm-tag--sand { background: var(--tint-sand); color: #8a7a4e; }

/* ---------- Formos ---------- */
.gm-form { display: grid; gap: 16px; }
.gm-form label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); display: block; margin-bottom: 6px; }
.gm-form input[type='text'],
.gm-form input[type='email'],
.gm-form input[type='tel'],
.gm-form textarea {
	width: 100%;
	padding: 13px 16px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	font-family: var(--sans);
	font-size: 15px;
	color: var(--ink);
	transition: border-color var(--tr), box-shadow var(--tr);
}
.gm-form input:focus, .gm-form textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(127, 134, 99, 0.15); }
.gm-form textarea { min-height: 140px; resize: vertical; }
.gm-form .gm-hp { position: absolute; left: -9999px; }
.gm-notice { padding: 14px 18px; border-radius: var(--radius-s); font-size: 14.5px; }
.gm-notice--ok { background: var(--sage-soft); color: var(--sage-dark); }
.gm-notice--err { background: #f5e8e4; color: var(--danger); }

/* ---------- Hero (visų puslapių) ---------- */
.gm-hero {
	position: relative;
	overflow: hidden;
	background: var(--bg-2);
}
.gm-hero__in {
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(40px, 6vw, 80px) 24px;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(24px, 5vw, 64px);
	align-items: center;
	min-height: min(66vh, 640px);
}
.gm-hero__txt { display: grid; gap: 18px; justify-items: start; }
.gm-hero__txt h1 { text-wrap: balance; }
.gm-hero__txt .gm-sub { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.gm-hero__txt p { font-size: 16.5px; max-width: 460px; }
.gm-hero__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; height: 100%; }
.gm-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gm-hero__ph {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 20% 15%, #EFEBE0 0%, transparent 55%),
		radial-gradient(110% 100% at 85% 30%, #C4CBBD 0%, transparent 60%),
		linear-gradient(160deg, #DDE0D5 0%, #AAB4A4 55%, #74806E 100%);
}
.gm-hero--flat { background: transparent; }
.gm-hero--flat .gm-hero__in { min-height: 0; padding-bottom: clamp(24px, 4vw, 48px); }

/* ---------- Home: CTA sąrašas ---------- */
.gm-cta-stack { display: grid; gap: 12px; }
.gm-cta {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 22px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	transition: transform var(--tr), box-shadow var(--tr);
}
.gm-cta:hover { transform: translateY(-2px) translateX(2px); box-shadow: var(--shadow-s); }
.gm-cta__ic {
	flex: none;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: rgba(255, 253, 248, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
}
.gm-cta__ic svg { width: 22px; height: 22px; }
.gm-cta__tx { flex: 1; min-width: 0; }
.gm-cta__tx b { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.gm-cta__tx small { display: block; font-size: 13px; color: var(--text); margin-top: 2px; }
.gm-cta__arrow { flex: none; color: var(--ink); font-size: 18px; transition: transform var(--tr); }
.gm-cta:hover .gm-cta__arrow { transform: translateX(4px); }

/* ---------- Home: straipsnių sąrašas ---------- */
.gm-post-list { display: grid; gap: 14px; }
.gm-post-row {
	display: flex;
	gap: 18px;
	align-items: center;
	padding: 14px;
}
.gm-post-row__img { flex: none; width: 108px; height: 84px; border-radius: var(--radius-s); overflow: hidden; background: var(--bg-2); position: relative; }
.gm-post-row__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gm-post-row__tx { flex: 1; min-width: 0; display: grid; gap: 4px; }
.gm-post-row__meta { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-dark); }
.gm-post-row h3 { font-size: 19px; }
.gm-post-row h3 a { color: var(--ink); }
.gm-post-row h3 a:hover { color: var(--sage-dark); }
.gm-read { font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); white-space: nowrap; }

/* Straipsnių tinklelis (archyvas) */
.gm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gm-post-card { display: flex; flex-direction: column; }
.gm-post-card__img { aspect-ratio: 16 / 10; background: var(--bg-2); display: block; }
.gm-post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.gm-post-card__body { padding: 20px 22px 24px; display: grid; gap: 9px; }
.gm-post-card__meta { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-dark); }
.gm-post-card h3 { font-size: 20px; }
.gm-post-card h3 a { color: var(--ink); }
.gm-post-card p { font-size: 14px; }

/* ---------- Video kortelės ---------- */
.gm-video-card { position: relative; display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--line); transition: transform var(--tr), box-shadow var(--tr); }
.gm-video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gm-video-card__media { position: relative; aspect-ratio: 16 / 9; background: var(--olive); overflow: hidden; }
.gm-video-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.94; transition: transform var(--tr); }
.gm-video-card:hover .gm-video-card__media img { transform: scale(1.04); }
.gm-video-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gm-video-card__play span {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 253, 248, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--tr), background var(--tr);
}
.gm-video-card:hover .gm-video-card__play span { transform: scale(1.1); background: var(--coral); color: #fff; }
.gm-video-card__play svg { width: 17px; height: 17px; margin-left: 3px; }
.gm-video-card__body { padding: 16px 18px 18px; display: grid; gap: 8px; }
.gm-video-card__kicker { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.gm-video-card__body h3 { font-family: var(--sans); font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--ink); }
.gm-video-card__body .gm-read { font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); }

/* ---------- Ingredientų checker ---------- */
.gm-checker {
	border-radius: var(--radius);
	background: var(--tint-green);
	padding: clamp(26px, 4vw, 44px);
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(22px, 4vw, 48px);
	align-items: center;
}
.gm-checker__form { display: grid; gap: 14px; }
.gm-checker textarea {
	width: 100%;
	min-height: 96px;
	padding: 14px 16px;
	border: 1px solid rgba(47, 43, 34, 0.15);
	border-radius: var(--radius-s);
	background: var(--card);
	font-family: var(--sans);
	font-size: 14.5px;
	resize: vertical;
}
.gm-checker textarea:focus { outline: none; border-color: var(--sage); }
.gm-checker__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gm-checker__note { font-size: 13px; color: var(--text); }
.gm-checker__art { border-radius: var(--radius); overflow: hidden; min-height: 220px; position: relative; }
.gm-checker__art .gm-hero__ph { border-radius: var(--radius); }

/* Checker rezultatai */
.gm-check-results { margin-top: 26px; display: grid; gap: 16px; }
.gm-check-summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.gm-check-summary b { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 8px; }
.gm-check-summary p { font-size: 15px; }
.gm-check-warns { background: var(--tint-peach); border-radius: var(--radius-s); padding: 14px 20px; display: grid; gap: 6px; font-size: 14px; color: #8a6242; }
.gm-check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gm-check-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: grid; gap: 8px; align-content: start; }
.gm-check-item__top b { display: block; font-size: 15px; color: var(--ink); }
.gm-check-item__top small { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.gm-check-item p { font-size: 13.5px; }
.gm-check-item__flags { display: flex; flex-wrap: wrap; gap: 6px; }
.gm-check-flag { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; background: var(--bg-2); color: var(--text); }
.gm-check-flag.is-good { background: var(--sage-soft); color: var(--sage-dark); }
.gm-check-flag.is-warn { background: var(--tint-peach); color: #8a6242; }
.gm-check-flag.is-bad { background: #f5e0da; color: var(--danger); }
@media (max-width: 1020px) { .gm-check-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .gm-check-grid { grid-template-columns: 1fr; } }

/* ---------- Rekomendacijų greitosios nuorodos ---------- */
.gm-quicklinks { display: flex; flex-wrap: wrap; gap: 10px; }
.gm-quicklink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--card);
	border: 1px solid var(--line);
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.gm-quicklink:hover { border-color: var(--sage); background: var(--sage-soft); transform: translateY(-1px); color: var(--ink); }

/* ---------- Citata ---------- */
.gm-quote {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
	display: grid;
	gap: 14px;
	justify-items: center;
}
.gm-quote__mark { font-family: var(--serif); font-size: 64px; line-height: 0.5; color: var(--coral); margin-top: 20px; }
.gm-quote p { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 26px); font-style: italic; color: var(--ink); line-height: 1.4; }
.gm-quote cite { font-size: 12px; font-weight: 700; font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Kolegoms blokas (home) ---------- */
.gm-split {
	border-radius: var(--radius);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--tint-sand);
}
.gm-split__media { position: relative; min-height: 260px; }
.gm-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gm-split__body { padding: clamp(26px, 4vw, 48px); display: grid; gap: 14px; align-content: center; justify-items: start; }

/* ---------- Partneriai ---------- */
.gm-partners {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
}
.gm-partner {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	transition: border-color var(--tr), box-shadow var(--tr);
}
.gm-partner:hover { border-color: var(--sage); box-shadow: var(--shadow-s); }
.gm-partner img { max-height: 34px; width: auto; filter: grayscale(1); opacity: 0.6; transition: filter var(--tr), opacity var(--tr); }
.gm-partner:hover img { filter: none; opacity: 1; }
.gm-partner span { font-family: var(--serif); font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center; transition: color var(--tr); }
.gm-partner:hover span { color: var(--ink); }

/* ---------- Poraštė ---------- */
.gm-footer { background: var(--olive); color: rgba(246, 242, 234, 0.78); }
.gm-footer a { color: rgba(246, 242, 234, 0.92); }
.gm-footer a:hover { color: var(--coral); }
.gm-footer__news {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(36px, 6vw, 60px) 24px;
	border-bottom: 1px solid rgba(246, 242, 234, 0.14);
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(20px, 4vw, 48px);
	align-items: center;
}
.gm-footer__news h3 { color: var(--bg); font-family: var(--sans); font-size: clamp(15px, 2vw, 19px); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.5; }
.gm-news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.gm-news-form input[type='email'] {
	flex: 1;
	min-width: 200px;
	padding: 13px 16px;
	background: rgba(246, 242, 234, 0.1);
	border: 1px solid rgba(246, 242, 234, 0.25);
	border-radius: var(--radius-s);
	color: var(--bg);
	font-family: var(--sans);
	font-size: 14.5px;
}
.gm-news-form input::placeholder { color: rgba(246, 242, 234, 0.5); }
.gm-news-form input:focus { outline: none; border-color: var(--coral); }
.gm-footer__in { max-width: 1200px; margin: 0 auto; padding: clamp(36px, 5vw, 56px) 24px 30px; }
.gm-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(246, 242, 234, 0.14); }
.gm-footer .gm-logo b { color: var(--bg); }
.gm-footer .gm-logo span { color: rgba(246, 242, 234, 0.55); }
.gm-footer__about { margin-top: 14px; font-size: 14px; max-width: 320px; }
.gm-footer h4 { color: var(--bg); font-family: var(--sans); font-size: 11.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; }
.gm-footer ul { list-style: none; display: grid; gap: 9px; font-size: 14px; }
.gm-social { display: flex; gap: 10px; margin-top: 18px; }
.gm-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(246, 242, 234, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--tr), border-color var(--tr);
}
.gm-social a:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.gm-social svg { width: 16px; height: 16px; }
.gm-footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 24px; font-size: 12.5px; color: rgba(246, 242, 234, 0.45); }

/* ---------- Puslapio antraštė ---------- */
.gm-page-head { padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 3.5vw, 40px); }
.gm-page-head h1 { max-width: 860px; }
.gm-page-head p { margin-top: 14px; max-width: 620px; font-size: 16.5px; }
.gm-crumb { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.gm-crumb:hover { color: var(--sage-dark); }

/* ---------- Prose ---------- */
.gm-prose { font-size: 16px; }
.gm-prose > * + * { margin-top: 1.1em; }
.gm-prose h2 { margin-top: 1.6em; font-size: clamp(23px, 3vw, 30px); }
.gm-prose h3 { margin-top: 1.4em; }
.gm-prose ul, .gm-prose ol { padding-left: 1.3em; }
.gm-prose img { border-radius: var(--radius); }
.gm-prose blockquote { border-left: 3px solid var(--coral); padding-left: 20px; font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--ink); }

/* ---------- Konsultacijos ---------- */
.gm-intro-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(22px, 3.5vw, 36px);
	margin-bottom: 26px;
	display: grid;
	gap: 10px;
}
.gm-intro-card .gm-guarantee { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.gm-intro-card .gm-guarantee svg { width: 18px; height: 18px; color: var(--sage-dark); flex: none; margin-top: 2px; }
.gm-consult-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gm-consult-card { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.gm-consult-card__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-soft); color: var(--sage-dark); display: flex; align-items: center; justify-content: center; }
.gm-consult-card__ic svg { width: 21px; height: 21px; }
.gm-consult-card h3 { font-family: var(--sans); font-size: 15.5px; font-weight: 800; }
.gm-consult-card__price { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.gm-consult-card p { font-size: 13.5px; flex: 1; }
.gm-consult-wide {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	overflow: hidden;
}
.gm-consult-wide__body { padding: clamp(22px, 3.5vw, 36px); display: grid; gap: 10px; justify-items: start; align-content: center; }
.gm-consult-wide__media { position: relative; min-height: 200px; }
.gm-consult-wide__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.gm-clinics { display: grid; grid-template-columns: 1.15fr 1fr; gap: 22px; align-items: start; }
.gm-map { height: clamp(360px, 44vw, 520px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-s); z-index: 1; }
.gm-pin { background: none; border: none; }
.gm-pin__n {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--olive);
	color: var(--bg);
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 800;
	border: 2px solid var(--bg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.leaflet-popup-content-wrapper { border-radius: var(--radius-s); font-family: var(--sans); }
.leaflet-popup-content { font-size: 13.5px; line-height: 1.55; }
.gm-acc { display: grid; gap: 10px; }
.gm-acc__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gm-acc__head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: var(--sans);
	text-align: left;
}
.gm-acc__n {
	flex: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--sage-soft);
	color: var(--sage-dark);
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gm-acc__item.is-open .gm-acc__n { background: var(--olive); color: var(--bg); }
.gm-acc__title { flex: 1; font-size: 15px; font-weight: 800; color: var(--ink); }
.gm-acc__title small { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.gm-acc__chev { flex: none; color: var(--muted); transition: transform var(--tr); }
.gm-acc__item.is-open .gm-acc__chev { transform: rotate(180deg); }
.gm-acc__body { display: none; padding: 0 18px 18px 60px; font-size: 14px; }
.gm-acc__item.is-open .gm-acc__body { display: grid; gap: 8px; justify-items: start; }
.gm-acc__row { display: flex; gap: 9px; align-items: flex-start; }
.gm-acc__row svg { width: 16px; height: 16px; color: var(--sage-dark); flex: none; margin-top: 3px; }
.gm-acc__note { background: var(--tint-peach); border-radius: var(--radius-s); padding: 10px 14px; font-size: 13px; color: #8a6242; }

.gm-banner {
	border-radius: var(--radius);
	background: var(--tint-sand);
	padding: clamp(22px, 3.5vw, 36px);
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.gm-banner__ic { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; color: var(--sage-dark); }
.gm-banner__ic svg { width: 21px; height: 21px; }
.gm-banner p { flex: 1; min-width: 240px; font-size: 15px; color: var(--ink); }

/* ---------- Parduotuvė: žingsniai ---------- */
.gm-step-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gm-step-cat {
	background: var(--card);
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 16px;
	display: grid;
	gap: 12px;
	justify-items: center;
	text-align: center;
	transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.gm-step-cat:hover { transform: translateY(-2px); border-color: var(--sage); box-shadow: var(--shadow-s); }
.gm-step-cat.is-active { border-color: var(--ink); }
.gm-step-cat svg { width: 34px; height: 34px; color: var(--sage-dark); }
.gm-step-cat b { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.gm-step-cat small { font-size: 12.5px; color: var(--muted); }

.gm-problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gm-problem-card { position: relative; border-radius: var(--radius); padding: 22px 24px 20px; display: grid; gap: 5px; justify-items: start; transition: transform var(--tr), box-shadow var(--tr); }
.gm-problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-s); }
.gm-problem-card.is-active { outline: 2px solid var(--ink); outline-offset: -2px; }
.gm-problem-card h3 { font-family: var(--sans); font-size: 15px; font-weight: 800; padding-right: 24px; }
.gm-problem-card small { font-size: 12.5px; color: var(--text); }
.gm-problem-card__arrow { position: absolute; right: 18px; top: 20px; color: var(--ink); font-size: 16px; transition: transform var(--tr); }
.gm-problem-card:hover .gm-problem-card__arrow { transform: translateX(4px); }

.gm-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 8px; }
.gm-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 16px;
	border-radius: var(--radius-s);
	border: 1.5px solid var(--line);
	background: var(--card);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.gm-chip:hover { border-color: var(--sage); transform: translateY(-1px); }
.gm-chip.is-active { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.gm-count-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 18px 0 20px; font-size: 13.5px; color: var(--muted); }

.gm-disclaimer {
	background: var(--tint-peach);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin-bottom: 30px;
	max-width: 780px;
	font-size: 14.5px;
}
.gm-disclaimer p:first-child { font-weight: 800; color: var(--ink); }
.gm-disclaimer p + p { margin-top: 8px; }
.gm-disclaimer__small { font-size: 12.5px; color: var(--muted); font-style: italic; }

/* ---------- Produkto kortelė ---------- */
.gm-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gm-product-grid > [data-types] { transition: opacity 0.22s ease, transform 0.22s ease; }
.gm-product-grid > .is-off { opacity: 0; transform: scale(0.97); }
.gm-product-card { display: flex; flex-direction: column; }
.gm-product-card__img { position: relative; display: block; aspect-ratio: 1 / 1; background: #f1ede3; }
.gm-product-card__img img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; padding: 14px; }
.gm-product-card__noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--line); }
.gm-product-card__noimg svg { width: 48px; height: 48px; }
.gm-product-card__sale {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--coral);
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	z-index: 2;
}
.gm-product-card__body { padding: 16px 18px 18px; display: grid; gap: 7px; flex: 1; align-content: start; }
.gm-product-card__brand { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.gm-product-card h3 { font-family: var(--sans); font-size: 15px; font-weight: 800; line-height: 1.35; }
.gm-product-card h3 a { color: var(--ink); }
.gm-product-card__comment { font-size: 12.5px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gm-product-card__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.gm-product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 8px; }
.gm-product-card__price { font-size: 17px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.gm-product-card__price del { color: var(--muted); font-weight: 600; font-size: 13.5px; margin-right: 6px; }
.gm-product-card__price ins { text-decoration: none; color: var(--coral-dark); }
.gm-code {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border: 1px dashed var(--sage);
	border-radius: 999px;
	background: var(--sage-soft);
	color: var(--sage-dark);
	font-family: var(--sans);
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background var(--tr), color var(--tr);
}
.gm-code:hover { background: var(--sage); color: #fff; }
.gm-code.is-copied { background: var(--ok); border-color: var(--ok); color: #fff; }
.gm-code svg { width: 13px; height: 13px; }

/* ---------- Produktų karuselė (home) ---------- */
.gm-carousel { position: relative; }
.gm-carousel__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 6px;
	scrollbar-width: none;
}
.gm-carousel__track::-webkit-scrollbar { display: none; }
.gm-carousel__track > * { flex: 0 0 min(268px, 78vw); scroll-snap-align: start; }
.gm-carousel__nav { display: flex; gap: 8px; }
.gm-carousel__btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--card);
	color: var(--ink);
	font-size: 16px;
	cursor: pointer;
	transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.gm-carousel__btn:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* Dermatologės komentaro blokas */
.gm-doctor-note { display: flex; gap: clamp(18px, 3vw, 36px); align-items: center; padding: clamp(20px, 3vw, 32px); background: var(--tint-rose); border-radius: var(--radius); margin-top: 36px; }
.gm-doctor-note__ava { flex: none; width: 92px; height: 92px; border-radius: 50%; overflow: hidden; background: var(--card); position: relative; }
.gm-doctor-note__ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gm-doctor-note__tx { display: grid; gap: 8px; justify-items: start; }
.gm-doctor-note__tx b { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #a06a55; }
.gm-doctor-note__tx h3 { font-size: 22px; }
.gm-doctor-note__tx p { font-size: 14px; }

/* ---------- Produkto puslapis ---------- */
.gm-product-single { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(26px, 5vw, 60px); align-items: start; }
.gm-product-single__img { background: #f1ede3; border-radius: var(--radius); position: relative; aspect-ratio: 1/1; overflow: hidden; }
.gm-product-single__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.gm-product-single__info { display: grid; gap: 14px; justify-items: start; }
.gm-product-single__price { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--ink); }
.gm-product-single__price del { color: var(--muted); font-size: 23px; margin-right: 10px; }
.gm-product-single__price ins { text-decoration: none; color: var(--coral-dark); }
.gm-product-single__comment { border-left: 3px solid var(--coral); padding-left: 18px; font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--ink); }
.gm-product-single__comment cite { font-family: var(--sans); font-size: 12.5px; font-style: normal; color: var(--muted); }
.gm-product-single__ship { font-size: 13px; color: var(--muted); }
.gm-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.gm-fit__col { border-radius: var(--radius-s); padding: 16px 18px; font-size: 13.5px; }
.gm-fit__col--yes { background: var(--sage-soft); }
.gm-fit__col--no { background: var(--tint-rose); }
.gm-fit__col b { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.gm-fit__col svg { width: 15px; height: 15px; }
.gm-fit__col--yes svg { color: var(--sage-dark); }
.gm-fit__col--no svg { color: var(--danger); }
.gm-fit__col ul { list-style: none; display: grid; gap: 5px; }
.gm-fit__col li { padding-left: 14px; position: relative; }
.gm-fit__col li::before { content: '·'; position: absolute; left: 2px; font-weight: 800; }
.gm-product-single form.cart { display: flex; gap: 12px; align-items: center; }
.gm-product-single form.cart .quantity input {
	width: 68px;
	padding: 12px 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	font-family: var(--sans);
	font-size: 15px;
	text-align: center;
}
.gm-product-single .single_add_to_cart_button {
	padding: 14px 30px;
	background: var(--coral);
	color: #fff;
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 1px solid var(--coral);
	border-radius: var(--radius-s);
	cursor: pointer;
	transition: background var(--tr), border-color var(--tr);
}
.gm-product-single .single_add_to_cart_button:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

/* ---------- Mini krepšelis (drawer iš dešinės) ---------- */
.gm-mc-overlay {
	position: fixed;
	inset: 0;
	background: rgba(47, 43, 34, 0.4);
	z-index: 90;
	opacity: 0;
	transition: opacity 0.3s ease;
}
body.gm-mc-open .gm-mc-overlay { opacity: 1; }
.gm-minicart {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(400px, 92vw);
	background: var(--bg);
	z-index: 95;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.25, 0.6, 0.3, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -12px 0 40px rgba(47, 43, 34, 0.18);
}
body.gm-mc-open .gm-minicart { transform: translateX(0); }
.gm-mc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid var(--line);
	flex: none;
}
.gm-mc-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--card);
	color: var(--ink);
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
	transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.gm-mc-close:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
#gm-minicart-body { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.gm-mc-items { list-style: none; flex: 1; overflow-y: auto; padding: 10px 22px; display: grid; gap: 4px; align-content: start; }
.gm-mc-item { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.gm-mc-item:last-child { border-bottom: 0; }
.gm-mc-item__img { flex: none; width: 64px; height: 64px; border-radius: var(--radius-s); overflow: hidden; background: #f1ede3; }
.gm-mc-item__img img { width: 100%; height: 100%; object-fit: contain; }
.gm-mc-item__tx { flex: 1; min-width: 0; display: grid; gap: 3px; }
.gm-mc-item__name { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.gm-mc-item__name:hover { color: var(--sage-dark); }
.gm-mc-item__qty { font-size: 13px; color: var(--muted); }
.gm-mc-remove {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
	transition: background var(--tr), color var(--tr);
}
.gm-mc-remove:hover { background: #f5e8e4; color: var(--danger); }
.gm-mc-foot { flex: none; padding: 18px 22px 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.gm-mc-foot .gm-btn { width: 100%; }
.gm-mc-total { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; margin-bottom: 4px; }
.gm-mc-total b { font-size: 18px; color: var(--ink); }
.gm-mc-empty { flex: 1; display: grid; gap: 14px; place-content: center; text-align: center; padding: 30px; }
.gm-add.is-busy { opacity: 0.6; pointer-events: none; }

/* Woo pranešimai */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
	list-style: none;
	max-width: 1200px;
	margin: 18px auto 0;
	padding: 14px 20px;
	border-radius: var(--radius-s);
	background: var(--sage-soft);
	color: var(--ink);
	font-size: 14.5px;
}
.woocommerce-notices-wrapper .woocommerce-error { background: #f5e8e4; color: var(--danger); }
.woocommerce-notices-wrapper a.button { color: var(--sage-dark); font-weight: 800; margin-left: 8px; }

/* ---------- Mokymai (events) ---------- */
.gm-event-card { display: flex; flex-direction: column; }
.gm-event-card__img { position: relative; aspect-ratio: 16 / 10; background: var(--bg-2); }
.gm-event-card__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gm-event-card__city {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.94);
	color: var(--ink);
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	z-index: 2;
}
.gm-event-card__city.is-online { background: var(--olive); color: var(--bg); }
.gm-event-card__body { padding: 20px 22px 24px; display: grid; gap: 9px; justify-items: start; }
.gm-event-card__date { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-dark); }
.gm-event-card__desc { font-size: 14px; }
.gm-event-card__desc p + p { margin-top: 8px; }
.gm-event-card__aud { font-size: 13px; color: var(--muted); }
.gm-event-card__aud b { color: var(--ink); font-weight: 700; }
.gm-events-past .gm-event-card { opacity: 0.82; }

/* ---------- Krepšelis / Checkout ---------- */
.woocommerce-cart main.gm-narrow, .woocommerce-checkout main.gm-narrow { max-width: 1040px; }
.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14.5px; vertical-align: middle; }
.woocommerce table.shop_table thead th { font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); background: var(--bg-2); }
.woocommerce table.shop_table tr:last-child td { border-bottom: 0; }
.woocommerce table.shop_table img { width: 64px; height: 64px; object-fit: contain; border-radius: var(--radius-s); background: #f1ede3; }
.woocommerce a.remove { display: inline-block; width: 24px; height: 24px; line-height: 22px; text-align: center; border-radius: 50%; color: var(--danger) !important; font-size: 18px; }
.woocommerce a.remove:hover { background: var(--danger); color: #fff !important; }
.woocommerce .quantity input.qty { width: 64px; padding: 9px 6px; border: 1px solid var(--line); border-radius: var(--radius-s); text-align: center; font-family: var(--sans); }
.woocommerce .coupon { display: flex; gap: 10px; align-items: center; }
.woocommerce .coupon input.input-text { padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius-s); font-family: var(--sans); font-size: 14px; }
.woocommerce button.button, .woocommerce a.checkout-button, .woocommerce #place_order {
	padding: 12px 24px;
	background: var(--coral);
	color: #fff;
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid var(--coral);
	border-radius: var(--radius-s);
	cursor: pointer;
	transition: background var(--tr), border-color var(--tr);
}
.woocommerce button.button:hover, .woocommerce a.checkout-button:hover, .woocommerce #place_order:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; }
.woocommerce button.button:disabled { opacity: 0.5; cursor: default; }
.cart-collaterals { margin-top: 30px; display: flex; justify-content: flex-end; }
.cart-collaterals .cart_totals { width: min(420px, 100%); }
.cart-collaterals h2 { font-size: 24px; margin-bottom: 12px; }

.woocommerce-checkout form.checkout { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / span 2; }
.woocommerce-checkout #order_review_heading, .woocommerce-checkout #order_review { grid-column: 2; }
.woocommerce-checkout #order_review_heading { font-size: 24px; margin-bottom: 0; }
.woocommerce-checkout #order_review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-top: 12px; }
.woocommerce-checkout #order_review table.shop_table { border: 0; }
.woocommerce form .form-row { margin: 0 0 14px; display: block; }
.woocommerce form .form-row label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 6px; }
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
	width: 100%;
	padding: 12px 15px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	font-family: var(--sans);
	font-size: 15px;
	color: var(--ink);
}
.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(127, 134, 99, 0.15); }
.woocommerce form .form-row.woocommerce-invalid .input-text { border-color: var(--danger); }
.woocommerce-checkout #payment { background: transparent; }
.woocommerce-checkout #payment ul.payment_methods { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 8px; }
.woocommerce-checkout #payment ul.payment_methods li { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 12px 14px; }
.woocommerce-checkout #payment div.payment_box { margin-top: 8px; font-size: 13.5px; color: var(--muted); }
.woocommerce-checkout #place_order { width: 100%; margin-top: 14px; }
.woocommerce-privacy-policy-text { font-size: 12.5px; color: var(--muted); }
.woocommerce-order .woocommerce-thankyou-order-received { font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); color: var(--ink); margin-bottom: 20px; }
.woocommerce-order ul.order_details { list-style: none; padding: 18px 22px; margin: 0 0 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); display: grid; gap: 8px; font-size: 14.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
	.gm-consult-grid { grid-template-columns: 1fr 1fr; }
	.gm-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.gm-product-grid { grid-template-columns: repeat(2, 1fr); }
	.gm-problems { grid-template-columns: 1fr 1fr; }
	.gm-footer__grid { grid-template-columns: 1fr 1fr; }
	.gm-clinics { grid-template-columns: 1fr; }
	.gm-checker { grid-template-columns: 1fr; }
	.gm-checker__art { display: none; }
}
@media (max-width: 860px) {
	.gm-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--bg);
		padding: 30px 24px;
		transform: translateX(100%);
		transition: transform var(--tr);
		overflow-y: auto;
		z-index: 55;
	}
	body.gm-nav-open .gm-nav { transform: translateX(0); }
	body.gm-nav-open { overflow: hidden; }
	.gm-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
	.gm-nav a { font-size: 17px; text-transform: none; letter-spacing: 0.02em; display: block; padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
	.gm-burger { display: block; }
	.gm-hero__in { grid-template-columns: 1fr; min-height: 0; }
	.gm-hero__media { min-height: 240px; order: -1; }
	.gm-split { grid-template-columns: 1fr; }
	.gm-consult-wide { grid-template-columns: 1fr; }
	.gm-consult-wide__media { order: -1; min-height: 180px; }
	.woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
	.woocommerce-checkout #customer_details, .woocommerce-checkout #order_review_heading, .woocommerce-checkout #order_review { grid-column: 1; grid-row: auto; }
	.gm-footer__news { grid-template-columns: 1fr; }
	.gm-step-cats { grid-template-columns: repeat(2, 1fr); }
	.gm-trust { grid-template-columns: 1fr 1fr; }
	.gm-fit { grid-template-columns: 1fr; }
	.gm-product-single { grid-template-columns: 1fr; }
	.gm-doctor-note { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
	.gm-grid-3 { grid-template-columns: 1fr; }
	.gm-grid-4 { grid-template-columns: 1fr 1fr; }
	.gm-consult-grid { grid-template-columns: 1fr; }
	.gm-problems { grid-template-columns: 1fr 1fr; }
	.gm-product-grid { grid-template-columns: 1fr; }
	.gm-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.gm-post-row { flex-direction: row; }
	.gm-post-row__img { width: 84px; height: 68px; }
	.gm-partners { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.gm-problems { grid-template-columns: 1fr; }
	.gm-step-cats { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================================
   2026 REFRESH — clinical editorial / mobile-first
   Appended as an override layer so the original component contract remains
   compatible with WooCommerce and all existing templates.
   ======================================================================== */

:root {
	--bg: #f5f1e8;
	--bg-2: #ebe7dc;
	--card: #fffdf8;
	--ink: #173129;
	--text: #263b34;
	--muted: #62716a;
	--line: #d9d7ce;
	--coral: #ad563c;
	--coral-dark: #8f422d;
	--coral-soft: #f2ddd3;
	--accent: #bd6749;
	--sage: #49695d;
	--sage-dark: #294b40;
	--sage-soft: #e0e9e2;
	--sage-deco: #9eafa4;
	--olive: #173129;
	--tint-green: #e5ebe3;
	--tint-rose: #f1ded6;
	--tint-peach: #f4e4d6;
	--tint-sand: #ece7da;
	--tint-gray: #e6e9e5;
	--radius: 20px;
	--radius-s: 12px;
	--shadow: 0 24px 70px rgba(23, 49, 41, 0.12);
	--shadow-s: 0 10px 30px rgba(23, 49, 41, 0.08);
	--focus: 0 0 0 4px rgba(173, 86, 60, 0.2);
	--tr: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
	overflow-x: clip;
	scroll-padding-top: 112px;
}

body {
	overflow-x: clip;
	font-size: 16px;
	line-height: 1.7;
	background:
		radial-gradient(60rem 32rem at 100% -10%, rgba(158, 175, 164, 0.18), transparent 60%),
		var(--bg);
}

button,
input,
select,
textarea { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--coral);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 { letter-spacing: -0.025em; }

h1 { font-size: clamp(2.8rem, 5.8vw, 5.6rem); line-height: 0.98; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.04; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }

.gm-container,
.gm-footer__news,
.gm-footer__in { max-width: 1280px; }

.gm-container,
.gm-narrow { padding-inline: clamp(20px, 4vw, 48px); }

.gm-section { padding-block: clamp(64px, 9vw, 128px); }
.gm-section--alt { background: rgba(235, 231, 220, 0.76); }
.gm-section--white { background: rgba(255, 253, 248, 0.78); }

.gm-kicker {
	font-size: 0.68rem;
	letter-spacing: 0.28em;
	color: var(--sage-dark);
}

.gm-kicker::before {
	content: '';
	width: 22px;
	height: 1px;
	background: var(--coral);
	flex: none;
}

.gm-kicker svg + * { margin-left: -32px; }

.gm-section__head { max-width: 800px; }
.gm-section__head p,
.gm-page-head p { color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.15rem); }

.gm-btn,
.woocommerce button.button,
.woocommerce a.checkout-button,
.woocommerce #place_order,
.gm-product-single .single_add_to_cart_button {
	min-height: 48px;
	padding: 13px 24px;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(143, 66, 45, 0.16);
	transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr), color var(--tr);
}

.gm-btn:hover,
.woocommerce button.button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce #place_order:hover,
.gm-product-single .single_add_to_cart_button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(143, 66, 45, 0.22);
}

.gm-btn--ghost { box-shadow: none; background: rgba(255, 253, 248, 0.5); }
.gm-btn--sage { box-shadow: 0 8px 24px rgba(41, 75, 64, 0.15); }
.gm-btn--sm { min-height: 42px; padding: 9px 18px; }

/* Header */
.gm-topbar {
	padding-block: 9px;
	background: #10271f;
	letter-spacing: 0.01em;
}

.gm-header {
	background: rgba(245, 241, 232, 0.9);
	backdrop-filter: blur(18px) saturate(1.25);
	-webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.gm-header__in { max-width: 1400px; min-height: 82px; padding-inline: clamp(20px, 3vw, 42px); }
.gm-logo b { font-size: clamp(1.08rem, 1.8vw, 1.45rem); letter-spacing: 0.075em; }
.gm-logo span { letter-spacing: 0.29em; }
.gm-nav ul { gap: clamp(14px, 1.8vw, 28px); }
.gm-nav a { font-size: 0.7rem; letter-spacing: 0.135em; }

.gm-search-toggle,
.gm-cart-link,
.gm-burger,
.gm-carousel__btn,
.gm-mc-close {
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
}

.gm-search-toggle,
.gm-cart-link { display: inline-flex; }
.gm-search-toggle:hover,
.gm-cart-link:hover { background: rgba(23, 49, 41, 0.07); }

/* Hero */
.gm-hero { background: transparent; }
.gm-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(23, 49, 41, 0.045) 1px, transparent 1px),
		linear-gradient(rgba(23, 49, 41, 0.035) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
}

.gm-hero__in {
	max-width: 1400px;
	min-height: min(78vh, 780px);
	padding: clamp(48px, 8vw, 112px) clamp(20px, 4vw, 58px);
	gap: clamp(36px, 7vw, 104px);
}

.gm-hero__txt { gap: 24px; position: relative; z-index: 1; }
.gm-hero__txt p { max-width: 560px; color: var(--text); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.gm-hero__media {
	min-height: 420px;
	border-radius: 38% 62% 20px 20px / 28% 34% 20px 20px;
	box-shadow: var(--shadow);
	isolation: isolate;
}

.gm-hero__media::after,
.gm-split__media::after,
.gm-checker__art::after {
	content: '';
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: inherit;
	pointer-events: none;
	z-index: 2;
}

.gm-hero__ph {
	background:
		radial-gradient(circle at 28% 26%, rgba(255,255,255,.86) 0 2%, transparent 2.2%),
		radial-gradient(circle at 54% 38%, transparent 0 20%, rgba(255,255,255,.26) 20.2% 20.6%, transparent 20.8%),
		radial-gradient(circle at 52% 42%, rgba(226,235,225,.95), transparent 38%),
		linear-gradient(145deg, #e9e6da 0%, #bdcbbf 46%, #6c8579 100%);
}

.gm-hero__ph::before,
.gm-hero__ph::after {
	content: '';
	position: absolute;
	border: 1px solid rgba(255,255,255,.38);
	border-radius: 999px;
}
.gm-hero__ph::before { width: 58%; aspect-ratio: 1; right: -14%; top: -12%; }
.gm-hero__ph::after { width: 36%; aspect-ratio: 1; left: 8%; bottom: -8%; }

/* Cards, categories and editorial modules */
.gm-card,
.gm-intro-card,
.gm-consult-card,
.gm-step-cat,
.gm-product-card,
.gm-video-card,
.gm-event-card,
.woocommerce table.shop_table,
.woocommerce-checkout #order_review {
	border-color: rgba(23, 49, 41, 0.12);
	box-shadow: 0 1px 0 rgba(255,255,255,.75) inset;
}

.gm-card,
.gm-consult-card,
.gm-step-cat,
.gm-product-card,
.gm-video-card,
.gm-event-card {
	transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.gm-card:hover,
.gm-consult-card:hover,
.gm-step-cat:hover,
.gm-product-card:hover,
.gm-video-card:hover,
.gm-event-card:hover {
	transform: translateY(-5px);
	border-color: rgba(41, 75, 64, 0.28);
	box-shadow: var(--shadow-s);
}

.gm-trust { gap: 1px; padding: 1px; border-radius: 18px; overflow: hidden; background: var(--line); }
.gm-trust__item { border: 0; border-radius: 0; min-height: 104px; padding: 22px; }
.gm-trust__item svg { width: 24px; height: 24px; stroke-width: 1.45; }

.gm-step-cat { min-height: 178px; padding: 28px 20px; }
.gm-step-cat svg { width: 40px; height: 40px; stroke-width: 1.35; }
.gm-step-cat b { letter-spacing: .18em; }

.gm-problem-card { min-height: 116px; padding: 24px 26px; }
.gm-problem-card__arrow { font-size: 0; width: 32px; height: 32px; border: 1px solid rgba(23,49,41,.18); border-radius: 50%; }
.gm-problem-card__arrow::before { content: '↗'; font-size: 15px; position: absolute; inset: 0; display: grid; place-items: center; }

.gm-product-card__img { background: linear-gradient(145deg, #f0ece2, #e5e6de); }
.gm-product-card__img img { padding: clamp(16px, 2vw, 28px); transition: transform var(--tr); }
.gm-product-card:hover .gm-product-card__img img { transform: scale(1.035); }
.gm-product-card__body { padding: 20px; gap: 10px; }
.gm-product-card h3 { font-size: 1rem; }
.gm-product-card__comment { color: var(--muted); }

.gm-split,
.gm-checker { border: 1px solid rgba(23,49,41,.1); box-shadow: var(--shadow-s); }
.gm-split__media { min-height: 340px; }
.gm-checker { border-radius: 26px; }

/* Forms */
.gm-form input[type='text'],
.gm-form input[type='email'],
.gm-form input[type='tel'],
.gm-form textarea,
.gm-checker textarea,
.gm-search-bar input[type='search'],
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
	min-height: 50px;
	border-color: rgba(23,49,41,.2);
	background: rgba(255,253,248,.92);
}

.gm-form input:focus,
.gm-form textarea:focus,
.gm-checker textarea:focus,
.gm-search-bar input:focus,
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--coral);
	box-shadow: var(--focus);
}

/* Footer */
.gm-footer { background: #10271f; }
.gm-footer__news { padding-inline: clamp(20px, 4vw, 48px); }
.gm-footer__in { padding-inline: clamp(20px, 4vw, 48px); }
.gm-social a { width: 44px; height: 44px; }

/* Motion is intentional but quiet. */
@media (prefers-reduced-motion: no-preference) {
	.gm-hero__txt > * { animation: gm-rise .72s both; }
	.gm-hero__txt > *:nth-child(2) { animation-delay: .08s; }
	.gm-hero__txt > *:nth-child(3) { animation-delay: .16s; }
	.gm-hero__txt > *:nth-child(4) { animation-delay: .24s; }
	.gm-hero__media { animation: gm-reveal .9s .12s both; }
	@keyframes gm-rise { from { opacity: 0; transform: translateY(16px); } }
	@keyframes gm-reveal { from { opacity: 0; transform: translateY(20px) scale(.985); } }
}

/* Mobile-first correction layer */
@media (max-width: 860px) {
	h1 { font-size: clamp(2.7rem, 13.2vw, 4.2rem); }
	h2 { font-size: clamp(2.05rem, 9.6vw, 3.2rem); }
	.gm-topbar { font-size: .72rem; line-height: 1.4; }
	.gm-header__in { min-height: 72px; gap: 10px; }
	.gm-header__tools { gap: 2px; }
	.gm-logo { max-width: calc(100vw - 166px); }
	.gm-logo b { font-size: clamp(.94rem, 4.6vw, 1.18rem); overflow: hidden; text-overflow: ellipsis; }
	.gm-logo span { font-size: .48rem; letter-spacing: .22em; white-space: nowrap; }

	.gm-nav {
		top: 72px;
		left: auto;
		right: 0;
		width: min(100%, 420px);
		max-width: 100vw;
		padding: 32px 24px 48px;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(100%, 0, 0);
		box-shadow: -24px 0 60px rgba(23,49,41,.16);
		contain: layout paint;
	}
	body.gm-nav-open .gm-nav { visibility: visible; pointer-events: auto; transform: translate3d(0,0,0); }
	.gm-nav a { min-height: 48px; display: flex; align-items: center; font-size: 1.15rem; }
	.gm-nav li { width: 100%; }

	.gm-minicart {
		width: min(100%, 420px);
		max-width: 100vw;
		visibility: hidden;
		pointer-events: none;
		transform: translate3d(100%,0,0);
		contain: layout paint;
	}
	body.gm-mc-open .gm-minicart { visibility: visible; pointer-events: auto; transform: translate3d(0,0,0); }

	.gm-hero__in { padding-block: 34px 68px; gap: 38px; }
	.gm-hero__media { min-height: clamp(270px, 82vw, 420px); border-radius: 20px 20px 42% 58% / 20px 20px 26% 34%; }
	.gm-hero__txt { gap: 20px; }
	.gm-hero__txt p { font-size: 1rem; }
	.gm-hero__txt .gm-btn { width: 100%; }
	.gm-hero--flat .gm-hero__in { padding-top: 28px; }

	.gm-trust { grid-template-columns: 1fr 1fr; gap: 1px; }
	.gm-trust__item { min-height: 126px; flex-direction: column; }
	.gm-section__bar { align-items: flex-start; }
	.gm-carousel__btn { width: 44px; height: 44px; }
	.gm-split__media { min-height: 280px; }
}

@media (max-width: 640px) {
	.gm-container,
	.gm-narrow { padding-inline: 20px; }
	.gm-section { padding-block: 72px; }
	.gm-section__bar { display: grid; grid-template-columns: 1fr auto; }
	.gm-section__bar > :first-child { grid-column: 1 / -1; }
	.gm-grid-4 { grid-template-columns: 1fr; }
	.gm-trust { grid-template-columns: 1fr; }
	.gm-trust__item { min-height: 0; flex-direction: row; }
	.gm-step-cats { gap: 10px; }
	.gm-step-cat { min-height: 156px; padding: 22px 12px; }
	.gm-problems { grid-template-columns: 1fr; }
	.gm-product-grid { grid-template-columns: 1fr; }
	.gm-product-card__body { padding: 20px 22px 24px; }
	.gm-checker { padding: 24px 20px; }
	.gm-news-form { display: grid; grid-template-columns: 1fr; }
	.gm-news-form .gm-btn { width: 100%; }
	.gm-footer__bottom { display: grid; gap: 8px; }
	.woocommerce table.shop_table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 390px) {
	.gm-search-toggle { display: none; }
	.gm-logo { max-width: calc(100vw - 124px); }
	.gm-step-cats { grid-template-columns: 1fr; }
	.gm-step-cat { min-height: 0; grid-template-columns: 44px 1fr; justify-items: start; text-align: left; align-items: center; }
	.gm-step-cat svg { grid-row: 1 / span 2; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Header conversion path and final mobile touch corrections. */
.gm-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 16px;
	border: 1px solid rgba(23,49,41,.2);
	border-radius: 999px;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink);
	white-space: nowrap;
}
.gm-header-cta svg { width: 15px; height: 15px; transition: transform var(--tr); }
.gm-header-cta:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.gm-header-cta:hover svg { transform: translateX(3px); }
.gm-mc-remove { width: 44px; height: 44px; }
.gm-btn--sm { min-height: 44px; }

@media (max-width: 1180px) {
	.gm-header-cta { display: none; }
}

@media (max-width: 860px) {
	body.gm-nav-open::after {
		content: '';
		position: fixed;
		inset: 0;
		z-index: 50;
		background: rgba(16,39,31,.42);
		backdrop-filter: blur(2px);
	}
}

/* 404 */
.gm-error-page { min-height: 68vh; display: grid; align-items: center; padding-block: clamp(64px,10vw,140px); }
.gm-error-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,8vw,120px); align-items: center; }
.gm-error-page__copy { max-width: 620px; }
.gm-error-page__copy h1 { margin-bottom: 24px; }
.gm-error-page__copy p { max-width: 520px; color: var(--muted); font-size: 1.1rem; }
.gm-error-page__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.gm-error-page__mark { display: flex; align-items: center; justify-content: center; color: var(--sage-dark); font-family: var(--serif); font-size: clamp(8rem,20vw,17rem); line-height: .75; opacity: .92; }
.gm-error-page__mark i { width: .48em; aspect-ratio: 1; margin-inline: -.12em; border: 1px solid var(--sage-deco); border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff 0 4%, transparent 4.5%), linear-gradient(145deg,#dce6df,#6f8a7e); }

@media (max-width: 760px) {
	.gm-error-page__grid { grid-template-columns: 1fr; }
	.gm-error-page__mark { order: -1; font-size: min(38vw,10rem); }
	.gm-error-page__actions { display: grid; }
}

/* About — editorial profile */
.gm-about-hero { position: relative; overflow: hidden; padding-block: clamp(64px,10vw,150px); }
.gm-about-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(23,49,41,.04) 1px,transparent 1px),linear-gradient(rgba(23,49,41,.035) 1px,transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom,#000,transparent); }
.gm-about-hero__grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px,9vw,140px); align-items: center; }
.gm-about-hero__copy p { max-width: 610px; margin-top: 30px; color: var(--muted); font-size: clamp(1rem,1.4vw,1.2rem); }
.gm-about-hero__visual { min-height: 440px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; border-radius: 48% 48% 20px 20px / 32% 32% 20px 20px; color: #fff; background: radial-gradient(circle at 36% 26%,rgba(255,255,255,.78) 0 1.5%,transparent 1.7%),radial-gradient(circle at 50% 40%,rgba(221,235,226,.9),transparent 38%),linear-gradient(145deg,#d4ded6,#44675b); box-shadow: var(--shadow); }
.gm-about-hero__monogram { display: grid; place-items: center; width: 144px; height: 144px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-family: var(--serif); font-size: 3.6rem; letter-spacing: -.04em; }
.gm-about-hero__visual > span { font-size: .7rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.gm-about-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: start; margin-bottom: clamp(40px,6vw,80px); }
.gm-about-values { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.gm-about-values article { padding: clamp(28px,4vw,54px); border-right: 1px solid var(--line); }
.gm-about-values article:last-child { border-right: 0; }
.gm-about-values article > span { display: block; margin-bottom: 54px; color: var(--coral); font: 600 .75rem/1 var(--sans); letter-spacing: .16em; }
.gm-about-values h3 { margin-bottom: 14px; }
.gm-about-values p { color: var(--muted); }
.gm-about-cta { padding-block: clamp(70px,10vw,140px); background: var(--olive); color: rgba(255,255,255,.78); }
.gm-about-cta .gm-kicker,.gm-about-cta h2 { color: #fff; }
.gm-about-cta h2 em { color: #c8d8ce; }
.gm-about-cta__grid { display: grid; grid-template-columns: .55fr 1.25fr .8fr; gap: clamp(24px,5vw,72px); align-items: start; }
.gm-about-cta__grid p { margin-bottom: 24px; }

@media (max-width: 860px) {
	.gm-about-hero__grid,.gm-about-intro,.gm-about-cta__grid { grid-template-columns: 1fr; }
	.gm-about-hero__visual { order: -1; min-height: min(88vw,420px); }
	.gm-about-values { grid-template-columns: 1fr; }
	.gm-about-values article { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
	.gm-about-values article:last-child { border-bottom: 0; }
	.gm-about-values article > span { margin-bottom: 24px; }
	.gm-about-cta__grid .gm-btn { width: 100%; }
}

@media (max-width: 860px) {
	.gm-nav {
		top: 100%;
		bottom: auto;
		height: calc(100svh - 72px);
		max-height: calc(100svh - 72px);
	}
}

/* Curated empty states replace public demo and placeholder content. */
.gm-empty-state {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	padding: clamp(42px,7vw,88px);
	border: 1px solid rgba(23,49,41,.13);
	border-radius: 28px;
	text-align: center;
	background: radial-gradient(circle at 50% 0,rgba(158,175,164,.3),transparent 46%),rgba(255,253,248,.72);
	overflow: hidden;
}
.gm-empty-state__icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 24px; border: 1px solid rgba(23,49,41,.16); border-radius: 50%; color: var(--sage-dark); background: rgba(255,255,255,.62); }
.gm-empty-state__icon svg { width: 36px; height: 36px; }
.gm-empty-state .gm-kicker { justify-content: center; }
.gm-empty-state h2 { margin-bottom: 20px; }
.gm-empty-state > p { max-width: 590px; margin: 0 auto; color: var(--muted); }
.gm-empty-state > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.gm-empty-state--compact { max-width: 760px; margin-top: 32px; }

@media (max-width: 640px) {
	.gm-empty-state { padding: 38px 20px; }
	.gm-empty-state > div { display: grid; }
	.gm-empty-state .gm-btn { width: 100%; }
}

.gm-news-form input[type='email'] { min-height: 50px; }

