/* Footer V1 Styles */
footer {
	background-color: var(--sc-footer-v1-root-bg, var(--footer-background-color));
	color: var(--sc-footer-v1-root-text, var(--footer-text-color));
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--sc-footer-v1-column-heading-text, var(--primary-brand-color));
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: var(--sc-footer-v1-column-heading-after-bg, var(--primary-brand-color));
	bottom: 0;
	left: 0;
}

.footer-column p {
	margin-bottom: 15px;
}

.footer-links li {
	margin-bottom: 10px;
	list-style: none;
}

.footer-links a {
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--sc-footer-v1-links-link-hover-text, var(--footer-hover-text-color));
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--sc-footer-v1-social-links-link-bg, var(--footer-social-icon-background-color));
	color: var(--sc-footer-v1-social-links-link-text, var(--footer-social-icon-color));
	transition: all 0.3s;
}

.social-links a:hover {
	background-color: var(--sc-footer-v1-social-links-link-hover-bg, var(--footer-social-icon-hover-background-color));
	color: var(--sc-footer-v1-social-links-link-hover-text, var(--footer-social-icon-hover-color));
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 60px;
	color: var(--sc-footer-v1-bottom-text, var(--footer-text-color));
	border-top: 1px solid var(--sc-footer-v1-bottom-border-top, var(--primary-brand-color));
}

/* RTL Support */
[dir="rtl"] .footer-column h3::after {
	right: 0;
	left: auto;
}

