/* related-product-section css start */
.related-product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
/* related-product-section css end */

@media only screen and (max-width: 1200px) {

    /* related-product section css start */
    .related-product-items {
        grid-template-columns: repeat(4, 1fr);
    }

    /* related-product section css end */
}

@media only screen and (max-width: 992px) {

    /* related-product section css start */
    .related-product-items {
        grid-template-columns: repeat(3, 1fr);
    }

    /* related-product section css end */
}

@media only screen and (max-width: 767px) {

    /* related-product section css start */
    .related-product-items {
        grid-template-columns: repeat(2, 1fr);
    }

    /* related-product section css end */
}