/*
 * Petland Cleveland Child — Footer enhancements
 *
 * Adds Helpful Links + Get in Touch + Follow Us inside a col-lg-7 that the
 * child injects via the parent's `footer_cols_1_after` hook. Styled to
 * match the parent's existing footer text + spacing rhythm (no dark-mode
 * overrides — the parent already inherits color from .footer).
 */

.cle-footer {
	color: inherit;
}

.cle-footer h4 {
	font-size: .95rem;
	letter-spacing: .02em;
}

/* Helpful Links — vertical list of plain links matching .footer .nav-link */
.cle-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: .5rem;
}

.cle-footer__links a {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: inherit;
	text-decoration: none;
	font-size: .9rem;
	transition: color .2s ease, transform .2s ease;
}

.cle-footer__links a::before {
	content: "\F285"; /* bi-chevron-right */
	font-family: bootstrap-icons !important;
	font-size: .7rem;
	color: var(--bs-primary, #CF5B1F);
	opacity: 0;
	margin-right: -.2rem;
	transition: opacity .2s ease, margin-right .2s ease;
}

.cle-footer__links a:hover {
	color: var(--bs-primary, #CF5B1F);
	transform: translateX(2px);
}

.cle-footer__links a:hover::before {
	opacity: 1;
	margin-right: 0;
}

/* Get in Touch list — icon + line */
.cle-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: .65rem;
}

.cle-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .9rem;
	line-height: 1.4;
}

.cle-footer__contact .bi {
	color: var(--bs-primary, #CF5B1F);
	font-size: 1rem;
	margin-top: .1rem;
	flex-shrink: 0;
}

.cle-footer__contact a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.cle-footer__contact a:hover {
	color: var(--bs-primary, #CF5B1F);
}

/* Right-aligned variant for the desktop right column (Get in Touch + Social).
   Icons hug the right edge so the column reads cleanly against the footer. */
@media (min-width: 992px) {
	.cle-footer__contact--end li {
		flex-direction: row-reverse;
		text-align: right;
	}
	.cle-footer__social--end {
		justify-content: flex-end;
	}
}

/* Social icon row */
.cle-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.cle-footer__social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .08);
	color: inherit;
	font-size: 1rem;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease, color .2s ease;
	border: 1px solid rgba(0, 0, 0, .08);
}

.cle-footer__social a:hover {
	background: var(--bs-primary, #CF5B1F);
	color: #fff;
	transform: translateY(-2px);
	border-color: transparent;
}

/* Light tonal tweak: when footer background is light, soften the social
   pill backgrounds so they don't look like blank circles. */
@media (prefers-color-scheme: light) {
	.cle-footer__social a {
		background: rgba(0, 0, 0, .04);
	}
}

/* =====================================================================
   Pre-footer financing CTA band (site-wide, injected via get_footer).
   Full-bleed brand-orange band that bridges page content and the footer,
   with a "View financing options" + "Apply now" pairing.
   ===================================================================== */
.cle-finance-band {
	background: linear-gradient(120deg, #CF5B1F 0%, #aa4b19 100%);
	color: #fff;
	padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.cle-finance-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2.5rem;
}

.cle-finance-band__copy {
	flex: 1 1 22rem;
	min-width: 0;
}

.cle-finance-band__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .9;
	margin-bottom: .5rem;
}

.cle-finance-band__title {
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 .4rem;
	color: #fff;
}

.cle-finance-band__lede {
	margin: 0;
	font-size: 1rem;
	max-width: 48ch;
	opacity: .95;
}

.cle-finance-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	flex-shrink: 0;
}

.cle-finance-band__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .8rem 1.5rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: .95rem;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.cle-finance-band__btn--solid {
	background: #fff;
	color: #aa4b19;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.cle-finance-band__btn--solid:hover {
	background: #fff;
	color: #8f3f15;
	transform: translateY(-2px);
}

.cle-finance-band__btn--ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .55);
}

.cle-finance-band__btn--ghost:hover {
	background: rgba(255, 255, 255, .2);
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 575.98px) {
	.cle-finance-band__actions {
		width: 100%;
	}
	.cle-finance-band__btn {
		flex: 1 1 auto;
	}
}
