/**
 * The Herb Centre — homepage + locations layout layer.
 */

/* ---------- 1. How ordering works: numbered timeline band ---------- */
.thc-steps-band {
	background: linear-gradient(135deg, var(--thc-dark-2) 0%, #2a0b3f 55%, var(--thc-green-dark) 100%);
	color: #fff;
	padding: 64px 0;
}
.thc-steps-band__title {
	color: #fff;
	font-size: 30px;
	line-height: 1.2;
	margin: 0 0 34px;
	text-align: center;
}
.thc-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	counter-reset: sbstep;
}
.thc-step {
	position: relative;
	padding: 26px 20px 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--thc-radius-lg);
	background: rgba(255, 255, 255, 0.05);
}
.thc-step::after {
	content: "";
	position: absolute;
	top: 46px;
	right: -14px;
	width: 20px;
	height: 2px;
	background: rgba(255, 255, 255, 0.28);
}
.thc-step:last-child::after { display: none; }
.thc-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--thc-green);
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 14px;
}
.thc-step strong {
	display: block;
	font-size: 17px;
	margin-bottom: 6px;
	color: #fff;
}
.thc-step span:not(.thc-step__num) {
	display: block;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14.5px;
	line-height: 1.6;
}

/* ---------- 2. Why shoppers choose us: numbered rows ---------- */
.thc-why {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.thc-why__row {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 24px;
	border: 1px solid var(--thc-line);
	border-radius: var(--thc-radius-lg);
	background: #fff;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.thc-why__row:hover { box-shadow: var(--thc-shadow); transform: translateY(-2px); }
.thc-why__mark {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	color: var(--thc-green);
	opacity: 0.35;
	flex: 0 0 auto;
}
.thc-why__row h3 { margin: 0 0 8px; font-size: 18px; }
.thc-why__row p { margin: 0; color: var(--thc-ink-soft); font-size: 15px; line-height: 1.65; }

/* ---------- 3. Payments + shipping band ---------- */
.thc-payband {
	background: var(--thc-green-soft);
	padding: 62px 0;
}
.thc-payband .thc-container {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
	gap: 38px;
	align-items: center;
}
.thc-payband__lead h2 { margin: 0 0 12px; font-size: 28px; line-height: 1.22; }
.thc-payband__lead p { margin: 0 0 20px; color: var(--thc-ink-soft); }
.thc-payband__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.thc-paycard {
	background: #fff;
	border-radius: var(--thc-radius-lg);
	border: 1px solid rgba(250, 43, 152, 0.18);
	padding: 22px 20px;
}
.thc-paycard--hot {
	border-color: var(--thc-green);
	box-shadow: 0 10px 26px rgba(250, 43, 152, 0.16);
}
.thc-paycard__tag {
	display: inline-block;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 10px;
	color: var(--thc-green-dark);
}
.thc-paycard p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--thc-ink-soft); }

/* ---------- 4. Finding the right product: sticky split ---------- */
.thc-split {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr);
	gap: 40px;
	align-items: start;
}
.thc-split__aside { position: sticky; top: 110px; }
.thc-split__aside h2 { margin: 0 0 12px; font-size: 27px; line-height: 1.22; }
.thc-split__aside p { color: var(--thc-ink-soft); }
.thc-guide-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.thc-guide-card {
	background: #fff;
	border: 1px solid var(--thc-line);
	border-left: 4px solid var(--thc-green);
	border-radius: var(--thc-radius-lg);
	padding: 22px;
}
.thc-guide-card h3 { margin: 0 0 8px; font-size: 17px; }
.thc-guide-card p { margin: 0; color: var(--thc-ink-soft); font-size: 15px; line-height: 1.65; }

/* ---------- 5. Dosing table ---------- */
.thc-dose {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 26px;
	align-items: start;
}
.thc-dose__table {
	border: 1px solid var(--thc-line);
	border-radius: var(--thc-radius-lg);
	overflow: hidden;
	background: #fff;
}
.thc-dose__row {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--thc-line);
	font-size: 15px;
}
.thc-dose__row:last-child { border-bottom: 0; }
.thc-dose__row--head {
	background: var(--thc-dark-2);
	color: #fff;
	font-weight: 600;
}
.thc-dose__row span:first-child { font-weight: 600; }
.thc-dose__note {
	background: var(--thc-bg-alt);
	border-radius: var(--thc-radius-lg);
	padding: 24px;
	border: 1px solid var(--thc-line);
}
.thc-dose__note h3 { margin: 0 0 10px; font-size: 18px; }
.thc-dose__note p { margin: 0 0 12px; color: var(--thc-ink-soft); font-size: 15px; line-height: 1.65; }
.thc-dose__note p:last-child { margin-bottom: 0; }

/* ---------- 6. FAQ ---------- */
.thc-faq--wide {
	columns: 2;
	column-gap: 22px;
}
.thc-faq--wide .thc-faq__item { break-inside: avoid; margin-bottom: 12px; }

/* ---------- 7. Editorial + chips ---------- */
.thc-editorial {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}
.thc-editorial__main h2 { margin: 0 0 14px; font-size: 28px; line-height: 1.22; }
.thc-editorial__main h3 { margin: 28px 0 12px; font-size: 21px; }
.thc-editorial__main p { color: var(--thc-ink-soft); line-height: 1.75; margin: 0 0 14px; }
.thc-quote {
	background: var(--thc-dark-2);
	color: #fff;
	border-radius: var(--thc-radius-lg);
	padding: 24px;
	margin-bottom: 24px;
	border-left: 5px solid var(--thc-green);
}
.thc-quote p { margin: 0; font-size: 17px; line-height: 1.55; }
.thc-editorial__side h3 { margin: 0 0 12px; font-size: 18px; }
.thc-chip-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.thc-chip-list a {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--thc-green-soft);
	color: var(--thc-green-dark);
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(250, 43, 152, 0.2);
}
.thc-chip-list a:hover { background: var(--thc-green); color: #fff; }

/* ---------- 8. Region grid ---------- */
.thc-region-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 14px;
	margin-top: 22px;
}
.thc-region-grid a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 18px;
	background: #fff;
	border: 1px solid var(--thc-line);
	border-radius: var(--thc-radius-lg);
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.thc-region-grid a:hover {
	border-color: var(--thc-green);
	transform: translateY(-2px);
	box-shadow: var(--thc-shadow);
}
.thc-region-grid strong { font-size: 15.5px; }
.thc-region-grid span { font-size: 13px; color: var(--thc-ink-soft); }

/* ---------- 9. About band ---------- */
.thc-about {
	background: var(--thc-dark-2);
	color: #fff;
	padding: 62px 0;
}
.thc-about__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}
.thc-about h2 { color: #fff; margin: 0 0 14px; font-size: 28px; }
.thc-about p { color: rgba(255, 255, 255, 0.76); line-height: 1.75; margin: 0 0 14px; }
.thc-about__facts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.thc-about__facts li {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--thc-radius-lg);
	padding: 18px;
}
.thc-about__facts strong { display: block; color: var(--thc-green-bright); font-size: 20px; margin-bottom: 4px; }
.thc-about__facts span { display: block; font-size: 13.5px; color: rgba(255, 255, 255, 0.72); line-height: 1.5; }

/* ---------- Locations hub + guides ---------- */
.page-template-page-locations .thc-page-hero {
	background: linear-gradient(135deg, var(--thc-dark-2), #3b0d55);
	border-bottom: 0;
	color: #fff;
	padding: 56px 0;
}
.page-template-page-locations .thc-page-hero h1 { color: #fff; }
.page-template-page-locations .thc-page-hero__lede { color: rgba(255, 255, 255, 0.8); max-width: 820px; }
.page-template-page-locations .thc-page-hero .thc-breadcrumbs,
.page-template-page-locations .thc-page-hero .thc-breadcrumbs a { color: rgba(255, 255, 255, 0.7); }

.thc-loc-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.thc-loc-card {
	border-top: 4px solid var(--thc-green);
	padding: 22px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.thc-loc-card:hover { transform: translateY(-3px); box-shadow: var(--thc-shadow-lg); }
.thc-loc-card__abbr {
	background: var(--thc-green);
	border-radius: 999px;
	min-width: 46px;
	height: 32px;
}
.thc-location-card__title { font-size: 1.15rem; line-height: 1.25; font-weight: 800; }
.thc-loc-card__meta {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--thc-green-dark);
	margin: 12px 0 14px;
}
.thc-loc-card__cities a { background: var(--thc-bg-alt); }
.thc-loc-card__cities a:hover { background: var(--thc-green); color: #fff; border-color: var(--thc-green); }
.thc-loc-card__all { color: var(--thc-green-dark); }

.thc-loc-facts { gap: 10px; }
.thc-loc-facts li::before { color: var(--thc-green); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.thc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.thc-step::after { display: none; }
	.thc-payband .thc-container,
	.thc-split,
	.thc-dose,
	.thc-editorial,
	.thc-about__inner { grid-template-columns: minmax(0, 1fr); }
	.thc-split__aside { position: static; }
	.thc-payband__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
	.thc-steps-band { padding: 44px 0; }
	.thc-steps-band__title { font-size: 24px; }
	.thc-steps,
	.thc-why,
	.thc-guide-grid,
	.thc-payband__cards,
	.thc-about__facts { grid-template-columns: minmax(0, 1fr); }
	.thc-faq--wide { columns: 1; }
	.thc-dose__row { grid-template-columns: minmax(0, 1fr); gap: 4px; }
	.thc-region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.thc-editorial__main h2,
	.thc-payband__lead h2,
	.thc-about h2 { font-size: 23px; }
}
