.product-variant-tile {
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: start;
    text-align: start;
    background-color: white;
    flex-shrink: 0;
    box-sizing: border-box;
    width: calc((100% - 3rem) / 4);
    /* 4 items on desktop */
}

.product-variant-tile-image {
    margin: 0 auto;
    align-self: center;
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.bestseller-tag {
    padding: 0.2rem 0.5rem;
    background-color: #fff0f0;
}

.bestseller-tag p {
    font-size: 0.8rem;
    color: #ff0000;
}

/* Responsive product tile widths */
@media (max-width: 1080px) {
    .product-variant-tile {
        width: calc((100% - 2rem) / 3);
        /* 3 items on tablet */
    }
}

@media (max-width: 768px) {
    .product-variant-tile {
        width: calc((100% - 1rem) / 2);
        /* 2 items on mobile */
    }
}