/* ==========================================
   PRODUCT IMAGE MODAL STYLES
   Modal für Produktbilder-Vergrößerung
   ========================================== */

/* Image Modal Content - Größer als normal */
.image-modal-content {
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: auto !important;
}

/* Image Modal Body */
.image-modal-body {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

/* Modal Product Image - Großes Bild */
.modal-product-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

/* Cursor Hint auf Produktbild */
.chat-product-image {
    cursor: pointer !important;
    transition: opacity 0.2s ease;
}

.chat-product-image:hover {
    opacity: 0.85;
}

/* Mobile Optimierungen */
@media (max-width: 767px) {
    .image-modal-content {
        max-width: 95vw !important;
        max-height: 85vh !important;
    }
    
    .modal-product-image {
        max-height: 60vh;
    }
}