.shop-detail-container {
	max-width: 430px;
	margin: 0 auto;
	padding: 16px;
	font-size: 14px;
}

.shop-detail-container h2 {
	font-size: 18px;
	margin-bottom: 12px;
}

.shop-detail-container p {
	margin: 6px 0;
}

.shop-image img {
	max-height: 400px;
	width: auto;
	height: auto;
	border-radius: 10px;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
	display: block;
	margin: 0 auto;
}

.back-to-list {
	margin-top: 30px;
	text-align: center;
}

.back-to-list button {
	padding: 10px 20px;
	background-color: #333;
	color: white;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.back-to-list button:hover {
	background-color: #555;
}