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

.footer-section {
	margin-bottom: 30px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.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;
		margin-top: 30px;
	}

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

	.footer-logo {
		max-height: 40px;
		margin: 0 auto;
	}

	.footer-description {
		font-size: 13px;
		margin-bottom: 15px;
	}

	.footer-heading {
		font-size: 15px;
		margin-bottom: 15px;
	}

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

	.footer-contact {
		justify-content: center;
		font-size: 13px;
		margin-bottom: 8px;
	}

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

	.social-link {
		width: 32px;
		height: 32px;
	}

	.social-link svg {
		width: 18px;
		height: 18px;
	}

	.copyright-text {
		font-size: 12px;
		padding: 0 15px;
	}

	.footer-divider {
		margin: 20px 0 15px;
	}
}

@media (max-width: 576px) {
	.webcommerce-footer {
		padding: 25px 0 15px;
		margin-top: 20px;
	}

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

	.footer-logo {
		max-height: 35px;
	}

	.footer-heading {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.footer-description {
		font-size: 12px;
		line-height: 1.5;
	}

	.footer-link {
		font-size: 13px;
	}

	.footer-contact {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.footer-contact svg {
		width: 14px;
		height: 14px;
		margin-right: 6px;
	}

	.footer-social {
		gap: 12px;
		margin-top: 10px !important;
	}

	.social-link {
		width: 30px;
		height: 30px;
	}

	.social-link svg {
		width: 16px;
		height: 16px;
	}

	.copyright-text {
		font-size: 11px;
		line-height: 1.4;
	}

	.footer-divider {
		margin: 15px 0 10px;
	}
}

@media (max-width: 375px) {
	.webcommerce-footer {
		padding: 20px 0 10px;
	}

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

	.footer-heading {
		font-size: 13px;
	}

	.footer-logo {
		max-height: 30px;
	}

	.social-link {
		width: 28px;
		height: 28px;
	}

	.social-link svg {
		width: 14px;
		height: 14px;
	}
}