/*
 * Stalosan Commercial Supply — secondary note shown beneath the
 * [stalosan_stockist_finder] shortcode output.
 *
 * Deliberately understated: smaller type, muted colour, an outline
 * (not filled) button, so it never competes visually with the primary
 * stockist search above it. Uses the site's existing --sf-* design
 * tokens (defined globally in global-settings.css) so it inherits the
 * current brand colours/typography automatically.
 */

.scs-note {
	max-width: 640px;
	margin: 18px auto 0;
	padding-top: 18px;
	border-top: 1px solid var(--sf-border-soft, #DDD2BF);
	text-align: center;
}

.scs-note__title {
	margin: 0 0 4px;
	color: var(--sf-heading, #2C2520);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.scs-note__text {
	margin: 0 0 12px;
	color: var(--sf-muted, #746B62);
	font-size: 13px;
	line-height: 1.5;
}

.scs-note__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 16px;
	border: 1px solid var(--sf-burgundy, #8F1730);
	border-radius: var(--sf-radius-sm, 6px);
	background: var(--sf-burgundy, #8F1730);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: 0.18s ease;
}

/* Specificity note: the site's global `.breakdance a:hover{color:var(--bde-links-color-hover)}`
   (global-settings.css) resolves to the same burgundy-dark as our hover background, and its
   selector (class + type + pseudo) actually outranks a plain `.scs-note__btn:hover` (two
   classes, no type) on the type-selector tiebreak — that's what was pulling hover text back
   to burgundy-dark, making it nearly invisible against the burgundy-dark hover background.
   Scoping every rule under the `.scs-note` ancestor adds a third class to our selector,
   which cleanly outranks it without needing !important. */
.scs-note .scs-note__btn,
.scs-note .scs-note__btn:link,
.scs-note .scs-note__btn:visited {
	color: var(--sf-inverse, #F9F5EC);
}

.scs-note .scs-note__btn:hover,
.scs-note .scs-note__btn:focus,
.scs-note .scs-note__btn:focus-visible,
.scs-note .scs-note__btn:active {
	background: var(--sf-burgundy-dark, #64101F);
	border-color: var(--sf-burgundy-dark, #64101F);
	color: var(--sf-inverse, #F9F5EC);
}

@media (max-width: 480px) {
	.scs-note {
		padding-left: 12px;
		padding-right: 12px;
	}
}
