/* Keep storefront artwork square and fully visible instead of cropping it. */
.acg-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain !important;
}

.acg-cover {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    background: #fff;
    cursor: default;
}

.item-cover {
    object-fit: contain;
}

.stat-bottom {
    justify-content: space-between;
}

.stock-status {
    font-weight: 700;
}

.stock-status--soldout {
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, .28);
    background: rgba(220, 53, 69, .1);
}

.stock-status--low {
    color: #a86800;
    border: 1px solid rgba(245, 158, 11, .32);
    background: rgba(245, 158, 11, .12);
}

.stock-status--enough {
    color: #248454;
    border: 1px solid rgba(36, 132, 84, .28);
    background: rgba(36, 132, 84, .1);
}

/* Sold-out products remain browsable and keep their original artwork colors. */
.acg-card.soldout {
    filter: none;
}
