

.products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 1rem;
}
.product-card{
    background-color: #121212;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 0 1rem #000000;
}
.product-image > img{
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-details {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-details > .product-name {
    margin: 0;
    text-transform: uppercase;
    color: #cbcbcb;
    font-size: 1rem;
}
.product-details > .product-price {
    margin: 0;
    color: #eeeeee;
    display: flex;
    align-items: center;
}
.product-details > .product-price::before {
    width: 1rem;
    background-image: url(./images/robux.webp);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    content: '';
    height: 1rem;
    margin-right: .1rem;
}
