﻿.grid-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

    .grid-wrapper .grid-cell {
        aspect-ratio: 1/1;
        padding: 16px;
        position: relative;
        overflow: hidden;
        background-color: white;
        border: 1px solid #e5e5e5;
    }

        .grid-wrapper .grid-cell img {
            object-fit: cover;
            object-position: center;
            height: 100%;
        }

        .grid-wrapper .grid-cell .product-pricing {
            display: flex;
            justify-content: space-between;
            align-content: center;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }

            .grid-wrapper .grid-cell .product-pricing .product-badge {
                font-size: 0.765rem;
                font-weight: bold;
                background-color: #c73600;
                color: white;
                border-radius: 50px;
                padding: 2px 6px;
            }

            .grid-wrapper .grid-cell .product-pricing .final-price {
                font-size: 1rem;
                font-weight: bold;
            }

        .grid-wrapper .grid-cell .old-price del {
            font-size: 0.765rem;
        }

        .grid-wrapper .grid-cell .image-wrapper {
            width: 100%;
            height: 70%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 12px;
        }


@media screen and (min-width: 1200px) {
    .grid-wrapper .grid-cell {
        width: 20%;
    }
}

@media screen and (max-width: 1199px) {
    .grid-wrapper .grid-cell {
        width: 25%;
    }
}

@media screen and (max-width: 991px) {
    .grid-wrapper .grid-cell {
        width: 33.33%;
    }
}

@media screen and (max-width: 768px) {
    .grid-wrapper .grid-cell {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .grid-wrapper .grid-cell {
        width: 50%;
    }
}
