.item {
	margin: 8px;
	padding: 10px;
	border: 1px solid #bbb;
	display: inline-block;
	width: 150px;
	height: 160px;
	text-align: center;
	vertical-align: top; /* Align items to the top */
	position: relative; /* For positioning the invisible image container */
	overflow: hidden;
}
.item .image-container {
	height: 100px; /* Fixed height for image container */
	display: flex;
	justify-content: center; /* Center image horizontally */
	align-items: center; /* Center image vertically */
	overflow: hidden;
}
.item img {
	max-height: 100%; /* Ensure image doesn't overflow */
	max-width: 100%; /* Ensure image doesn't overflow */
	cursor:pointer;
}
.item h3 {
	font-family: "Comic Sans MS";
	/*font-weight: bold;*/
	font-size: 14px; /* Adjust as needed */
	margin: 6px 0; /* Space between text and image */
}
.item p {
	margin: 5px 0; /* Add some margin */
	display: flex;
	justify-content: center; /* Center content horizontally */
	align-items: center; /* Center content vertically */
}
.currency-img {
	max-width: 100%; /* Set width to 30px */
	height: 20px; /* Set height to 30px */
	margin-right: 4px; /* Add some spacing between image and text */
}
.wishlist-remove {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 24px;
    height: auto;
    cursor: pointer;
}
.empty-message {
    font-size: 20px;
    margin-top: 30px;
	white-space: pre-line;
}
button {
    margin: 5px;
    padding: 5px 6px;
    cursor: pointer;
}