.layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100lvh;
  overflow: hidden;
}

.constrained-content {
  width: 100%;
  margin: auto;
  max-width: 1280px;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 80px;
  padding-left: 16px;
  padding-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.page-content {
  flex-grow: 1;
  overflow: auto;
  scroll-behavior: smooth;
}

.page-content::-webkit-scrollbar {
  width: 6px;
}

.page-content::-webkit-scrollbar-button,
.page-content::-webkit-scrollbar-corner {
  display: none;
}

.page-content::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.page-content::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
}

.footer {
	display: flex;
	flex-direction: column;
}

.footer-links-container {
	background: #F9FAFB;
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	height: 120px;
	padding-top: 16px;
	padding-bottom: 16px;
	padding-right: 16px;
	padding-left: 16px;	
}

.footer-links-logo {
	width: 0;
}

.footer-links-stores-container {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.footer-copy-container {
	background: #F3F4F6;
}

.footer-copy {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 300;
	color: #6B7280;
	height: 64px;
}

@media (min-width: 48em) {
	.footer-links {
		flex-direction: row;
		align-items: center;
		padding-top: 40px;
		padding-bottom: 40px;
		padding-right: 120px;
		padding-left: 120px;
	}

	.footer-links-logo {
		width: 124px;
	}
}

@media (min-width: 64em) {
	.footer-links {
		padding-top: 52px;
		padding-bottom: 52px;
		padding-right: 240px;
		padding-left: 240px;
	}

	.footer-links-logo {
		width: 142px;
	}

	.footer-copy {
		font-size: 16px;
	}
}