/* ===== SECTION: Footer - Start ===== */
footer {
	position: relative;
	width: 100%;
	padding: 60px 0 15px 0;
	overflow: hidden;
}

/* Контент над текстурой */
footer > .container {
	position: relative;
	z-index: 1;
}

/* Footer Content — 3 зоны: 20% / 60% / 20% */
footer .footer-content {
	display: grid;
	grid-template-columns: 1fr 3fr 1fr;
	gap: 40px;
	padding-bottom: 60px;
}

/* Brand */
footer .footer-logo {
	display: inline-block;
	margin-bottom: 30px;
}

footer .footer-description {
	color: #B3BAD4;
	max-width: 245px;
}

/* Menu titles */
footer .footer-menu-title {
	color: #B3BAD4;
	margin-bottom: 30px;
}

/* Menus — 3 колонки: nav / catalog (2x) / info */
footer .footer-menus {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 40px;
}

footer .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style: none;
}

footer .footer-menu li a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

footer .footer-menu li a:hover {
	color: var(--white);
}

/* Каталог — 2 подколонки */
footer .footer-menu-catalog .footer-menu {
	columns: 2;
	column-gap: 30px;
	display: block;
}

footer .footer-menu-catalog .footer-menu li {
	break-inside: avoid;
	margin-bottom: 15px;
}

/* Contacts — иконки белые */
footer .footer-contacts .icon-element img {
	filter: brightness(0%) invert(100%);
}

footer .icon-group-text {
	color: var(--white);
}

/* Footer Bottom */
footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--blocks-indent);
	padding-top: 30px;
}

footer .copyright-text {
	color: rgba(255, 255, 255, 0.7);
}

footer .design-by {
	color: rgba(255, 255, 255, 0.7);
}
footer .footer-logo img {
    width: 220px;
    min-height: max-content;
}
/* Adaptive 1680px */
@media (max-width: 1680px) {
	footer {
		padding: 40px 0 15px 0;
	}
	
	footer .footer-content {
		gap: 30px;
		padding-bottom: 40px;
	}
	
	footer .footer-menus {
		gap: 30px;
	}
	
	footer .footer-logo {
		margin-bottom: 25px;
	}
	
	footer .footer-menu-title {
		margin-bottom: 25px;
	}
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
	footer {
		padding: 50px 0 30px 0;
	}
	
	footer .footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 0;
	}
	
	/* Лого — полная ширина */
	footer .footer-brand {
		max-width: none;
	}
	
	footer .footer-description {
		max-width: none;
	}
	
	footer .footer-logo {
		margin-bottom: 20px;
	}
	
	/* Меню — каталог на всю ширину, nav+info рядом */
	footer .footer-menus {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	
	footer .footer-menu-catalog {
		grid-column: 1 / -1;
		order: -1;
	}
	
	footer .footer-menu-title {
		margin-bottom: 20px;
	}
	
	/* Скрыть текстуру на мобилке */
	footer::before {
		display: none;
	}
	
	/* Bottom */
	footer .footer-bottom {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
		padding-top: 40px;
	}
}

/* ===== SECTION: Footer - End ===== */