/* ============================================================
   Citrus Pharmacy - Modernized design system
   v2 - Migrated from /temp 2026-05-24
   ============================================================ */

:root {
	--bg: #fefdfb;
	--bg-tint: #fff7ef;
	--surface: #ffffff;
	--ink: #14181a;
	--text: #1d2421;
	--text-soft: #3e4945;
	--muted: #6b7771;
	--line: rgba(29,36,33,0.07);
	--line-strong: rgba(29,36,33,0.13);

	--brand: #FF6A1C;
	--brand-deep: #a83e00;
	--brand-hover: #e85800;
	--brand-tint: #fff1e3;
	--brand-soft: rgba(255,106,28,0.10);
	--brand2: #2DA86E;
	--brand2-tint: #e8f6ee;
	--accent: #FFD166;

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 22px;
	--radius-xl: 28px;

	--shadow-xs: 0 1px 2px rgba(29,36,33,0.04);
	--shadow-sm: 0 2px 8px rgba(29,36,33,0.04), 0 1px 2px rgba(29,36,33,0.03);
	--shadow:    0 14px 32px -14px rgba(29,36,33,0.12), 0 2px 6px rgba(29,36,33,0.04);
	--shadow-lg: 0 32px 64px -20px rgba(29,36,33,0.18), 0 4px 12px rgba(29,36,33,0.06);
	--shadow-brand: 0 12px 30px -10px rgba(255,106,28,0.35);
	--shadow-soft: var(--shadow-sm);

	--container: min(1180px, 92vw);
	--speed: 500ms;
	--ease: cubic-bezier(.22,.61,.36,1);
	--bezier: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

/* Calmer ambient backdrop */
body::before {
	content: "";
	position: fixed;
	inset: -10%;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(900px 600px at 12% 8%, rgba(255,106,28,0.09), transparent 60%),
		radial-gradient(800px 540px at 88% 92%, rgba(45,168,110,0.07), transparent 60%),
		radial-gradient(700px 360px at 70% 18%, rgba(255,209,102,0.06), transparent 60%);
}

/* Typography */
h1, h2, h3, h4 {
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.022em;
	color: var(--ink);
	line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 1.6rem + 3.6vw, 4.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
h2 { font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.85rem); font-weight: 800; letter-spacing: -0.032em; line-height: 1.06; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0; color: var(--text-soft); }
.muted { color: var(--muted); }

/* Eyebrow label */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.72rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--brand);
}
.eyebrow::before {
	content: ""; display: inline-block;
	width: 18px; height: 1.5px; background: var(--brand); border-radius: 2px;
}

/* ============================================================
   Boot loader
   ============================================================ */
#boot-loader {
	position: fixed; inset: 0;
	display: flex; align-items: center; justify-content: center; flex-direction: column;
	background: rgba(254,253,251,0.9);
	backdrop-filter: blur(10px);
	z-index: 9999;
	transition: opacity .2s ease, visibility .2s ease;
}
#boot-loader.fade-out { opacity: 0; visibility: hidden; }
#boot-loader img { width: 120px; height: auto; margin-bottom: 18px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08)); }
#boot-loader .spinner {
	width: 36px; height: 36px;
	border: 3px solid rgba(255,106,28,0.2);
	border-top-color: var(--brand);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 12px;
}
#boot-loader p { font-size: 14px; color: var(--muted); letter-spacing: 0.3px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Header
   ============================================================ */
header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(254,253,251,0.92);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s ease, background .25s ease, padding .25s ease;
}
header.scrolled {
	border-bottom-color: var(--line);
	background: rgba(254,253,251,0.96);
}
nav {
	width: var(--container); margin: 0 auto;
	display: flex; align-items: center; gap: 8px;
	padding: 16px 0;
	position: relative;
	transition: padding .25s ease;
}
header.scrolled nav { padding: 10px 0; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; font-weight: 800; }
.brand img { height: 40px; width: auto; transition: height .25s ease; }
header.scrolled .brand img { height: 34px; }

.navlinks { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.navlinks > a, .nav-dropdown > a.nav-link {
	padding: 9px 14px; border-radius: 10px;
	font-size: 0.95rem; font-weight: 500;
	color: var(--text-soft);
	display: inline-flex; align-items: center; gap: 7px;
	transition: color .2s ease, background .2s ease;
	cursor: pointer;
	white-space: nowrap;
}
.navlinks > a:hover, .nav-dropdown > a.nav-link:hover {
	color: var(--text); background: rgba(29,36,33,0.05);
}
.nav-dropdown { position: relative; }
.nav-dropdown::after {
	content: ""; position: absolute;
	left: 0; right: 0; top: 100%; height: 10px;
}
.nav-dropdown .nav-link i { font-size: 10px; opacity: 0.55; transition: transform .2s ease; }
.nav-dropdown:hover .nav-link i { transform: rotate(180deg); opacity: 0.85; }
.nav-dropdown-menu {
	position: absolute; top: calc(100% + 6px); left: 0;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
	min-width: 240px; padding: 6px;
	box-shadow: var(--shadow);
	opacity: 0; transform: translateY(-4px);
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease;
	z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
	opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-dropdown-menu a {
	display: block; padding: 10px 12px;
	font-size: 0.92rem; color: var(--text-soft);
	border-radius: 9px; transition: background .15s ease, color .15s ease;
}
.nav-dropdown-menu a:hover { background: var(--brand-tint); color: var(--brand); }

.nav-spacer { width: 4px; flex-shrink: 0; }

/* Contact dropdown */
.contact-dropdown { position: relative; flex-shrink: 0; }
.contact-toggle {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 10px 16px; border-radius: 999px;
	background-color: #ffffff;
	border: 1.5px solid var(--brand);
	font-family: inherit; font-size: 0.92rem; font-weight: 600;
	color: var(--brand); cursor: pointer;
	transition: background-color .18s ease, box-shadow .2s ease, transform .15s ease;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
}
.contact-toggle:hover {
	background-color: var(--brand-tint);
	transform: translateY(-1px);
	box-shadow: 0 6px 14px -6px rgba(255,106,28,0.35);
}
.contact-toggle:active { transform: translateY(0); background-color: #ffe2cb; }
.contact-toggle:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,106,28,0.25); }
.contact-toggle > i:first-child { font-size: 0.95rem; }
.contact-toggle > i:last-child { font-size: 9px; opacity: 0.7; }

.contact-menu {
	position: absolute; right: 0; top: calc(100% + 10px);
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow);
	display: none; flex-direction: column;
	padding: 8px;
	width: 300px;
	z-index: 100;
}
.contact-dropdown.active .contact-menu { display: flex; animation: fadeInUp .2s ease; }
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}
.contact-menu a {
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 12px; border-radius: 9px;
	color: var(--text); font-size: 0.95rem;
	transition: background .15s ease;
}
.contact-menu a:hover { background: var(--brand-tint); }
.contact-menu .left { display: flex; align-items: center; gap: 10px; }
.contact-menu .left i { color: var(--brand); width: 18px; text-align: center; }
.contact-menu .left span { color: var(--muted); }
.contact-menu .left strong { color: var(--text); font-weight: 700; }
.with-badge { display: flex; align-items: center; justify-content: space-between; }
.new-badge {
	background: linear-gradient(135deg, var(--brand), #ff9554);
	color: #fff; font-size: 0.65rem; font-weight: 700;
	border-radius: 6px; padding: 2px 7px;
	text-transform: uppercase; letter-spacing: 0.05em;
}

/* CTA - locked-down */
a.cta, .cta {
	display: inline-flex !important;
	align-items: center; gap: 8px;
	padding: 10px 20px; border-radius: 999px;
	background: #FF6A1C !important;
	background-color: #FF6A1C !important;
	background-image: none !important;
	color: #ffffff !important;
	font-weight: 700; font-size: 0.92rem;
	letter-spacing: -0.005em;
	border: 1.5px solid #FF6A1C !important;
	box-shadow: 0 4px 12px -4px rgba(255,106,28,0.4);
	transition: background-color .15s ease, border-color .15s ease;
	white-space: nowrap;
	flex-shrink: 0;
	opacity: 1 !important;
	text-decoration: none !important;
	-webkit-tap-highlight-color: transparent;
	forced-color-adjust: none;
}
a.cta:hover, .cta:hover, a.cta:focus, .cta:focus {
	background: #a83e00 !important;
	background-color: #a83e00 !important;
	background-image: none !important;
	border-color: #a83e00 !important;
	color: #ffffff !important;
	opacity: 1 !important;
	text-decoration: none !important;
}
a.cta:active, .cta:active {
	background: #7d2d00 !important;
	background-color: #7d2d00 !important;
	border-color: #7d2d00 !important;
}
.cta:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,106,28,0.35), 0 4px 12px -4px rgba(255,106,28,0.4);
}
.cta i { font-size: 0.78rem; color: #ffffff !important; }
.cta * { color: #ffffff !important; }

.menu-toggle {
	display: none; background: none; border: 0;
	font-size: 24px; cursor: pointer; color: var(--text);
	margin-left: auto;
}

/* ============================================================
   Buttons (shared across all pages)
   ============================================================ */
.btn {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 15px 26px; border-radius: 999px;
	font-family: inherit; font-size: 0.95rem; font-weight: 700;
	letter-spacing: -0.005em;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, transform .15s ease, box-shadow .2s ease;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
}
.btn.primary {
	background: var(--brand2); border-color: var(--brand2);
	color: #fff;
	box-shadow: 0 8px 20px -10px rgba(45,168,110,0.55);
}
.btn.primary:hover {
	background: #1f7f53; border-color: #1f7f53;
	transform: translateY(-2px);
	box-shadow: 0 14px 26px -10px rgba(45,168,110,0.65);
}
.btn.primary:active { background: #186640; border-color: #186640; transform: translateY(0); }
.btn.secondary {
	background: var(--brand); border-color: var(--brand);
	color: #fff;
	box-shadow: var(--shadow-brand);
}
.btn.secondary:hover {
	background: var(--brand-deep); border-color: var(--brand-deep);
	transform: translateY(-2px);
}
.btn.secondary:active { background: #7d2d00; border-color: #7d2d00; transform: translateY(0); }
.btn.ghost {
	background: var(--surface);
	color: var(--text);
	border-color: var(--line-strong);
}
.btn.ghost:hover {
	border-color: var(--text);
	transform: translateY(-2px);
}
.btn i { font-size: 0.85rem; transition: transform .2s ease; }
.btn:hover i { transform: translateX(3px); }

/* ============================================================
   Hero (shared - homepage uses .hero-card, other pages too)
   ============================================================ */
.hero {
	width: var(--container); margin: 72px auto 0;
	display: grid; gap: 28px;
	grid-template-columns: 1.22fr 0.78fr;
	align-items: start;
	position: relative;
}
.hero-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 56px 56px 48px;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
	position: relative;
	overflow: hidden;
}
.hero-card h1 { margin: 0 0 20px; color: var(--ink); }
.hero-card .word-fresh {
	color: var(--brand);
	font-style: italic;
	font-weight: 800;
	/* Thick, soft-orange highlighter underline */
	text-decoration: underline;
	text-decoration-color: rgba(255,106,28,0.28);
	text-decoration-thickness: 0.16em;
	text-underline-offset: 0.06em;
	text-decoration-skip-ink: none;
}
.hero-card .word-fresh-sparkle {
	display: inline-block;
	margin-left: 0.12em;
	font-size: 0.45em;
	vertical-align: 0.6em;            /* lift toward upper-right of "fresh" */
	line-height: 1;
	text-decoration: none;             /* not part of the underline */
	font-style: normal;
	transform: rotate(8deg);
	transform-origin: center;
}
.hero-card .lead {
	font-size: 1.15rem; line-height: 1.6;
	color: var(--text-soft); max-width: 54ch;
	font-weight: 400;
}
.lead { font-size: 1.1rem; line-height: 1.6; color: var(--text-soft); }

.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 24px;
	padding: 6px 12px 6px 8px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(254,253,251,0.6);
}
.hero-eyebrow .dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--brand2);
	box-shadow: 0 0 0 3px rgba(45,168,110,0.18);
	animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(45,168,110,0.18); }
	50% { box-shadow: 0 0 0 6px rgba(45,168,110,0.08); }
}

.hero-actions { margin-top: 32px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Feature chips */
.hero-list {
	margin-top: 36px;
	display: grid; gap: 0;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line);
}
.chip.feature {
	display: flex; align-items: center; gap: 14px;
	padding: 16px 0;
	font-size: 0.93rem; font-weight: 600;
	color: var(--text);
	border-bottom: 1px solid var(--line);
	transition: padding-left .2s ease;
}
.chip.feature:nth-child(odd) { padding-right: 16px; }
.chip.feature:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.chip.feature:hover { color: var(--brand); }
.chip.feature i {
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint); color: var(--brand);
	border-radius: 10px; font-size: 0.92rem;
	flex-shrink: 0;
	transition: transform .25s var(--ease);
}
.chip.feature:hover i { transform: scale(1.08) rotate(-4deg); }
.chip.feature:nth-last-child(-n+2) { border-bottom: 0; }

/* "How we can help today" */
.hero-support {
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
	position: relative;
}
.hero-support h3 {
	font-size: 0.7rem; font-weight: 700;
	color: var(--muted);
	margin: 0 0 22px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.support-grid {
	display: grid; gap: 22px 28px;
	grid-template-columns: repeat(2, 1fr);
}
.support-item { display: flex; gap: 14px; align-items: flex-start; }
.support-item i {
	flex-shrink: 0;
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint);
	color: var(--brand);
	border-radius: 10px;
	font-size: 0.95rem;
	margin-top: 1px;
}
.support-item b { display: block; font-size: 0.95rem; color: var(--ink); font-weight: 700; line-height: 1.3; margin-bottom: 3px; letter-spacing: -0.015em; }
.support-item span { font-size: 0.88rem; color: var(--text-soft); line-height: 1.5; }

/* ============================================================
   Hours + Reviews side panel
   ============================================================ */
.kpi { display: grid; gap: 18px; }
.k-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 32px;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
}

.k-card.hours { position: relative; }
.hours-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hours-title {
	display: flex; align-items: center; gap: 10px;
	font-size: 1.15rem; font-weight: 800;
	color: var(--ink);
	margin: 0;
	letter-spacing: -0.02em;
}
.hours-title i {
	color: var(--brand);
	font-size: 0.85rem;
	width: 28px; height: 28px;
	background: var(--brand-tint);
	border-radius: 8px;
	display: inline-flex; align-items: center; justify-content: center;
}

.status-pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 12px; border-radius: 999px;
	font-size: 0.78rem; font-weight: 700;
	border: 1px solid transparent;
	letter-spacing: 0.02em;
	--pulse-rgb: 45,168,110;
}
.status-pill.open { background: var(--brand2-tint); color: var(--brand2); border-color: rgba(45,168,110,0.25); --pulse-rgb: 45,168,110; }
.status-pill.closed { background: #fdecea; color: #c0392b; border-color: rgba(192,57,43,0.22); --pulse-rgb: 192,57,43; }
.status-pill .dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: currentColor;
	animation: pulse-pill 2.5s ease-in-out infinite;
}
@keyframes pulse-pill {
	0%, 100% { box-shadow: 0 0 0 3px rgba(var(--pulse-rgb), 0.20); }
	50%      { box-shadow: 0 0 0 6px rgba(var(--pulse-rgb), 0.08); }
}

/* Legacy hours-list (kept for any other page that might use it) */
.hours-list { display: grid; gap: 0; font-size: 0.95rem; }
.hours-list > div {
	display: flex; justify-content: space-between; align-items: center;
	padding: 10px 0;
	border-bottom: 1px dashed var(--line);
}
.hours-list > div:last-of-type { border-bottom: 0; }
.hours-list span { color: var(--text-soft); }
.hours-list b { color: var(--ink); font-weight: 700; }
.hours-list .closed b { color: #c0392b; }

/* NEW: prominent "today's status" line */
.hours-now {
	margin: 6px 0 16px;
	padding: 16px 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--brand-tint), rgba(255,247,239,0.4));
	border: 1px solid rgba(255,106,28,0.18);
}
.hours-now.is-open {
	background: linear-gradient(135deg, var(--brand2-tint), rgba(232,246,238,0.4));
	border-color: rgba(45,168,110,0.22);
}
.hours-now-primary {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--ink);
	line-height: 1.2;
}
.hours-now.is-open .hours-now-primary { color: var(--brand2); }
.hours-now.is-closed .hours-now-primary { color: var(--brand-deep); }
.hours-now-secondary {
	margin-top: 4px;
	font-size: 0.82rem;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* NEW: cleaner weekly schedule, today highlighted */
.hours-week {
	display: grid;
	gap: 2px;
	font-size: 0.94rem;
	margin: 0 -8px;
}
.hours-row {
	display: flex; justify-content: space-between; align-items: center;
	padding: 9px 12px;
	border-radius: 9px;
	transition: background .2s ease;
}
.hours-row span { color: var(--text-soft); }
.hours-row b { color: var(--ink); font-weight: 700; }
.hours-row.closed b { color: #c0392b; }
.hours-row.today {
	background: var(--brand-tint);
	position: relative;
}
.hours-row.today::before {
	content: "";
	position: absolute;
	left: 0; top: 50%; transform: translateY(-50%);
	width: 3px; height: 60%;
	background: var(--brand);
	border-radius: 2px;
}
.hours-row.today span { color: var(--brand-deep); font-weight: 700; }
.hours-row.today b { color: var(--brand-deep); }
.hours-row.today.closed b { color: #c0392b; }

/* NEW: refined after-hours card */
.after-hours-card {
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--brand-tint), rgba(255,247,239,0.4));
	border: 1px solid rgba(255,106,28,0.2);
}
.after-hours-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.after-hours-head i {
	color: var(--brand);
	width: 28px; height: 28px;
	background: #fff;
	border-radius: 8px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 0.85rem;
	box-shadow: 0 2px 6px -2px rgba(255,106,28,0.3);
}
.after-hours-head h3 {
	margin: 0;
	font-size: 0.98rem;
	color: var(--ink);
	font-weight: 800;
	letter-spacing: -0.015em;
}
.after-hours-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--text-soft);
}
.after-hours-card a {
	color: var(--brand);
	font-weight: 700;
	text-decoration: none;
}
.after-hours-card a:hover { text-decoration: underline; }
.after-hours-hint {
	margin-top: 6px !important;
	font-size: 0.78rem !important;
	color: var(--muted) !important;
}

.holiday-block {
	margin-top: 18px;
	padding: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #fff7ec, #fff);
	border: 1px solid #f1caa5;
}
.holiday-block .holiday-title { font-weight: 700; font-size: 0.92rem; color: #e05f02; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.holiday-block .holiday-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.92rem; color: var(--text-soft); }
.holiday-block .holiday-row b.green { color: var(--brand2); }
.holiday-block .holiday-row b.red { color: #c0392b; }

.after-hours-badge {
	margin-top: 16px;
	background: linear-gradient(135deg, rgba(255,106,28,0.08), rgba(255,106,28,0.04));
	border: 1px solid rgba(255,106,28,0.22);
	border-radius: 14px;
	padding: 14px 16px;
	font-size: 0.9rem; line-height: 1.55;
	color: var(--text-soft);
	text-align: center;
}
.after-hours-badge b { color: var(--brand); display: block; margin-bottom: 4px; }
.after-hours-badge .note { display: block; margin-top: 8px; font-size: 0.78rem; color: var(--muted); }
.inline-link { color: var(--brand); font-weight: 700; }
.inline-link:hover { text-decoration: underline; }

/* ---------- Reviews card ---------- */
.k-card.review {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,106,28,0.10);
	box-shadow: 0 14px 36px rgba(255,106,28,.07), 0 2px 8px rgba(0,0,0,.04);
}
.k-card.review::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 3px;
	/* Google brand colour gradient — kept regardless of pharmacy brand */
	background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
}

/* Header */
.review-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px dashed rgba(0,0,0,.08);
}
.review-head .g-logo {
	width: 28px; height: 28px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.review-head .g-logo svg { width: 100%; height: 100%; display: block; }
.review-head .rh-text { flex: 1; min-width: 0; }
.review-head .rh-title {
	font-size: .98rem;
	font-weight: 800;
	color: var(--text);
	line-height: 1.2;
	display: block;
	letter-spacing: -0.005em;
}
.review-head .rh-title span {
	color: var(--muted);
	font-weight: 500;
}
.review-head .rh-sub {
	font-size: .78rem;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 3px;
	font-weight: 600;
}
.review-head .rh-sub i { color: #0F9D58; } /* Google green checkmark */
.review-head .overall {
	display: flex; flex-direction: column; align-items: flex-end;
	gap: 3px;
	flex-shrink: 0;
}
.review-head .overall-stars {
	color: #FBBC05; /* Google yellow — kept regardless of pharmacy brand */
	font-size: 1rem;
	letter-spacing: 2px;
	line-height: 1;
	filter: drop-shadow(0 1px 1px rgba(0,0,0,0.04));
}
.review-head .overall-num {
	font-size: .76rem;
	color: var(--muted);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}
.review-head .overall-num b { color: var(--text); font-size: .9rem; }

/* Body */
.review-body { min-height: 150px; position: relative; }
.review-body #googleSnippet { margin: 0; transition: opacity .35s ease; }
.review-body #googleSnippet.fade-out { opacity: 0; }
.review-body #googleSnippet .review-stars {
	color: #FBBC05;
	font-size: .92rem;
	letter-spacing: 2px;
	line-height: 1;
	margin-bottom: 10px;
	display: block;
	filter: drop-shadow(0 1px 1px rgba(0,0,0,0.04));
}
.review-body #googleSnippet .review-text {
	font-size: .96rem;
	line-height: 1.6;
	color: var(--text);
	margin: 0;
	font-style: normal;
	/* Clip very long reviews to keep card height reasonable */
	display: -webkit-box;
	-webkit-line-clamp: 7;
	line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: relative;
}

#reviewerName {
	margin-top: 14px;
	font-size: .88rem;
	color: var(--muted);
	font-weight: 600;
	transition: opacity .35s ease;
	text-align: right;
}
#reviewerName.fade-out { opacity: 0; }
#reviewerName:empty { display: none; }
#reviewerName::before {
	content: "— ";
	color: rgba(0,0,0,.30);
}

/* Footer */
.review-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 14px;
	margin-top: 16px;
	border-top: 1px dashed rgba(0,0,0,.08);
	flex-wrap: wrap;
}
.review-link {
	font-size: .85rem;
	color: var(--brand);
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap .25s ease, color .25s ease;
}
.review-link:hover { color: var(--brand-hover); gap: 10px; }

.review-nav { display: flex; gap: 6px; margin-top: 0; }
.review-nav button {
	background: var(--brand-soft);
	color: var(--brand);
	border: 1px solid rgba(255,106,28,0.18);
	border-radius: 10px;
	width: 32px; height: 32px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease, color .2s ease;
	display: inline-flex; align-items: center; justify-content: center;
}
.review-nav button:hover {
	background: var(--brand);
	color: #fff;
	transform: translateY(-1px);
}

/* ============================================================
   Trust signals
   - Original .trust-strip variant (full-width 4-col) is retained
     for any page that still uses it.
   - .k-card.trust variant lives in the homepage hero right column
     as a compact 2x2 grid.
   ============================================================ */
.trust-strip {
	width: var(--container); margin: 88px auto 0;
	display: grid; gap: 40px;
	grid-template-columns: repeat(4, 1fr);
	padding: 44px 48px;
	background: var(--surface);
	border-radius: var(--radius-xl);
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.08);
	position: relative;
}
.trust-item {
	display: flex; flex-direction: column; gap: 6px;
	padding-left: 28px;
	border-left: 1px solid var(--line);
	position: relative;
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item::before { content: ""; position: absolute; left: -1px; top: 4px; width: 1px; height: 24px; background: var(--brand); opacity: 0; transition: opacity .3s ease; }
.trust-item:first-child::before { display: none; }
.trust-strip:hover .trust-item::before { opacity: 1; }
.trust-value { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.035em; line-height: 1; }
.trust-value .accent { background: linear-gradient(90deg, var(--brand), #FFA54D); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 10px; }

/* Hero left column wrapper — stacks hero-card + standalone trust card */
.hero-left {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

/* Standalone 2x2 trust card (sits under hero-card in the left column) */
.hero-trust-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 28px 36px;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
}
.hero-trust-card .trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 28px;
}
.hero-trust-card .trust-item {
	padding: 0;
	border: 0;       /* override base + mobile rules */
	gap: 4px;
}
.hero-trust-card .trust-item::before { display: none; }
.hero-trust-card .trust-value {
	font-size: 1.4rem;
	letter-spacing: -0.025em;
}
.hero-trust-card .trust-label {
	font-size: 0.64rem;
	margin-top: 4px;
	letter-spacing: 0.1em;
}

/* ============================================================
   Sections
   ============================================================ */
section { width: var(--container); margin: 80px auto 0; }
.section-head { margin-bottom: 48px; max-width: 640px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin: 0 0 12px; color: var(--ink); }
.section-head p { color: var(--text-soft); font-size: 1.1rem; line-height: 1.55; max-width: 48ch; }

/* Cards grid */
.grid-3 {
	display: grid; gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.grid-2 {
	display: grid; gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 34px 30px 30px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	position: relative; overflow: hidden;
	box-shadow: 0 1px 2px rgba(29,36,33,0.03), 0 8px 24px -16px rgba(29,36,33,0.10);
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 2px 4px rgba(29,36,33,0.04), 0 24px 40px -16px rgba(29,36,33,0.18);
}
.card-num { position: absolute; top: 28px; right: 30px; font-size: 0.72rem; font-weight: 700; color: var(--muted); letter-spacing: 0.12em; opacity: 0.5; transition: opacity .3s ease, color .3s ease; }
.card:hover .card-num { opacity: 1; color: var(--brand); }
.card .icon {
	width: 52px; height: 52px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint); color: var(--brand);
	border-radius: 14px;
	font-size: 20px;
	margin-bottom: 22px;
	transition: transform .35s var(--ease), background .3s ease, color .3s ease;
}
.card:hover .icon { transform: scale(1.06) rotate(-4deg); background: var(--brand); color: #fff; }
.card h3 { margin: 0 0 8px; font-size: 1.18rem; font-weight: 700; letter-spacing: -0.018em; color: var(--ink); }
.card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* ============================================================
   CTA banner (dark)
   ============================================================ */
.cta-banner {
	width: var(--container); margin: 120px auto 0;
	background: #14181a;
	color: var(--bg);
	border-radius: var(--radius-xl);
	padding: 72px 64px;
	display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px;
	align-items: center;
	position: relative; overflow: hidden;
}
.cta-banner::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(800px 500px at 100% 0%, rgba(255,106,28,0.22), transparent 60%),
		radial-gradient(600px 400px at 0% 100%, rgba(45,168,110,0.14), transparent 60%);
	pointer-events: none;
}
.cta-banner::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,106,28,0.4), transparent); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .eyebrow { color: #FFA54D; }
.cta-banner .eyebrow::before { background: #FFA54D; }
.cta-banner h2 { color: #fff; margin: 16px 0 18px; max-width: 14ch; font-weight: 800; letter-spacing: -0.035em; }
.cta-banner h2 em {
	color: var(--brand);
	font-style: italic;
	background: linear-gradient(90deg, var(--brand), #FFA54D);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	/* Italic glyph extends past its box - pad to prevent clipping */
	display: inline-block;
	padding-right: 0.14em;
	margin-right: -0.06em;
}
.cta-banner p { color: rgba(254,253,251,0.7); font-size: 1.05rem; line-height: 1.6; max-width: 46ch; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta-banner .btn.large { padding: 16px 28px; font-size: 1rem; box-shadow: 0 12px 28px -8px rgba(255,106,28,0.6); }
.cta-banner .btn.phone {
	background: rgba(254,253,251,0.06);
	border: 1px solid rgba(254,253,251,0.14);
	color: var(--bg);
	box-shadow: none;
}
.cta-banner .btn.phone:hover { background: rgba(254,253,251,0.12); border-color: rgba(254,253,251,0.3); transform: translateY(-2px); }
.cta-banner .btn.phone i { color: var(--brand); font-size: 0.95rem; }
.cta-banner .btn.phone:hover i { transform: none; }

/* ============================================================
   Minor Ailments spotlight (homepage)
   ============================================================ */
.minor-ailments-section { width: var(--container); margin: 120px auto 0; }
.ma-card {
	background: linear-gradient(135deg, var(--brand-tint) 0%, var(--surface) 65%);
	border-radius: var(--radius-xl);
	padding: 56px;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
}
.ma-card::before {
	content: "";
	position: absolute;
	top: -120px; right: -120px;
	width: 340px; height: 340px;
	background: radial-gradient(circle, rgba(255,209,102,0.22), transparent 65%);
	border-radius: 50%;
	pointer-events: none;
}
.ma-card::after {
	content: "";
	position: absolute;
	bottom: -100px; left: -100px;
	width: 260px; height: 260px;
	background: radial-gradient(circle, rgba(45,168,110,0.10), transparent 65%);
	border-radius: 50%;
	pointer-events: none;
}
.ma-card > * { position: relative; z-index: 1; }
.ma-text .eyebrow { margin-bottom: 16px; }
.ma-text h2 { margin: 0 0 16px; color: var(--ink); }
.ma-text h2 em {
	font-style: italic;
	color: var(--brand);
	background: linear-gradient(90deg, var(--brand), #FFA54D);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	padding-right: 0.14em;
	margin-right: -0.06em;
}
.ma-text p { font-size: 1.05rem; line-height: 1.65; max-width: 50ch; color: var(--text-soft); }
.ma-actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.ma-facts {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.ma-fact b {
	display: block;
	font-size: 1.55rem; font-weight: 800;
	color: var(--ink); letter-spacing: -0.035em;
	line-height: 1;
}
.ma-fact:nth-child(2) b, .ma-fact:nth-child(3) b {
	background: linear-gradient(90deg, var(--brand), #FFA54D);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
}
.ma-fact span {
	display: block; margin-top: 8px;
	font-size: 0.74rem; font-weight: 600;
	color: var(--muted); letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ma-conditions { display: flex; flex-direction: column; gap: 18px; }
.ma-conditions-label {
	font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--muted);
}
.ma-pills {
	display: flex; flex-wrap: wrap; gap: 6px;
}
.ma-pills span {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 0.85rem; font-weight: 600;
	color: var(--text);
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
	cursor: default;
	white-space: nowrap;
}
.ma-pills span:hover {
	background: var(--brand-tint);
	border-color: rgba(255,106,28,0.3);
	transform: translateY(-2px);
}
.ma-pills i {
	color: var(--brand);
	font-size: 0.85rem;
}

.ma-conditions-note {
	margin-top: 18px;
	padding: 12px 16px;
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--text-soft);
	background: rgba(45,168,110,0.06);
	border: 1px dashed rgba(45,168,110,0.3);
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.ma-conditions-note i { color: var(--brand2); flex-shrink: 0; margin-top: 3px; font-size: 0.9rem; }
.ma-conditions-note strong { color: var(--brand2); font-weight: 700; }

@media (max-width: 960px) {
	.ma-card { padding: 40px; grid-template-columns: 1fr; gap: 36px; }
	.ma-facts { gap: 16px; }
	.ma-fact b { font-size: 1.3rem; }
}
@media (max-width: 720px) {
	.ma-card { padding: 28px 22px; }
	.ma-facts { grid-template-columns: 1fr; padding-top: 22px; }
	.ma-facts .ma-fact { display: flex; align-items: baseline; justify-content: space-between; }
	.ma-fact b { font-size: 1.15rem; }
	.ma-fact span { margin-top: 0; }
}

/* ============================================================
   Single-column hero variant (used on /minor-ailments, /services, etc.)
   ============================================================ */
.ma-page-hero,
.services-page-hero { grid-template-columns: 1fr; }

/* Service card that's also a link */
.service-card-link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
.service-card-link p { flex: 1; }
.card-link-text {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--brand);
	letter-spacing: -0.005em;
	transition: gap .2s ease, color .2s ease;
}
.card-link-text i { font-size: 0.75rem; transition: transform .2s ease; }
.service-card-link:hover .card-link-text {
	color: var(--brand-deep);
	gap: 10px;
}
.service-card-link:hover .card-link-text i {
	transform: translateX(3px);
}

/* ============================================================
   "Why Citrus" - differentiator section (used on /services)
   ============================================================ */
.why-citrus { width: var(--container); margin: 120px auto 0; }
.why-citrus-card {
	background: linear-gradient(135deg, var(--brand-tint) 0%, var(--surface) 65%);
	border-radius: var(--radius-xl);
	padding: 56px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
}
.why-citrus-card::before {
	content: ""; position: absolute;
	top: -120px; right: -120px;
	width: 340px; height: 340px;
	background: radial-gradient(circle, rgba(255,209,102,0.22), transparent 65%);
	border-radius: 50%; pointer-events: none;
}
.why-citrus-card::after {
	content: ""; position: absolute;
	bottom: -100px; left: -100px;
	width: 260px; height: 260px;
	background: radial-gradient(circle, rgba(45,168,110,0.10), transparent 65%);
	border-radius: 50%; pointer-events: none;
}
.why-citrus-card > * { position: relative; z-index: 1; }
.why-citrus-head { margin-bottom: 40px; max-width: 600px; }
.why-citrus-head .eyebrow { margin-bottom: 14px; }
.why-citrus-head h2 { margin: 0 0 10px; color: var(--ink); }
.why-citrus-head p { color: var(--text-soft); font-size: 1.1rem; line-height: 1.55; }

.why-grid {
	display: grid;
	gap: 32px 28px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.why-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.why-icon {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff;
	color: var(--brand);
	border-radius: 12px;
	font-size: 18px;
	box-shadow: 0 4px 10px -4px rgba(255,106,28,0.25);
	border: 1px solid rgba(255,106,28,0.15);
	margin-bottom: 4px;
}
.why-item h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--ink);
}
.why-item p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text-soft);
}

@media (max-width: 720px) {
	.why-citrus-card { padding: 32px 24px; }
	.why-citrus-head h2 { font-size: 1.7rem; }
}

/* ============================================================
   Delivery page - tier comparison + service area
   ============================================================ */
.delivery-tiers { width: var(--container); margin: 100px auto 0; }
.tiers-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	margin-top: 40px;
}
.tier-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 36px 32px;
	position: relative;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	display: flex; flex-direction: column;
}
.tier-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 2px 4px rgba(29,36,33,0.04), 0 24px 40px -16px rgba(29,36,33,0.18);
}
.tier-card.tier-free {
	background: linear-gradient(135deg, var(--brand2-tint) 0%, var(--surface) 60%);
	border: 1px solid rgba(45,168,110,0.18);
}
.tier-card.tier-premium {
	background: linear-gradient(135deg, var(--brand-tint) 0%, var(--surface) 60%);
	border: 1px solid rgba(255,106,28,0.18);
}
.tier-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 16px;
	align-self: flex-start;
}
.tier-badge-free { background: var(--brand2); color: #fff; }
.tier-badge-premium { background: var(--brand); color: #fff; }
.tier-card h3 {
	font-size: 1.4rem; font-weight: 800;
	letter-spacing: -0.025em; color: var(--ink);
	margin: 0 0 12px;
}
.tier-price {
	display: flex; align-items: baseline; gap: 6px;
	margin-bottom: 8px;
}
.tier-amount {
	font-size: 2.6rem; font-weight: 800;
	letter-spacing: -0.04em; line-height: 1;
	color: var(--ink);
}
.tier-card.tier-free .tier-amount { color: var(--brand2); }
.tier-card.tier-premium .tier-amount { color: var(--brand); }
.tier-period {
	font-size: 0.85rem; font-weight: 600;
	color: var(--muted);
}
.tier-tag {
	font-size: 0.92rem; color: var(--text-soft);
	margin: 0 0 22px;
}
.tier-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	gap: 10px;
	flex: 1;
}
.tier-features li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 0.93rem;
	color: var(--text-soft);
	line-height: 1.5;
}
.tier-features li i {
	flex-shrink: 0;
	margin-top: 5px;
	font-size: 0.78rem;
	width: 18px; height: 18px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
}
.tier-card.tier-free .tier-features i {
	background: rgba(45,168,110,0.15);
	color: var(--brand2);
}
.tier-card.tier-premium .tier-features i {
	background: rgba(255,106,28,0.15);
	color: var(--brand);
}
.tier-card .btn { align-self: flex-start; }

.tiers-footnote {
	margin: 24px 0 0;
	padding: 14px 18px;
	background: rgba(29,36,33,0.03);
	border-radius: 12px;
	font-size: 0.88rem;
	color: var(--text-soft);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.5;
}
.tiers-footnote i { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

/* Service area cards */
.delivery-area { width: var(--container); margin: 110px auto 0; }
.area-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.area-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: 0 1px 2px rgba(29,36,33,0.03), 0 8px 24px -16px rgba(29,36,33,0.10);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	display: flex; flex-direction: column;
}
.area-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 2px 4px rgba(29,36,33,0.04), 0 24px 40px -16px rgba(29,36,33,0.18);
}
.area-card-head {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}
.area-card-head i {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint); color: var(--brand);
	border-radius: 10px; font-size: 0.95rem;
	flex-shrink: 0;
}
.area-card-head h3 {
	margin: 0; font-size: 1rem; font-weight: 700;
	letter-spacing: -0.015em; color: var(--ink);
}
.area-list {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	gap: 6px;
	flex: 1;
}
.area-list li {
	font-size: 0.92rem;
	color: var(--text-soft);
	padding: 4px 0 4px 16px;
	position: relative;
}
.area-list li::before {
	content: ""; position: absolute;
	left: 0; top: 12px;
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--brand);
	opacity: 0.5;
}
.area-card.area-card-ask {
	background: linear-gradient(135deg, var(--bg-tint), var(--surface) 70%);
	border: 1px dashed rgba(255,106,28,0.3);
}
.area-card.area-card-ask p {
	font-size: 0.92rem;
	color: var(--text-soft);
	margin: 0 0 18px;
	flex: 1;
}
.area-card.area-card-ask .btn { align-self: flex-start; }

@media (max-width: 720px) {
	.tier-card { padding: 28px 24px; }
	.tier-amount { font-size: 2.1rem; }
}

/* ============================================================
   "Who it helps" / use-case section (blister packaging, etc.)
   ============================================================ */
.who-section { width: var(--container); margin: 110px auto 0; }

/* "What we handle" / included-features tinted card */
.handle-section { width: var(--container); margin: 120px auto 0; }
.handle-card {
	background: linear-gradient(135deg, var(--brand2-tint) 0%, var(--surface) 65%);
	border-radius: var(--radius-xl);
	padding: 56px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
}
.handle-card::before {
	content: ""; position: absolute;
	top: -120px; right: -120px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(45,168,110,0.16), transparent 65%);
	border-radius: 50%; pointer-events: none;
}
.handle-card > * { position: relative; z-index: 1; }
.handle-head { margin-bottom: 36px; max-width: 600px; }
.handle-head .eyebrow { margin-bottom: 14px; }
.handle-head h2 { margin: 0 0 10px; color: var(--ink); }
.handle-head p { color: var(--text-soft); font-size: 1.05rem; line-height: 1.55; }
.handle-grid {
	display: grid;
	gap: 20px 28px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.handle-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.handle-item > i {
	flex-shrink: 0;
	width: 24px; height: 24px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand2);
	color: #fff;
	border-radius: 50%;
	font-size: 0.7rem;
	margin-top: 3px;
}
.handle-item b {
	display: block;
	font-size: 0.97rem;
	color: var(--ink);
	font-weight: 700;
	letter-spacing: -0.015em;
	margin-bottom: 3px;
}
.handle-item span {
	display: block;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--text-soft);
}

@media (max-width: 720px) {
	.handle-card { padding: 32px 24px; }
}

/* ============================================================
   Inline card "tag" pill (used on iron page for Monofer/Venofer)
   ============================================================ */
.card-tag {
	display: inline-block;
	margin-top: 14px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--brand-tint);
	color: var(--brand);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Standalone informational footnote under a section */
.section-footnote {
	width: 100%;
	margin: 28px 0 0;
	padding: 14px 18px;
	background: rgba(29,36,33,0.03);
	border-radius: 12px;
	font-size: 0.88rem;
	color: var(--text-soft);
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.55;
}
.section-footnote > i { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   Partner section (used on iron page for Atheria callout)
   ============================================================ */
.partner-section { width: var(--container); margin: 110px auto 0; }
.partner-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 48px;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
	position: relative;
	overflow: hidden;
}
.partner-card::before {
	content: ""; position: absolute;
	top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand2));
}
.partner-content { max-width: 720px; }
.partner-content h3 {
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin: 0 0 14px;
}
.partner-content p {
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--text-soft);
	margin: 0 0 28px;
}
.partner-stats {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin-bottom: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.partner-stats > div b {
	display: block;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}
.partner-stats > div span {
	display: block;
	font-size: 0.82rem;
	color: var(--muted);
	letter-spacing: 0.05em;
}

@media (max-width: 720px) {
	.partner-card { padding: 32px 24px; }
}

/* ============================================================
   Minor Ailments dedicated page
   ============================================================ */

/* How it works - 3 numbered steps */
.how-it-works { width: var(--container); margin: 100px auto 0; }
.how-steps {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	counter-reset: step;
}
.step {
	position: relative;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 32px 28px 28px;
	box-shadow: 0 1px 2px rgba(29,36,33,0.03), 0 8px 24px -16px rgba(29,36,33,0.10);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover {
	transform: translateY(-4px);
	box-shadow: 0 2px 4px rgba(29,36,33,0.04), 0 24px 40px -16px rgba(29,36,33,0.18);
}
.step-num {
	position: absolute;
	top: 24px; right: 28px;
	font-size: 2.5rem; font-weight: 800;
	color: var(--brand-tint);
	letter-spacing: -0.04em;
	line-height: 1;
	transition: color .3s ease;
}
.step:hover .step-num { color: rgba(255,106,28,0.25); }
.step-icon {
	width: 52px; height: 52px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint); color: var(--brand);
	border-radius: 14px;
	font-size: 22px;
	margin-bottom: 20px;
	transition: transform .35s var(--ease), background .3s ease, color .3s ease;
}
.step:hover .step-icon { transform: scale(1.06) rotate(-4deg); background: var(--brand); color: #fff; }
.step h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.step p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* Conditions section uses standard section spacing */
.ma-conditions-section { width: var(--container); margin: 110px auto 0; }

/* Condition list inside card */
.condition-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: grid;
	gap: 6px;
}
.condition-list li {
	position: relative;
	padding: 6px 0 6px 22px;
	font-size: 0.93rem;
	color: var(--text-soft);
	border-bottom: 1px dashed transparent;
	transition: color .2s ease;
}
.condition-list li::before {
	content: "";
	position: absolute;
	left: 0; top: 14px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--brand);
	opacity: 0.4;
	transition: opacity .2s ease, transform .2s ease;
}
.card:hover .condition-list li::before { opacity: 0.7; }
.condition-list li:hover { color: var(--ink); }
.condition-list li:hover::before { opacity: 1; transform: scale(1.2); }

/* "Coming soon" card variant */
.card.card-soon {
	background: linear-gradient(135deg, var(--brand2-tint), #fff 70%);
	position: relative;
}
.card.card-soon .icon {
	background: rgba(45,168,110,0.15);
	color: var(--brand2);
}
.card:hover.card-soon .icon { background: var(--brand2); color: #fff; }
.card.card-soon .condition-list li::before { background: var(--brand2); }
.card-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--brand2);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

/* "When we refer out" card variant */
.card.card-refer {
	background: linear-gradient(135deg, #fef7ec, #fff 70%);
}
.card.card-refer .icon {
	background: rgba(255,209,102,0.25);
	color: #c08a00;
}
.card:hover.card-refer .icon { background: #c08a00; color: #fff; }
.card.card-refer p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* Facts grid (FAQ-style) */
.ma-facts-section { width: var(--container); margin: 110px auto 0; }
.ma-facts-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}
.ma-fact-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: 0 1px 2px rgba(29,36,33,0.03), 0 8px 24px -16px rgba(29,36,33,0.10);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ma-fact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 2px 4px rgba(29,36,33,0.04), 0 24px 40px -16px rgba(29,36,33,0.18);
}
.ma-fact-icon {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint); color: var(--brand);
	border-radius: 12px;
	font-size: 17px;
	margin-bottom: 16px;
}
.ma-fact-card h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.ma-fact-card p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.6; }
.ma-fact-card a { color: var(--brand); font-weight: 700; }
.ma-fact-card a:hover { text-decoration: underline; }

/* ============================================================
   CTA section (light, used on iron / compounding pages)
   ============================================================ */
.cta-section { width: var(--container); margin: 88px auto 0; }
.cta-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 56px;
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
	position: relative;
	overflow: hidden;
}
.cta-card::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(500px 300px at 100% 0%, rgba(255,106,28,0.10), transparent 60%),
		radial-gradient(400px 280px at 0% 100%, rgba(45,168,110,0.08), transparent 60%);
	pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { margin-bottom: 14px; color: var(--ink); }
.cta-card p { font-size: 1.05rem; color: var(--text-soft); line-height: 1.65; max-width: 56ch; margin-bottom: 22px; }
.cta-card .cta-buttons,
.cta-card .hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

/* ============================================================
   Footer
   ============================================================ */
footer {
	margin-top: 120px;
	padding: 72px 0 0;
	background: var(--surface);
	border-top: 1px solid var(--line);
	position: relative;
	overflow: hidden;
}
/* Soft brand gradient accent strip across the top of the footer */
footer::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--brand) 0%, #FFA54D 50%, var(--brand2) 100%);
	opacity: 0.85;
}
/* Soft warm radial wash so the footer doesn't feel like a flat slab */
footer::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 8% 0%, rgba(255,106,28,0.05), transparent 45%),
	            radial-gradient(circle at 95% 100%, rgba(45,168,110,0.05), transparent 50%);
	pointer-events: none;
}
footer > * { position: relative; z-index: 1; }

.foot {
	width: var(--container); margin: 0 auto;
	display: grid; gap: 48px;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	padding-bottom: 52px;
}
.foot-col { min-width: 0; }

/* Brand block */
.foot-brand img { height: 42px; opacity: 0.95; }
.foot-brand p {
	margin-top: 18px; max-width: 32ch;
	font-size: 0.93rem; color: var(--text-soft); line-height: 1.6;
}
.foot-badges {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin-top: 22px;
}
.foot-badge {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 0.76rem; font-weight: 600;
	color: var(--brand-deep);
	background: var(--brand-tint);
	border: 1px solid rgba(255,106,28,0.18);
	padding: 5px 11px;
	border-radius: 999px;
	transition: transform .2s ease, border-color .2s ease;
}
.foot-badge:hover { transform: translateY(-1px); border-color: rgba(255,106,28,0.32); }
.foot-badge i { font-size: 0.7rem; color: var(--brand); }

/* Section headers with subtle orange dot prefix */
.foot h4 {
	font-size: 0.72rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--ink); margin: 0 0 22px;
	position: relative;
	padding-left: 14px;
}
.foot h4::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 6px; height: 6px;
	background: var(--brand);
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 0 3px rgba(255,106,28,0.12);
}

/* Links list (Services column) */
.foot-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-links a {
	color: var(--text-soft);
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: color .2s ease, transform .2s ease;
}
.foot-links a:hover {
	color: var(--brand);
	transform: translateX(3px);
}

/* Visit Us address + hours line */
.foot-address {
	font-style: normal;
	font-size: 0.93rem; color: var(--text-soft);
	line-height: 1.65;
	margin: 0 0 16px;
}
.foot-hours-line {
	display: flex; gap: 10px;
	font-size: 0.86rem; color: var(--text-soft);
	line-height: 1.5;
	margin: 0 0 16px;
}
.foot-hours-line i {
	color: var(--brand);
	background: var(--brand-tint);
	width: 26px; height: 26px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 7px;
	font-size: 0.78rem;
	flex-shrink: 0;
	margin-top: 1px;
}

/* "Open in Maps" arrow link */
.foot .link {
	color: var(--brand); font-weight: 700;
	font-size: 0.9rem;
	display: inline-flex; align-items: center; gap: 6px;
	transition: gap .2s ease, color .2s ease;
	text-decoration: none;
}
.foot .link::after { content: "→"; transition: transform .2s ease; }
.foot .link:hover { color: var(--brand-deep); gap: 10px; }
.foot .link:hover::after { transform: translateX(3px); }

/* Contact list */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li {
	display: flex; align-items: center; gap: 12px;
	font-size: 0.92rem; color: var(--text-soft);
}
.contact-list i {
	color: var(--brand);
	width: 30px; height: 30px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--brand-tint);
	border-radius: 8px;
	font-size: 0.85rem;
	flex-shrink: 0;
}
.contact-list span {
	color: var(--muted);
	font-size: 0.82rem;
	min-width: 38px;
}
.contact-list a {
	color: var(--ink); font-weight: 600;
	text-decoration: none;
	transition: color .2s ease;
}
.contact-list a:hover { color: var(--brand); }

/* Bottom bar — tinted strip that visually closes the footer */
.foot-bottom {
	background: rgba(29,36,33,0.025);
	border-top: 1px solid var(--line);
	padding: 22px 0;
	margin-top: 8px;
}
.foot-bottom-inner {
	width: var(--container); margin: 0 auto;
	display: flex; justify-content: space-between; align-items: center;
	gap: 12px; flex-wrap: wrap;
	font-size: 0.82rem; color: var(--muted);
}
.foot-built i { color: var(--brand); margin: 0 2px; }
.foot-bottom .heart { color: var(--brand); }

/* ============================================================
   Reveal - content is ALWAYS visible immediately (no opacity gating).
   The .in class is kept harmless so existing IntersectionObserver in
   script2.js doesn't break, but it no longer controls visibility.
   ============================================================ */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   Info note (used on multiple service pages)
   ============================================================ */
.info-note {
	display: flex; align-items: center; gap: 12px;
	background: var(--brand-tint);
	border: 1px solid rgba(255,106,28,0.2);
	color: var(--text);
	font-weight: 600;
	padding: 14px 18px;
	border-radius: 14px;
	margin: 24px 0;
}
.info-note i {
	background: var(--brand);
	color: #fff;
	border-radius: 50%;
	width: 24px; height: 24px;
	display: flex; align-items: center; justify-content: center;
	font-size: 0.85rem;
	flex-shrink: 0;
}

/* ============================================================
   Services page-specific styles (preserved)
   ============================================================ */
.services-hero {
	padding: 56px;
	background: var(--surface);
	border-radius: var(--radius-xl);
	box-shadow: 0 2px 4px rgba(29,36,33,0.03), 0 24px 48px -24px rgba(29,36,33,0.10);
	margin: 72px auto 0;
	width: var(--container);
	max-width: 100%;
}
.services-hero-inner { max-width: 1000px; margin: 0 auto; text-align: left; }
.services-hero h1 {
	font-size: clamp(2.4rem, 1.4rem + 3vw, 3.8rem);
	color: var(--ink);
	margin-bottom: 18px;
	line-height: 1.05;
	letter-spacing: -0.035em;
	font-weight: 800;
}
.services-hero p.lead {
	color: var(--text-soft);
	font-size: 1.15rem;
	line-height: 1.6;
	margin-bottom: 28px;
	max-width: 60ch;
}
.services-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.services-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0;
	border-top: 1px solid var(--line);
}
.services-feature-grid .feature {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 600;
	color: var(--text);
	font-size: 0.93rem;
}
.services-feature-grid .feature:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.services-feature-grid .feature:nth-child(odd) { padding-right: 16px; }
.services-feature-grid i {
	color: var(--brand);
	background: var(--brand-tint);
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 10px;
	font-size: 0.92rem;
	flex-shrink: 0;
}
.services-grid-section {
	width: var(--container);
	margin: 88px auto 0;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 14px;
}

/* ============================================================
   Alert blocks (success/error/info) - used by booking + refill forms
   ============================================================ */
.alert {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 20px;
	border-radius: var(--radius);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 20px 0 24px;
	border: 1px solid transparent;
}
.alert > i { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.alert > div { flex: 1; }
.alert b { display: block; margin-bottom: 2px; font-weight: 700; }

.alert.success {
	background: var(--brand2-tint);
	border-color: rgba(45,168,110,0.3);
	color: #1f6b48;
}
.alert.success > i { color: var(--brand2); }
.alert.success b { color: #145838; }

.alert.error {
	background: #fdecea;
	border-color: rgba(192,57,43,0.3);
	color: #8a2a1d;
}
.alert.error > i { color: #c0392b; }
.alert.error b { color: #8a2a1d; }

.alert.info {
	background: var(--brand-tint);
	border-color: rgba(255,106,28,0.25);
	color: var(--text);
}
.alert.info > i { color: var(--brand); }
.alert.info b { color: var(--brand-deep); }

/* ============================================================
   Appointment booking form
   ============================================================ */
.appt-hero { grid-template-columns: 1fr; }
.appt-hero .hero-card .lead {
	margin-bottom: 8px;
	max-width: none;
}
.appt-form { margin-top: 26px; }
.appt-form label {
	display: block;
	font-size: 0.85rem; font-weight: 600;
	color: var(--text-soft);
	margin-top: 18px;
	margin-bottom: 6px;
	letter-spacing: -0.005em;
}
.appt-form label:first-child { margin-top: 0; }
.appt-form .req { color: var(--brand); margin-left: 2px; }
.appt-form input,
.appt-form select,
.appt-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid var(--line-strong);
	background: #f9fbfa;
	font-size: 1rem;
	color: var(--text);
	font-family: inherit;
	transition: border-color .2s, box-shadow .2s;
}
.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
	border-color: var(--brand2);
	box-shadow: 0 0 0 3px rgba(45,168,110,0.15);
	outline: none;
}
.appt-form textarea { resize: vertical; min-height: 120px; }
.appt-form .grid-2 {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin-top: 8px;
}
/* Field-level info / warning note. Single line of text per .field-note. */
.field-note {
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--muted);
	margin: 8px 0 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.field-note > i { color: var(--brand); flex-shrink: 0; margin-top: 3px; font-size: 0.85rem; }
.field-note > span { flex: 1; min-width: 0; }
.field-note b { color: var(--ink); font-weight: 600; }
.field-note a { color: var(--brand); font-weight: 700; }
.field-note.field-note-warn { color: #8a3a1d; margin-top: 6px; }
.field-note.field-note-warn > i { color: #c0392b; }
.field-note.field-note-warn a { color: #c0392b; }

/* Section header inside the form */
.form-section-title {
	margin: 36px 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.form-section-title:first-of-type { margin-top: 28px; }
.form-section-title .optional {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: none;
	color: var(--muted);
}

/* Helper line below a section title */
.section-help {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--text-soft);
	margin: -4px 0 14px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	background: var(--brand-tint);
	border-radius: 10px;
	padding: 10px 14px;
}
.section-help > i { color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.section-help > span { flex: 1; }

/* Checkbox row (used for "no family doctor" opt-out) */
.checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 14px;
	padding: 12px 14px;
	background: rgba(29,36,33,0.03);
	border: 1px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--text-soft);
	font-weight: 500;
	transition: background .15s ease, border-color .15s ease;
}
.checkbox-row:hover { background: rgba(29,36,33,0.05); border-color: var(--line-strong); }
.checkbox-row input[type="checkbox"] {
	width: 18px; height: 18px;
	margin: 0;
	flex-shrink: 0;
	accent-color: var(--brand);
	cursor: pointer;
}
.checkbox-row span { line-height: 1.5; }

.appt-submit-row {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.appt-after-success {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.appt-after-success p { color: var(--text-soft); }

/* ============================================================
   Form styles (refill, transfer, new-prescription)
   ============================================================ */
form { display: grid; gap: 14px; }
label { font-weight: 600; color: var(--text-soft); font-size: 0.92rem; }
input, textarea, select {
	width: 100%; padding: 12px 14px; border-radius: 10px;
	border: 1px solid var(--line-strong);
	background: #f9fbfa;
	font-size: 1rem; color: var(--text);
	font-family: inherit;
	transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
	border-color: var(--brand2);
	box-shadow: 0 0 0 3px rgba(45,168,110,0.15);
	outline: none;
}
.submit {
	background: var(--brand2); color: #fff;
	border: 0; border-radius: 999px;
	padding: 14px 24px; font-weight: 700;
	font-family: inherit; font-size: 0.95rem;
	transition: filter .2s, transform .15s; cursor: pointer;
}
.submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.notice { color: var(--muted); font-size: 0.9rem; }

#noRxFormElement label,
#withRxFormElement label {
	display: block; font-weight: 600;
	color: var(--text-soft);
	margin-top: 14px; margin-bottom: 6px;
}
#noRxFormElement input, #noRxFormElement select, #noRxFormElement textarea,
#withRxFormElement input, #withRxFormElement select, #withRxFormElement textarea {
	width: 100%; padding: 12px 14px; border-radius: 10px;
	border: 1px solid var(--line-strong); background: #f9fbfa;
	font-size: 1rem; color: var(--text);
	transition: border .2s, box-shadow .2s;
}
#noRxFormElement input:focus, #noRxFormElement select:focus, #noRxFormElement textarea:focus,
#withRxFormElement input:focus, #withRxFormElement select:focus, #withRxFormElement textarea:focus {
	border-color: var(--brand2);
	box-shadow: 0 0 0 3px rgba(45,168,110,0.15);
	outline: none;
}
#noRxFormElement .grid-2 {
	display: grid; gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
#address, #addressWrapper { margin-top: 12px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.menu-toggle { display: inline-flex; }
	.navlinks {
		display: none; position: absolute; top: 100%; left: 0; right: 0;
		background: var(--surface); border: 1px solid var(--line);
		border-radius: var(--radius); padding: 14px;
		flex-direction: column; align-items: stretch; gap: 6px;
		box-shadow: var(--shadow); margin-top: 6px;
	}
	nav.active .navlinks { display: flex; }
	.navlinks > a, .nav-dropdown > a.nav-link { width: 100%; padding: 11px 12px; }
	.nav-dropdown { width: 100%; }
	.nav-dropdown-menu {
		position: static; opacity: 1; transform: none; pointer-events: auto;
		box-shadow: none; border: 0; padding: 4px 0 4px 12px;
		min-width: 0; display: none; margin-top: 4px;
	}
	.nav-dropdown.open .nav-dropdown-menu { display: block; }
	.nav-dropdown:hover .nav-dropdown-menu { display: block; }
	.nav-spacer { display: none; }
	.contact-dropdown { width: 100%; }
	.contact-toggle { width: 100%; justify-content: center; }
	.contact-menu { position: static; width: 100%; box-shadow: none; border: 0; padding: 6px 0; }
	.cta { width: 100%; justify-content: center; margin-top: 4px; }

	/* Hide desktop contact dropdown on mobile, show inline mobile copy */
	.contact-dropdown.mobile,
	.mobile-cta { display: block; width: 100%; }
}
@media (min-width: 1025px) {
	.contact-dropdown.mobile, .mobile-cta { display: none; }
}
@media (max-width: 960px) {
	.hero { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
	.hero-card { padding: 36px; }
	.support-grid { grid-template-columns: 1fr; }
	.trust-strip { grid-template-columns: repeat(2, 1fr); padding: 28px 32px; gap: 24px; }
	.trust-item:nth-child(3) { border-left: 0; padding-left: 0; }
	.cta-banner { grid-template-columns: 1fr; padding: 48px 32px; }
	.foot { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
	.foot-brand { grid-column: 1 / -1; }
	.services-hero { padding: 36px; }
}
@media (max-width: 720px) {
	.hero-card { padding: 28px 22px; }
	.trust-strip { grid-template-columns: 1fr; padding: 24px; }
	.trust-item { border-left: 0 !important; padding-left: 0 !important; padding-top: 16px; border-top: 1px solid var(--line); }
	.trust-item:first-child { padding-top: 0; border-top: 0; }
	.cta-banner { padding: 32px 24px; }
	.foot { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
	.foot-brand { grid-column: auto; }
	.foot-brand p { max-width: none; }
	.foot-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
	.services-hero { padding: 28px 22px; }
	.chip.feature:nth-child(odd) { padding-right: 0; }
	.chip.feature:nth-child(even) { padding-left: 0; border-left: 0; }
	.hero-list { grid-template-columns: 1fr; }

	/* Compact eyebrow chip on phones so the long tagline doesn't wrap inside the pill */
	.hero-eyebrow {
		font-size: 0.58rem;
		letter-spacing: 0.08em;
		padding: 7px 14px 7px 10px;
		gap: 8px;
		line-height: 1.4;
	}

	/* Trust-card values are slightly smaller so the 2x2 grid fits comfortably */
	.hero-trust-card { padding: 22px 24px; }
	.hero-trust-card .trust-value { font-size: 1.25rem; }
	.hero-trust-card .trust-grid { gap: 16px 20px; }
}

@media (max-width: 480px) {
	/* True phone widths: hero buttons stretch to match for easier tapping + visual rhythm */
	.hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}
