/**
 * KB Product Image Simple Widget
 * Simple product image with proper aspect ratio
 */

.kbpb-product-image-simple {
    display: block;
    text-align: center;
}

.kbpb-product-image-simple img {
    display: inline-block;
    height: auto;
    max-width: 100%;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kbpb-product-image-simple a.kbpb-image-lightbox {
    display: inline-block;
    cursor: pointer;
}

.kbpb-product-image-simple a.kbpb-image-lightbox:hover img {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Ensure aspect ratio is maintained */
.kbpb-product-main-image {
    object-fit: contain;
}
