/* Footer Styles - Compact & Modern */
.sw-footer {
	background: #ec814b;
	color: #ecf0f1;
	padding: 1.25rem 0;
	margin-top: auto;
}

.sw-footer .footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.sw-footer .footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.sw-footer .footer-links a {
	color: #ecf0f1;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s;
}

.sw-footer .footer-links a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.sw-footer .footer-links .divider {
	color: #7f8c8d;
	font-size: 0.75rem;
}

.sw-footer .footer-social {
	display: flex;
	gap: 1rem;
}

.sw-footer .footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #ecf0f1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	transition: all 0.2s;
}

.sw-footer .footer-social a:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.sw-footer .footer-copyright {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 576px) {
	.sw-footer {
		padding: 1rem 0;
	}

	.sw-footer .footer-links a {
		font-size: 0.8rem;
	}

	.sw-footer .footer-social a {
		width: 32px;
		height: 32px;
		font-size: 0.9rem;
	}
}