/* Store locations */
/*------------------------------------------*/

.stores {
	background-color: #FFFFFF;
	padding: 40px 0;
}

.stores__inner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.stores__eyebrow {
	margin: 0;
	width: 100%;
	font-family: var(--global-font-family-1);
	font-weight: 500;
	font-size: 10px;
	line-height: normal;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #8C8C8C;
}

.stores__title {
	margin: 0;
	width: 100%;
	font-family: var(--global-font-family-1);
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	color: #1C1C1E;
}

.stores__grid {
	display: flex;
	align-items: stretch;
	gap: 20px;
	width: 100%;
}

.stores__card {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-width: 0;
	padding: 20px 18px;
	border: 1px solid #E6E6E6;
	border-radius: 12px;
	background-color: #FFFFFF;
	box-sizing: border-box;
}

.stores__media {
	flex-shrink: 0;
	width: 100%;
	height: 153px;
	overflow: hidden;
	border-radius: 10px;
	background-color: #F3F4F6;
	line-height: 0;
}

.stores__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.stores__info {
	display: flex;
	align-items: flex-start;
	flex: 1 0 0;
	gap: 12px;
	width: 100%;
}

.stores__pin {
	display: block;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.stores__text {
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
}

.stores__name {
	margin: 0;
	width: 100%;
	font-family: var(--global-font-family-1);
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	color: #1C1C1E;
}

.stores__address {
	margin: 0;
	width: 100%;
	font-family: var(--global-font-family-1);
	font-weight: 400;
	font-size: 11px;
	line-height: 16px;
	color: #8C8C8C;
}

@media (min-width: 768px) and (max-width: 1023px) {
	.stores {
		padding: 40px 0;
	}

	.stores__inner {
		gap: 20px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.stores__eyebrow,
	.stores__title {
		text-align: left;
	}

	.stores__title {
		font-size: 22px;
	}

	.stores__grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		margin-top: 0;
		overflow: visible;
	}

	.stores__card {
		flex: none;
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.stores {
		padding: 40px 0;
	}

	.stores__inner {
		align-items: stretch;
		gap: 8px;
		padding-left: 8px;
		padding-right: 8px;
	}

	.stores__eyebrow,
	.stores__title {
		text-align: center;
	}

	.stores__title {
		font-size: 18px;
	}

	.stores__grid {
		display: flex;
		margin-top: 12px;
		min-width: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.stores__grid::-webkit-scrollbar {
		display: none;
	}

	.stores__card {
		flex: 0 0 274px;
		width: 274px;
		min-width: 274px;
	}
}
