.shop-intro {
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #e4e7ec;
	border-radius: 14px;
	background: linear-gradient(135deg, #fbfcff 0%, #f7fbff 100%);
}

.shop-intro h3 {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 700;
	color: #1a2540;
}

.shop-intro p {
	line-height: 1.6;
	color: #4a5568;
}

.shop-tabs-wrap {
	margin-bottom: 20px;
}

.shop-tabs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 6px;
}

.shop-tabs button {
	padding: 10px 16px;
	border: 1px solid #d7dce5;
	border-radius: 999px;
	background: #fff;
	font-size: 15px;
	font-weight: 600;
	color: #4a5568;
	white-space: nowrap;
	cursor: pointer;
	transition: all .2s ease;
}

.shop-tabs button.active {
	border-color: #1657bf;
	background: #1657bf;
	color: #fff;
}

.shop-tab-panel {
	display: none;
}

.shop-tab-panel.active {
	display: block;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.shop-static-images {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.shop-static-images img {
	width: 100%;
	height: auto;
	display: block;
}

.shop-card {
	overflow: hidden;
	border: 1px solid #e4e7ec;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(11, 34, 73, .06);
}

.shop-card-media {
	position: relative;
	height: 300px;
	background: #f3f5f9;
}

.shop-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shop-card-media.no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	background: repeating-linear-gradient(
		-45deg,
		#f0f3f8,
		#f0f3f8 10px,
		#e8edf5 10px,
		#e8edf5 20px
	);
}

.shop-card-media.no-image img {
	display: none;
}

.shop-no-image {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(26, 37, 64, .72);
	font-size: 12px;
	letter-spacing: .08em;
	font-weight: 700;
	color: #fff;
}

.shop-card-body {
	padding: 16px;
}

.shop-card-body h4 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #101828;
}

.shop-info {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.shop-info p {
	font-size: 14px;
	line-height: 1.5;
	color: #475467;
}

.shop-info p strong {
	display: inline-block;
	min-width: 62px;
	color: #1d2939;
}

.shop-map-links {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.shop-map-links a {
	flex: 1;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 9px 10px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: #344054;
	text-decoration: none;
	transition: all .2s ease;
}

.shop-map-links a:hover {
	border-color: #1657bf;
	color: #1657bf;
	background: #f5f8ff;
}

@media all and (max-width: 1024px) {
	.shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media all and (max-width: 767px) {
	.shop-intro {
		padding: 16px;
	}

	.shop-intro h3 {
		font-size: 20px;
	}

	.shop-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.shop-card-media {
		height: 480px;
	}
}

@media all and (max-width: 468px) {
	.shop-card-media {
		height: 330px;
	}
}
