/* ... (parte superior del CSS) ... */

.order-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    /* --- AÑADIDO PARA IMAGEN DE PRUEBA EN EL ESTILO --- */
    background-image: url('https://picsum.photos/seed/orderitem/60/60');
    background-size: cover;
    background-position: center;
    /* ------------------------------------------------ */
}

.order-item-details {
    flex: 1;
}

/* ... (resto del CSS) ... */