.webcommerce-footer {
	background-color: #f8f9fa;
	padding: 40px 0 20px;
	margin-top: 50px;
	border-top: 1px solid #dee2e6;
}

.footer-section {
	margin-bottom: 30px;
}

.footer-logo {
	max-height: 50px;
	width: auto;
}

.footer-brand {
	color: #333;
	font-weight: bold;
	margin-bottom: 15px;
}

.footer-description {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 0;
}

.footer-heading {
	color: #333;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 16px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-link {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--primary-color, #007bff);
	text-decoration: none;
}

.footer-contact {
	color: #666;
	font-size: 14px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.footer-contact i {
	margin-right: 10px;
	width: 16px;
	color: var(--primary-color, #007bff);
}

.footer-social {
	display: flex;
	gap: 15px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: var(--primary-color, #007bff);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: var(--secondary-color, #0056b3);
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

.footer-divider {
	border: 0;
	border-top: 1px solid #dee2e6;
	margin: 30px 0 20px;
}

.copyright-text {
	color: #666;
	font-size: 14px;
	margin: 0;
}

/* Dark mode support */
.dark-mode .webcommerce-footer {
	background-color: #2c3e50;
	border-color: #34495e;
}

.dark-mode .footer-brand,
.dark-mode .footer-heading {
	color: #ecf0f1;
}

.dark-mode .footer-description,
.dark-mode .footer-link,
.dark-mode .footer-contact,
.dark-mode .copyright-text {
	color: #bdc3c7;
}

.dark-mode .footer-link:hover {
	color: var(--primary-color, #3498db);
}

.dark-mode .footer-divider {
	border-color: #34495e;
}

/* Responsive styles */
@media (max-width: 768px) {
	.webcommerce-footer {
		padding: 30px 0 20px;
	}

	.footer-section {
		text-align: center;
		margin-bottom: 25px;
	}

	.footer-social {
		justify-content: center;
	}
}