<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">footer {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: white;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.footer-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: url('data:image/svg+xml;utf8,&lt;svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"&gt;&lt;path d="M0,70 C150,110 350,30 600,50 C850,70 1050,110 1200,70 L1200,0 L0,0 Z" fill="%23ffffff08"/&gt;&lt;/svg&gt;');
	background-size: cover;
}

.footer .container {
	max-width: 1280px;
}

.footer-title {
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	font-weight: 600;
	font-size: 20px;
}

.footer-title:after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	bottom: -10px;
	left: 0;
	background: #6c63ff;
	border-radius: 3px;
}

.footer-links .nav-link {
	padding: 5px 0;
	color: #ccc;
	position: relative;
	padding-left: 15px;
	transition: all 0.3s ease;
}

.footer-links .nav-link:before {
	content: 'â†’';
	position: absolute;
	left: 0;
	opacity: 0;
	transition: all 0.3s ease;
	color: #6c63ff;
}

.footer-links .nav-link:hover {
	color: white;
	padding-left: 20px;
}

.footer-links .nav-link:hover:before {
	opacity: 1;
	left: -5px;
}

.footer .contact-info li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	color: #ccc;
}

.footer .contact-info i {
	color: #5551a3;
	margin-right: 10px;
	margin-top: 3px;
	font-size: 18px;
}

.footer .contact-info a {
	color: #ddd;
	transition: all 0.3s ease;
}

.footer .contact-info a:hover {
	color: white;
	text-decoration: none;
}

.newsletter-form .form-control {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	height: 45px;
}

.newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
	background: #6c63ff;
	color: white;
	font-weight: 500;
	height: 45px;
	transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
	background: #4d44db;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: #6c63ff;
	transform: translateY(-3px);
}

.payment-methods img {
	height: 25px;
	margin-right: 10px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.payment-methods img:hover {
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	padding-bottom: 20px;
}

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: #6c63ff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: #4d44db;
	transform: translateY(-3px);
}

@media (max-width: 767.98px) {
	.footer-col {
		margin-bottom: 30px;
	}

	.footer-title:after {
		left: 25px;
		transform: translateX(-50%);
	}

	.footer-links {
		text-align: left;
	}

	.footer-links .nav-link {
		padding-left: 0;
	}

	.footer-links .nav-link:before {
		display: none;
	}

	.contact-info {
		text-align: left;
	}

	.contact-info li {
                /*justify-content: center;*/
	}

	.social-links {
		justify-content: center;
	}
}</pre></body></html>