.shop-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.shop-count {
	width: 100%;
	color: #666;
	margin-bottom: 1vh;
}

.shop-item {
	flex: 1 1 300px;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 20px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.shop-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shop-image {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
	border-radius: 4px;
}

.shop-title {
	font-size: 1.1em;
	margin: 0 0 10px 0;
	color: #333;
	flex-grow: 1;
}

.shop-details {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-top: 15px;
}

.shop-price {
	color: var(--black);
	font-weight: 600;
	font-size: 1.4em;
}

.view-button {
	background-color: var(--brown);
	color: white;
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9em;
	text-align: center;
	transition: background-color 0.2s;
}

.view-button:hover {
	background-color: var(--black);
}

/* Optional: Prevent text selection on the button */
.view-button:focus {
	outline: none;
}
