#categoriesSection {
    position: relative;
}

#categoriesSection::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #FDFAF6;
    display: flex;
    position: absolute;
    z-index: -1;
}

.categoriesSection__title::after {
    background: #F9F1E7;
}

.categoriesSection__title {
    color: #7C2D12 !important;
}

.categoriesSection__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin: 0;
    grid-gap: 10px;
}

.categoriesSection__thumbImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.homepage-products-heading-3 {
    margin-top: 0px;
}

.categoriesSection__thumb {
    height: 120px;
    width: 120px;
    margin-bottom: 10px;
}

.categoriesSection__singleTitle {
    font-size: 16px;
    font-weight: 600;
    border-top: 1px solid #F1F1F1;
    width: 100%;
    padding-top: 15px;
    color: #2E523D;

}

.categoriesSection__single p {
    text-align: center;
    color: #6D6C79;
    font-size: 14px;
    margin: 0;
    margin-top: 5px;
    line-height: 1.3;
}


@media screen and (max-width: 991px) {
    .categoriesSection__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .categoriesSection__grid>a:nth-child(1n+7) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #categoriesSection {
        padding: 30px 0 30px 0;
    }
    .categoriesSection__single {
        flex-direction: column;
    }

    .categoriesSection__singleTitle {
        text-align: center;
        padding: 0;
        padding-top: 10px;
    }
}

@media screen and (max-width: 575px) {
    .categoriesSection__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .categoriesSection__single {
        flex-direction: column;
        padding: 10px 10px;
    }
    .categoriesSection__single p{
        display: none;
    }
    .categoriesSection__thumb {
        margin: 0;
        height: 50px;
        width: 60px;
        margin-right: 0px;
        margin-bottom: 5px;
    }

    .categoriesSection__singleTitle {
        border: 0;
        text-align: center;
        font-size: 15px;
    }
}