/* Footer Container */
.lh-footer.lhp-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background-color: var(--footer-background);
	border-top: 1px solid #dcdbdb;
	font-family: var(--footer-font-family);
	font-size: 14px;
	color: var(--footer-text);
	flex-wrap: wrap;
	gap: 20px;
	z-index: 7;
	padding: 32px 0;
}

/* Dodaj padding na footer kada postoji mobilna akciona komponenta */
@media (max-width: 768px) {
	.has-mobile-actions ~ .footer-wrapper,
	.has-mobile-actions + * .footer-wrapper {
		padding-bottom: 90px;
	}
}

.wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 36px;

	@media (max-width: 1248px) {
		padding: 0 24px;
	}

	@media (max-width: 768px) {
		flex-direction: column-reverse;
		align-items: center;
		gap: 24px;
		text-align: center;
	}
}

.lhp-footer-links-left {
	display: flex;
	align-items: center;
	gap: 8px;

	@media (max-width: 768px) {
		flex-direction: column;
		width: 100%;
		gap: 8px;
		padding-bottom: 24px;

		& > .lhp-footer-divider {
			display: none;
		}
	}
}

/* Link container */
.lhp-footer-links {
	display: flex;
	align-items: center;
	font-weight: 250;
	font-family: var(--footer-font-family);

	.lhp-footer-links-right {
		display: flex;
		align-items: flex-end;
		align-items: center;
		justify-content: flex-end;
		font-weight: 250;
		font-family: var(--footer-font-family);

		@media (max-width: 768px) {
			justify-content: center;
			flex-wrap: wrap;
		}
	}

	gap: 16px;
	flex-wrap: wrap;

	@media (max-width: 768px) {
		justify-content: center;
		gap: 0;
	}
}

.lhp-footer-text {
	font-weight: 250;
	font-family: var(--footer-font-family);
}

.lhp-footer-link {
	font-weight: 400;
}

/* Links and text */
.lhp-footer-link,
.lhp-footer-text {
	display: flex;
	align-items: center;
	height: 18px;
	text-decoration: none;
	color: var(--footer-text);
	font-family: var(--footer-font-family);
}

.lhp-footer-link:hover {
	text-decoration: underline;
}

/* Divider */
.lhp-footer-divider {
	margin: 0 4px;
	font-size: 14px;
	font-family: var(--footer-font-family);
}

/* Social media icons container */
.lhp-footer-social {
	display: flex;
	gap: 8px;
	align-items: center;
}

/* Individual social icons (use appropriate background image or font-icon) */
.lhp-footer-icons {
	width: 36px;
	height: 36px;
	display: flex;
}

/* Placeholder background icons */
/* .lhp-footer-icon::after {
	content: '';
	position: absolute;
	width: 13.33px;
	height: 13.33px;
	top: 5.3px;
	left: 5.3px;
	background-color: #fff;
	border-radius: 50%;
} */

/* Custom icon classes to set actual icons via background-image or SVG mask */
.lhp-footer-icon.fb {
	background-image: url('/images/social/facebook.svg');
	background-size: cover;
}

.lhp-footer-icon.ig {
	background-image: url('/images/social/instagram.svg');
	background-size: cover;
}

.lhp-footer-icon.li {
	background-image: url('/images/social/linkedin.svg');
	background-size: cover;
}

.lhp-footer-icon.yt {
	background-image: url('/images/social/youtube.svg');
	background-size: cover;
}

.lhp-footer-icon.x {
	background-image: url('/images/social/x.svg');
	background-size: cover;
}
