/* Product Image Styles */
.product-card .image-container {
    width: 100%;
    height: 400px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    position: relative;
}

.product-card .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .image-container img {
    transform: scale(1.05);
}

/* Modal Image Styles */
.purchase-summary .image-container {
    width: 100%;
    height: 400px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.purchase-summary .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-card .image-container {
        height: 300px;
        padding: 0.5rem;
    }
    
    .purchase-summary .image-container {
        height: 300px;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-card .image-container {
        height: 250px;
    }
    
    .purchase-summary .image-container {
        height: 250px;
    }
}
