/**
 * Site Footer Styles
 *
 * Styles for the global site footer
 *
 * @package MattressProtectorReviews
 */

/* ===================================
   Site Footer
   =================================== */

.mpr-site-footer {
	background-color: var(--gray-100);
	border-top: 1px solid var(--gray-200);
	padding: 3rem 0 2rem;
	margin-top: 4rem;
}

.mpr-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ===================================
   Footer Navigation
   =================================== */

.mpr-footer-navigation {
	margin-bottom: 2rem;
}

.footer-navigation-container {
	display: block;
}

.footer-navigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-navigation .menu-item {
	margin: 0;
	padding: 0;
}

.footer-navigation .menu-item a {
	color: var(--gray-700);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-navigation .menu-item a:hover,
.footer-navigation .menu-item a:focus {
	color: var(--blue-600);
	text-decoration: underline;
}

/* ===================================
   Footer Disclaimer
   =================================== */

.mpr-footer-disclaimer {
	max-width: 800px;
	margin: 0 auto 1.5rem;
	padding: 1rem 1.5rem;
	background-color: var(--gray-50);
	border-radius: 8px;
	border: 1px solid var(--gray-200);
}

.mpr-footer-disclaimer p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--gray-600);
	text-align: center;
}

.mpr-footer-disclaimer strong {
	color: var(--gray-900);
	font-weight: 600;
}

.mpr-footer-link {
	color: var(--blue-600);
	text-decoration: none;
	font-weight: 500;
	margin-left: 0.25rem;
	transition: color 0.2s ease;
}

.mpr-footer-link:hover,
.mpr-footer-link:focus {
	color: var(--blue-700);
	text-decoration: underline;
}

/* ===================================
   Footer Copyright
   =================================== */

.mpr-footer-copyright {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid var(--gray-200);
}

.mpr-footer-copyright p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--gray-500);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
	.mpr-site-footer {
		padding: 2rem 0 1.5rem;
		margin-top: 3rem;
	}

	.footer-navigation {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer-navigation .menu-item a {
		font-size: 0.9375rem;
	}

	.mpr-footer-disclaimer {
		padding: 1rem;
	}

	.mpr-footer-disclaimer p {
		font-size: 0.75rem;
	}

	.mpr-footer-copyright p {
		font-size: 0.8125rem;
	}
}
