/* Стили для футера */

.site-footer {
	margin-top: 50px;
	background-color: #fff;
	padding: 50px 0 20px;
	border-top: 1px solid #e5e5e5;
	font-size: 14px;
	color: #333;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	grid-gap: 30px;
	margin-bottom: 40px;
}

@media (max-width: 992px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	.footer-logo-contacts {
		grid-column: span 2;
	}

	.footer-map-column {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-logo-contacts,
	.footer-nav-column,
	.footer-map-column {
		grid-column: span 1;
	}
}

/* Логотип и контакты */
.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	max-width: 100%;
	height: auto;
}

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

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.contact-item i {
	margin-right: 10px;
	color: var(--primary-color); /* Фиолетовый - основной цвет Еврострой */
}

.contact-item a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-item a:hover {
	color: var(--primary-color);
}

/* Навигация */
.footer-heading {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--primary-color);
}

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

.footer-nav li {
	margin-bottom: 10px;
}

.footer-nav a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-nav a:hover {
	color: var(--primary-color);
}

/* Карта */
.footer-map {
	height: 200px;
	border-radius: 8px;
	overflow: hidden;
}

.footer-map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Нижняя часть футера */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.copyright {
		margin-bottom: 10px;
	}
}

.copyright p {
	margin: 0;
	color: #666;
}

.footer-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer-links a {
	color: #333;
	text-decoration: none;
	margin: 0 5px;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.separator {
	color: #ccc;
	margin: 0 5px;
}

/* Дисклеймер */
.footer-disclaimer {
	border-top: 1px solid #e5e5e5;
	padding-top: 20px;
	font-size: 12px;
	color: #777;
	line-height: 1.6;
}

.footer-disclaimer p {
	margin-bottom: 10px;
}

.footer-disclaimer a {
	color: var(--primary-color);
	text-decoration: none;
}

.footer-disclaimer a:hover {
	text-decoration: underline;
}

/* Иконки (можно заменить на Font Awesome или другие) */
@font-face {
	font-family: "footer-icons";
	src: url("../fonts/footer-icons.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

[class^="icon-"],
[class*=" icon-"] {
	font-family: "footer-icons" !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}

.icon-map-marker:before {
	content: "\e800";
}
.icon-phone:before {
	content: "\e801";
}
.icon-envelope:before {
	content: "\e802";
}
