/* ==========================================================================
   SubsHub Store Fixes — storefront sections (v1.1.0)

   Styles for the homepage sections, product-page blocks, card badges,
   category intros and the post-purchase page. Uses the theme's own custom
   properties so it inherits the live brand colours, with safe fallbacks.
   ========================================================================== */

:root {
	--shf-gap: 20px;
	--shf-pad: clamp(20px, 4vw, 32px);
	--shf-card-radius: var(--radius, 18px);
}

.shf-eyebrow-c { justify-content: center; }

/* --------------------------------------------------------------------------
   Repair: an author rule was beating the browser's own [hidden] behaviour,
   so the comparison bar and its modal were painted over every page whether
   or not anything had been selected. A hidden element must stay hidden.
   -------------------------------------------------------------------------- */

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Announcement bar — one line, factual, dismissible.
   -------------------------------------------------------------------------- */

.shf-abar {
	background: var(--ink, #14171a);
	color: #fff;
	font-size: 13.5px;
	line-height: 1.4;
}

.shf-abar__in {
	max-width: var(--wrap, 1240px);
	margin: 0 auto;
	padding: 9px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.shf-abar__t {
	margin: 0;
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	justify-content: center;
}

.shf-abar__dot { opacity: .45; }

.shf-abar__a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 600;
	white-space: nowrap;
}

.shf-abar__a:hover { color: #fff; opacity: .85; }

.shf-abar__x {
	flex: 0 0 auto;
	background: transparent;
	border: 0;
	color: #fff;
	opacity: .6;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.shf-abar__x:hover { opacity: 1; background: rgba(255, 255, 255, .12); }
.shf-abar__x:focus-visible { outline: 2px solid #fff; outline-offset: 1px; }

@media (max-width: 560px) {
	.shf-abar { font-size: 12.5px; }
	.shf-abar__in { padding: 8px 10px; gap: 6px; }
	.shf-abar__dot { display: none; }
}

/* --------------------------------------------------------------------------
   404 recovery block.
   -------------------------------------------------------------------------- */

.shf-404 {
	max-width: 680px;
	margin: 0 auto;
	padding: 26px 0 10px;
}

.shf-404 h2 { font-size: 20px; margin: 0 0 14px; }
.shf-404 .shf-hsearch { margin: 0 0 18px; }
.shf-404 .shf-catguides { justify-content: flex-start; }

/* --------------------------------------------------------------------------
   Mobile: collapse the shop filter panel, and give the comparison
   checkboxes a target a thumb can actually hit.
   -------------------------------------------------------------------------- */

.shf-filterbox {
	border: 1px solid var(--line, rgba(20, 20, 20, .14));
	border-radius: 14px;
	margin: 0 0 18px;
	background: var(--surface, #fff);
}

.shf-filterbox > summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 18px;
	font-weight: 650;
	font-size: 15px;
	min-height: 46px;
	position: relative;
}

.shf-filterbox > summary::-webkit-details-marker { display: none; }

.shf-filterbox > summary::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 19px;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: .5;
}

.shf-filterbox[open] > summary::after { transform: rotate(-135deg); }
.shf-filterbox > *:not(summary) { padding: 0 18px 16px; }

input.sse-compare-cb {
	width: 22px;
	height: 22px;
	min-width: 22px;
	min-height: 22px;
	cursor: pointer;
}

@media (max-width: 780px) {
	input.sse-compare-cb {
		width: 26px;
		height: 26px;
		min-width: 26px;
		min-height: 26px;
	}
}

/* --------------------------------------------------------------------------
   Hero search
   -------------------------------------------------------------------------- */

.shf-hsearch {
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(620px, 100%);
	margin: 22px auto 0;
	padding: 6px 6px 6px 16px;
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .12));
	border-radius: 999px;
	box-shadow: var(--shadow, 0 8px 30px rgba(20, 20, 20, .07));
}

.shf-hsearch__ico {
	display: inline-flex;
	flex: 0 0 auto;
	opacity: .55;
}

.shf-hsearch__ico svg { width: 20px; height: 20px; }

.shf-hsearch__in {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font: inherit;
	font-size: 16px;
	color: inherit;
	padding: 12px 4px;
	-webkit-appearance: none;
}

.shf-hsearch__in::-webkit-search-cancel-button { display: none; }

.shf-hsearch__go {
	flex: 0 0 auto;
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 650;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--accent, #4d7cff);
	color: #fff;
	min-height: 44px;
}

.shf-hsearch:focus-within {
	border-color: var(--accent, #4d7cff);
	box-shadow: 0 0 0 4px rgba(77, 124, 255, .16);
}

@media (max-width: 480px) {
	.shf-hsearch { padding-left: 12px; }
	.shf-hsearch__go { padding: 12px 16px; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.shf-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--shf-gap);
	grid-template-columns: repeat(4, 1fr);
	counter-reset: shf;
}

.shf-step {
	position: relative;
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--shf-card-radius);
	padding: var(--shf-pad);
}

.shf-step__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent, #4d7cff);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 14px;
}

.shf-step__t { font-size: 17px; margin: 0 0 8px; line-height: 1.3; }
.shf-step__p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted, #5c6152); }

@media (max-width: 900px) { .shf-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shf-steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Plan finder
   -------------------------------------------------------------------------- */

.shf-finder__box {
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--radius-lg, 28px);
	padding: clamp(22px, 4vw, 40px);
	box-shadow: var(--shadow, 0 8px 30px rgba(20, 20, 20, .06));
}

.shf-finder__head { margin-bottom: 26px; }
.shf-finder__head .sh-lead { margin: 10px 0 0; }

.shf-q { margin-bottom: 22px; }

.shf-q__l {
	display: block;
	font-weight: 650;
	font-size: 15px;
	margin-bottom: 10px;
}

.shf-opts { display: flex; flex-wrap: wrap; gap: 10px; }

.shf-opt {
	font: inherit;
	font-size: 14.5px;
	font-weight: 550;
	cursor: pointer;
	padding: 11px 18px;
	min-height: 44px;
	border-radius: 999px;
	border: 1px solid var(--line, rgba(20, 20, 20, .14));
	background: transparent;
	color: inherit;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.shf-opt:hover { border-color: var(--accent, #4d7cff); }

.shf-opt[aria-pressed="true"] {
	background: var(--accent, #4d7cff);
	border-color: var(--accent, #4d7cff);
	color: #fff;
}

.shf-opt:focus-visible { outline: 3px solid var(--accent, #4d7cff); outline-offset: 2px; }

.shf-finder__out:empty { display: none; }

.shf-finder__out {
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid var(--line, rgba(20, 20, 20, .10));
}

.shf-fout__h { font-size: 16px; font-weight: 650; margin: 0 0 14px; }

.shf-fgrid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }

.shf-fcard {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--shf-card-radius);
	text-decoration: none;
	color: inherit;
	background: var(--bg, #fbfbf9);
	transition: transform .15s ease, box-shadow .15s ease;
}

.shf-fcard:hover { transform: translateY(-2px); box-shadow: var(--shadow, 0 8px 24px rgba(0, 0, 0, .08)); }
.shf-fcard__img { width: 42px; height: 42px; object-fit: contain; border-radius: 10px; background: #fff; }
.shf-fcard__n { font-weight: 650; font-size: 15px; line-height: 1.3; }
.shf-fcard__p { font-size: 14px; color: var(--muted, #5c6152); }
.shf-fcard__p b { color: inherit; font-size: 16px; }
.shf-fcard__go { font-size: 13.5px; font-weight: 600; color: var(--accent, #4d7cff); margin-top: auto; }

.shf-fnone { font-size: 15px; color: var(--muted, #5c6152); margin: 0; }
.shf-fnone a { color: inherit; }

@media (max-width: 760px) { .shf-fgrid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Plan types + comparison
   -------------------------------------------------------------------------- */

.shf-terms {
	display: grid;
	gap: var(--shf-gap);
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 40px;
}

.shf-term {
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--shf-card-radius);
	padding: var(--shf-pad);
}

.shf-term__t { font-size: 16px; margin: 0 0 8px; }
.shf-term__p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted, #5c6152); }

@media (max-width: 900px) { .shf-terms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shf-terms { grid-template-columns: 1fr; } }

.shf-cmp {
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--radius-lg, 28px);
	padding: clamp(20px, 4vw, 34px);
}

.shf-cmp__h { font-size: clamp(19px, 2.4vw, 24px); margin: 0 0 18px; }
.shf-cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.shf-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: 14.5px;
}

.shf-table th,
.shf-table td {
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid var(--line, rgba(20, 20, 20, .10));
	vertical-align: top;
	line-height: 1.55;
}

.shf-table thead th {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--muted, #5c6152);
	border-bottom-width: 2px;
}

.shf-table tbody th { font-weight: 650; width: 30%; }
.shf-table tbody tr:last-child th,
.shf-table tbody tr:last-child td { border-bottom: 0; }

.shf-cmp__note {
	margin: 16px 0 0;
	font-size: 14px;
	color: var(--muted, #5c6152);
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Confidence block (replaces the old testimonial wall)
   -------------------------------------------------------------------------- */

.shf-conf__grid {
	display: grid;
	gap: var(--shf-gap);
	grid-template-columns: repeat(3, 1fr);
}

.shf-conf {
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--shf-card-radius);
	padding: var(--shf-pad);
}

.shf-conf__ico { display: inline-flex; margin-bottom: 12px; color: var(--accent, #4d7cff); }
.shf-conf__ico svg { width: 22px; height: 22px; }
.shf-conf__t { font-size: 16px; margin: 0 0 8px; }
.shf-conf__p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted, #5c6152); }

@media (max-width: 900px) { .shf-conf__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shf-conf__grid { grid-template-columns: 1fr; } }

.shf-conf__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 24px;
	font-size: 14px;
}

.shf-conf__links a { color: inherit; text-underline-offset: 3px; }

.shf-reviews-soon {
	margin-top: 30px;
	padding: clamp(20px, 4vw, 30px);
	border: 1px dashed var(--line, rgba(20, 20, 20, .22));
	border-radius: var(--shf-card-radius);
	background: transparent;
}

.shf-reviews-soon h3 { margin: 0 0 8px; font-size: 17px; }
.shf-reviews-soon p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--muted, #5c6152); max-width: 70ch; }

/* --------------------------------------------------------------------------
   Buying guides
   -------------------------------------------------------------------------- */

.shf-guides__grid {
	display: grid;
	gap: var(--shf-gap);
	grid-template-columns: repeat(3, 1fr);
}

.shf-guide {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: var(--shf-pad);
	background: var(--surface, #fff);
	border: 1px solid var(--line, rgba(20, 20, 20, .10));
	border-radius: var(--shf-card-radius);
	text-decoration: none;
	color: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}

.shf-guide:hover { transform: translateY(-2px); box-shadow: var(--shadow, 0 8px 24px rgba(0, 0, 0, .08)); }
.shf-guide__t { font-weight: 650; font-size: 16px; line-height: 1.35; }
.shf-guide__m { font-size: 14px; color: var(--muted, #5c6152); line-height: 1.6; }

.shf-guide__go {
	margin-top: auto;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--accent, #4d7cff);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.shf-guide__go svg { width: 14px; height: 14px; }

@media (max-width: 900px) { .shf-guides__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shf-guides__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Product page — plan details, inclusions, activation, FAQ
   -------------------------------------------------------------------------- */

.shf-spec {
	margin: 22px 0 0;
	border: 1px solid var(--line, rgba(20, 20, 20, .12));
	border-radius: var(--shf-card-radius);
	overflow: hidden;
	background: var(--surface, #fff);
}

.shf-spec__h {
	margin: 0;
	padding: 14px 18px;
	font-size: 13px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--muted, #5c6152);
	border-bottom: 1px solid var(--line, rgba(20, 20, 20, .10));
	background: rgba(0, 0, 0, .015);
}

.shf-spec__list { margin: 0; padding: 0; }

.shf-spec__row {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 0;
	border-bottom: 1px solid var(--line, rgba(20, 20, 20, .07));
}

.shf-spec__row:last-child { border-bottom: 0; }

.shf-spec__k {
	margin: 0;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted, #5c6152);
}

.shf-spec__v {
	margin: 0;
	padding: 12px 18px;
	font-size: 14.5px;
	line-height: 1.55;
}

.shf-spec__v a { color: inherit; }

@media (max-width: 460px) {
	.shf-spec__row { grid-template-columns: 1fr; }
	.shf-spec__k { padding-bottom: 0; }
	.shf-spec__v { padding-top: 4px; }
}

.shf-lists {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
	margin: 26px 0 0;
}

@media (max-width: 640px) { .shf-lists { grid-template-columns: 1fr; } }

.shf-list {
	border: 1px solid var(--line, rgba(20, 20, 20, .12));
	border-radius: var(--shf-card-radius);
	padding: 18px 20px;
	background: var(--surface, #fff);
}

.shf-list h3 { font-size: 15px; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.shf-list ul { margin: 0; padding: 0; list-style: none; }

.shf-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 9px;
	font-size: 14.5px;
	line-height: 1.55;
}

.shf-list li:last-child { margin-bottom: 0; }

.shf-list--yes li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 6px;
	width: 12px;
	height: 7px;
	border-left: 2px solid #1a7f37;
	border-bottom: 2px solid #1a7f37;
	transform: rotate(-45deg);
}

.shf-list--no li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 11px;
	height: 2px;
	background: #b4590a;
}

.shf-steps--pdp { grid-template-columns: 1fr; gap: 0; margin: 26px 0 0; }

.shf-steps--pdp .shf-step {
	border: 0;
	border-left: 2px solid var(--line, rgba(20, 20, 20, .14));
	border-radius: 0;
	padding: 0 0 20px 22px;
	margin-left: 16px;
	background: transparent;
}

.shf-steps--pdp .shf-step:last-child { padding-bottom: 0; }

.shf-steps--pdp .shf-step__n {
	position: absolute;
	left: -18px;
	top: -2px;
	width: 32px;
	height: 32px;
	margin: 0;
	font-size: 14px;
}

.shf-steps--pdp .shf-step__t { font-size: 15.5px; }

.shf-pfaq { margin: 26px 0 0; }
.shf-pfaq h2 { font-size: 19px; margin: 0 0 14px; }

.shf-pfaq details {
	border: 1px solid var(--line, rgba(20, 20, 20, .12));
	border-radius: 12px;
	margin-bottom: 10px;
	background: var(--surface, #fff);
}

.shf-pfaq summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 44px 14px 18px;
	font-weight: 600;
	font-size: 15px;
	position: relative;
	min-height: 44px;
}

.shf-pfaq summary::-webkit-details-marker { display: none; }

.shf-pfaq summary::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 20px;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: .5;
	transition: transform .18s ease;
}

.shf-pfaq details[open] summary::after { transform: rotate(-135deg); }
.shf-pfaq .shf-pfaq__a { padding: 0 18px 16px; font-size: 14.5px; line-height: 1.65; color: var(--muted, #5c6152); }
.shf-pfaq .shf-pfaq__a p { margin: 0 0 10px; }
.shf-pfaq .shf-pfaq__a p:last-child { margin-bottom: 0; }
.shf-pfaq .shf-pfaq__a a { color: inherit; }

/* Sticky mobile buy bar */
.shf-buybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	display: none;
	align-items: center;
	gap: 12px;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: var(--surface, #fff);
	border-top: 1px solid var(--line, rgba(20, 20, 20, .12));
	box-shadow: 0 -6px 24px rgba(0, 0, 0, .08);
}

.shf-buybar__info { flex: 1 1 auto; min-width: 0; }
.shf-buybar__n { display: block; font-size: 13px; color: var(--muted, #5c6152); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shf-buybar__p { display: block; font-size: 16px; font-weight: 700; }
.shf-buybar__p del { font-weight: 400; opacity: .5; font-size: 13px; margin-left: 6px; }

.shf-buybar__go {
	flex: 0 0 auto;
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 650;
	font-size: 15px;
	padding: 13px 22px;
	border-radius: 999px;
	background: var(--accent, #4d7cff);
	color: #fff;
	min-height: 46px;
}

@media (max-width: 780px) {
	.single-product .shf-buybar.is-on { display: flex; }
	.single-product.shf-has-buybar { padding-bottom: 76px; }
}

/* --------------------------------------------------------------------------
   Product card badges (shop, category, search, homepage)
   -------------------------------------------------------------------------- */

.shf-cbadges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
}

.shf-cbadge {
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1;
	padding: 5px 9px;
	border-radius: 999px;
	border: 1px solid var(--line, rgba(20, 20, 20, .14));
	color: var(--muted, #5c6152);
	max-width: 100%;
	overflow-wrap: anywhere;
}

.shf-cbadge--own { border-color: rgba(26, 127, 55, .35); color: #1a7f37; }
.shf-cbadge--dur { border-color: rgba(77, 124, 255, .35); color: var(--accent, #4d7cff); }

/* --------------------------------------------------------------------------
   Category page intro + FAQ
   -------------------------------------------------------------------------- */

.shf-catintro {
	margin: 0 0 26px;
	font-size: 15.5px;
	line-height: 1.7;
	max-width: 74ch;
	color: var(--muted, #5c6152);
}

.shf-catintro strong { color: inherit; }

.shf-catblock {
	margin: 44px 0 0;
	padding-top: 34px;
	border-top: 1px solid var(--line, rgba(20, 20, 20, .10));
}

.shf-catblock h2 { font-size: clamp(20px, 2.6vw, 26px); margin: 0 0 16px; }

.shf-catguides { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }

.shf-catguides a {
	display: inline-block;
	font-size: 14px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--line, rgba(20, 20, 20, .14));
	text-decoration: none;
	color: inherit;
	min-height: 44px;
	line-height: 24px;
}

.shf-catguides a:hover { border-color: var(--accent, #4d7cff); }

/* --------------------------------------------------------------------------
   Cart, checkout and the order-received page
   -------------------------------------------------------------------------- */

.shf-note {
	margin: 18px 0;
	padding: 16px 18px;
	border: 1px solid var(--line, rgba(20, 20, 20, .12));
	border-left: 3px solid var(--accent, #4d7cff);
	border-radius: 12px;
	background: var(--surface, #fff);
	font-size: 14.5px;
	line-height: 1.65;
}

.shf-note strong { display: block; margin-bottom: 4px; }
.shf-note a { color: inherit; }

.shf-thanks { margin: 0 0 28px; }

.shf-thanks__timeline {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	counter-reset: t;
}

.shf-thanks__timeline li {
	position: relative;
	padding: 0 0 18px 30px;
	border-left: 2px solid var(--line, rgba(20, 20, 20, .14));
	margin-left: 10px;
	font-size: 14.5px;
	line-height: 1.6;
}

.shf-thanks__timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }

.shf-thanks__timeline li::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent, #4d7cff);
}

.shf-thanks__timeline b { display: block; }

.shf-wa-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	padding: 13px 22px;
	border-radius: 999px;
	background: #25d366;
	color: #05320f;
	font-weight: 650;
	font-size: 15px;
	text-decoration: none;
	min-height: 46px;
}

.shf-wa-cta:hover { filter: brightness(.96); color: #05320f; }

/* --------------------------------------------------------------------------
   Shared utilities
   -------------------------------------------------------------------------- */

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

@media (prefers-reduced-motion: reduce) {
	.shf-guide,
	.shf-fcard { transition: none; }
}
