/* === IMAGES PRODUITS === */

/* Cards comparaison avec image */
.comp-card-with-img {
    grid-template-columns: 100px 1fr auto !important;
    gap: 24px !important;
    align-items: center;
}
.comp-img-wrap {
    width: 100px;
    height: 100px;
    background: white;
    border: 1px solid var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.comp-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Fond blanc des images intégré */
    transition: transform .25s;
}
.comp-card:hover .comp-img {
    transform: scale(1.05);
}

/* Verdict du jour avec image */
.verdict-with-img {
    position: relative;
}
.verdict-img-wrap {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 180px;
    height: 180px;
    background: rgba(245, 239, 228, 0.08);
    border: 1px solid rgba(245, 239, 228, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 2;
}
.verdict-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.verdict-with-img .verdict-title {
    padding-right: 200px;
}

@media (max-width: 900px) {
    .comp-card-with-img {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .comp-img-wrap {
        width: 100%;
        height: 160px;
    }
    .verdict-img-wrap {
        position: static;
        width: 100%;
        height: 140px;
        margin-bottom: 20px;
    }
    .verdict-with-img .verdict-title { padding-right: 0; }
}
