.global-footer,
.global-footer * {
	box-sizing: border-box;
}

.global-footer {
	background: #141414;
	color: #fff;
}

.global-footer a {
	color: inherit;
	text-decoration: none;
}


.global-footer {
	padding: 70px 0;
}

.global-footer__inner {
	width: 80%;
	margin: auto;
}

.global-footer__title {
	font-size: 28px;
	font-weight: 500;
	margin: 0 0 30px;
	letter-spacing: 1px;
}

.global-footer__stores-section {
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.global-footer__locations {
	display: grid;
	grid-template-columns: repeat(4, minmax(180px, 1fr));
	gap: 60px;
}

.global-footer__city h3 {
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

ul.global-footer__store {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.global-footer__store li {
	margin: 7px 0;
}

.global-footer__store a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, .72);
	position: relative;
}

.footer-store-arrow {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	display: block;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .25s ease, transform .25s ease;
}

.global-footer__store a:hover,
.global-footer__store a:focus-visible {
	color: #fff;
}

.global-footer__store a:hover .footer-store-arrow,
.global-footer__store a:focus-visible .footer-store-arrow {
	opacity: 1;
	transform: translateX(0);
}

.global-footer__all-stores {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
	font-size: 14px;
	letter-spacing: .04em;
	color: #fff;
}

.footer-link-arrow {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	transition: transform .25s ease;
}

.global-footer__all-stores:hover .footer-link-arrow,
.global-footer__all-stores:focus-visible .footer-link-arrow {
	transform: translateX(4px);
}

.global-footer__online-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 60px;
	padding: 60px 0 0;
}

.global-footer__online {
	max-width: 560px;
}

.global-footer__online p {
	margin: 14px 0 28px;
	color: #bbb;
	line-height: 1.8;
	font-size: 14px;
}

.global-footer__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 18px 34px;
	border: 1px solid rgba(255, 255, 255, .45);
	min-width: 340px;
	transition: .25s;
}

.global-footer__button:hover {
	background: #fff;
	color: #141414;
}

.global-footer__button-icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	display: block;
	transition: transform .25s ease;
}

.global-footer__button:hover .global-footer__button-icon {
	transform: translate(2px, -2px);
}

.global-footer__brand {
	text-align: right;
}

.global-footer__brand img {
	width: 200px;
	filter: brightness(0) invert(1);
	display: block;
	margin-left: auto;
}

.global-footer__brand .global-footer__legal {
	margin-top: 18px;
	font-size: 11px;
	line-height: 1.9;
	color: #888;
}

@media (max-width: 1100px) {
	.global-footer__locations {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:780px) {
	.global-footer__locations {
		grid-template-columns: 1fr;
	}

	.global-footer__cols {
		grid-template-columns: 1fr;
	}

	.global-footer__online-wrap {
		display: block;
	}

	.global-footer__brand {
		text-align: left;
		margin-top: 40px;
	}

	.global-footer__brand img {
		margin-left: 0;
	}

	.global-footer__button {
		min-width: 100%;
	}
}