/**
 * ACE Shop Bridge - Pixel Art Image Rendering
 * 
 * Applies nearest-neighbor (pixelated) scaling to shop images
 * so that 32x32 ACE icons look crisp when scaled up.
 */

/* Target shop package images - these are the item icons from ACE */
#shop .card-img-top,
.shop-package-image,
#itemModal .card-img-top,
#itemModal img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Cart page images */
.shop-cart img,
#cart img.img-fluid {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
