		#scrollToTop {
            display: none; /* Initially hide the button */
            position: fixed;
            bottom: 20px;
            right: 20px;
			width: 40px;
			height: 40px;
            background-color: blue;
            color: white;
            border: none;
			font-size: 25px;
			font-weight: bold;
			border: 1px solid #000;
            border-radius: 50%; /* Makes the button circular */
            cursor: pointer;
            z-index: 999; /* Ensures button is on top of other content */
        }
		.item {
            margin: 8px;
            padding: 10px;
            border: 1px solid #bbb;
            display: inline-block;
            width: 150px;
            height: 220px;
            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: 4px 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 */
        }
.pagination {
    text-align: center;
    margin-top: 20px;
    line-height: 30px; /* Ensures vertical alignment */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px; /* spacing between buttons */
}
.pagination button,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 30px;
    padding: 0 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    vertical-align: middle;
    box-sizing: border-box;
}
.pagination button.active {
    background-color: blue;
    color: white;
}
.pagination span {
    font-weight: bold;
    color: #888;
    cursor: default;
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 10px solid #b0b0b0;
    border-radius: 10px;
	background-color: #b0b0b0;
}
.lightbox .caption {
    margin-top: 10px;
    color: white;
    font-size: 18px;
    text-align: center;
    font-family: "Comic Sans MS", sans-serif;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
