.optimized-product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.optimized-product-image img {
    display: block;
    margin: 0 auto;
    height: auto;
    transition: transform 0.3s ease;
}

/* Desktop */
@media (min-width: 1025px) {
    .optimized-product-image img.zoomable {
        cursor: zoom-in;
    }
    
    .optimized-product-image img.zoomable.zoomed {
        cursor: zoom-out;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .optimized-product-image {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .optimized-product-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Disable zoom on mobile */
    .optimized-product-image img.zoomable {
        cursor: default;
        transform: none !important;
    }
}