/* =============================================
   Footer — solid.co.ke
   Newsletter section removed entirely (decision: no newsletter).
   Shop + Brands columns removed (redundant with header nav).
   Only Help + About remain — fixed content, not Customizer-editable.
   ============================================= */

.site-footer {
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border);
	margin-top: 64px;
}

.site-footer__inner {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	padding: 56px 24px 40px;
}

/* Link columns: 2, centered, evenly spaced */
.footer-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	text-align: center;
}

.footer-column h4 {
	font-size: 0.95rem;
	margin-bottom: 14px;
	color: var(--color-text);
}

.footer-column ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-column ul li a {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	line-height: 1.4;
	word-break: break-word;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus-visible {
	color: var(--color-accent);
}

/* Bottom bar: copyright left, "Designed by" credit right */
.site-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.site-footer__bottom p {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin: 0;
}

.footer-credit a {
	color: var(--color-text-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
	color: var(--color-accent);
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 480px) {
	.site-footer__inner {
		padding: 40px 16px 28px;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.site-footer__bottom {
		padding: 16px;
		flex-direction: column;
		text-align: center;
		gap: 6px;
	}

	.site-footer__bottom p {
		font-size: 0.8rem;
	}

	.footer-credit {
		font-size: 0.75rem;
	}
}