﻿.product-card {
    font-family : Lato, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


.image-container {
    height: 300px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-container img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.product-info {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price {
    font-weight: 600;
    margin: 0.5rem 0;
}

.image-wrapper {
    width: 300px;
    height: 400px;
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8; /* Optional background */
    overflow: hidden;
}

.responsive-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.product-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #222;
}
@media (max-width: 600px) {
    .responsive-product-image {
        width: 100%;
    }
}
