.product-card {
    max-width: 400px;
    margin: auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height */
    overflow: hidden;
}
.product-image, .hover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
}
.hover-image {
    opacity: 0;
}
.image-container:hover .product-image {
    opacity: 0;
}
.image-container:hover .hover-image {
    opacity: 1;
}
.quick-buy {
    background-color: #f8caca;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.description {
    min-height: 60px; /* Adjust as needed */
}