/* DEALFOXX - BILDSCHÄRFE-OPTIMIERUNG FÜR OBJECT-FIT COVER */
/* Erstellt: für scharfe, einheitliche Produktbilder */

/* UNIVERSELLE BILDSCHÄRFE-REGELN - HÖCHSTE PRIORITÄT */
.product-image,
.product-card img,
.card-image img,
img[class*="product"],
.product-image-container img,
.recently-viewed .product-image,
.recommended-products .product-image,
.related-products .product-image,
.product-slider img,
.slider-product img,
#related-products img,
.product-recommendations img,
.thumbnail-image,
.object-contain img {
    /* HOCHWERTIGE BILDSCHÄRFE FÜR SKALIERTE BILDER */
    image-rendering: -webkit-optimize-contrast !important;
    -webkit-image-rendering: -webkit-optimize-contrast !important;
    -moz-image-rendering: -moz-crisp-edges !important;
    -ms-interpolation-mode: bicubic !important;
    
    /* BESSERE DARSTELLUNG BEI OBJECT-FIT COVER */
    image-orientation: from-image !important;
    backface-visibility: hidden !important;
    
    /* ENTFERNE UNSCHÄRFE-VERURSACHENDE FILTER */
    filter: none !important;
    transform: translateZ(0) !important;
}

/* CONTAINER OPTIMIERUNG FÜR BESSERE BILDDARSTELLUNG */
.product-image-container,
.card-image,
.related-products .product-card,
.product-slider .product-card,
#related-products .product-card,
.recently-viewed .product-card,
.recommended-products .product-card {
    /* HARDWARE-BESCHLEUNIGUNG FÜR BESSERE PERFORMANCE */
    will-change: auto !important;
    transform: translateZ(0) !important;
    
    /* OPTIMALE CONTAINER-DARSTELLUNG */
    image-rendering: -webkit-optimize-contrast !important;
    -webkit-image-rendering: -webkit-optimize-contrast !important;
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 768px) {
    .product-image,
    .product-card img,
    .card-image img {
        /* MOBILE BILDSCHÄRFE-OPTIMIERUNG */
        image-rendering: -webkit-optimize-contrast !important;
        -webkit-image-rendering: -webkit-optimize-contrast !important;
        -moz-image-rendering: -moz-crisp-edges !important;
    }
}

/* RETINA/HIGH-DPI DISPLAYS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image,
    .product-card img,
    .card-image img {
        /* HIGH-DPI BILDSCHÄRFE */
        image-rendering: -webkit-optimize-contrast !important;
        -webkit-image-rendering: -webkit-optimize-contrast !important;
    }
} 