.relatedProductSec {
    background-color: #F0F0F0;
    padding-left: 10px;
    padding-right: 10px;

    .headingWrap {
        .headingTxt {
            width: 100%;
            max-width: 80%;
            margin: 0px auto;
        }
    }

    .ListingBtmSec {
        padding-top: 30px;
        row-gap: 80px;

        .productBox {
            height: 420px;
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .productImg {
                width: 50%;
                overflow: hidden;
                height: 100%;
                border-radius: 20px;
                position: relative;

                figure {
                    width: 240px;
                    height: auto;
                    margin: 0px auto;

                    img {
                        transform: scale(1);
                        transition: 0.5s;
                        position: relative;
                        z-index: 1;
                        margin: 0px auto;
                        width: 100%;
                        height: 100%;
                    }
                }

                &::before {
                    width: 100%;
                    height: 50%;
                    content: "";
                    border-radius: 20px;
                    position: absolute;
                    background-color: #fff;
                    border-radius: 15px;
                    border: 1px solid rgba(255, 255, 255, 0.40);
                    bottom: 0;
                    left: 0;
                    transition: 0.5s;
                }
            }

            .productListDet {
                width: 50%;
                padding-left: 30px;

                h5 {
                    padding: 10px 0;
                    color: #000;
                    font-size: 30px;
                    font-weight: 500;
                    font-family: 'Zabal DEMO';
                    text-align: left;
                    transition: all 0.5s;
                }

                .prodListDetTxt {
                    height: 160px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 6;
                    margin-bottom: 20px;

                    p {
                        font-size: 18px;
                        line-height: 28px;
                    }
                }

                .viewDetBtn {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    span {
                        color: #D71006;
                        font-size: 25px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 28px;
                    }

                    .arrowBtn {
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        border: 1px solid #000;
                        padding: 8px;
                        position: relative;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        transition: 0.5s;

                        &::after {
                            content: "";
                            position: absolute;
                            width: 38px;
                            height: 20px;
                            background: url(../images/product-listing/right-arrow.png) no-repeat center center;
                            left: 84%;
                            transform: translateX(10px);
                            top: 50%;
                            transform: translate(-50%, -50%);
                            background-size: 100%;
                            transition: 0.6s;
                            background-color: #F0F0F0;
                        }
                    }
                }
            }

            &:hover {
                .productImg {
                    &::before {
                        height: 50%;
                        background-color: #FD0C00;
                    }

                    img {
                        transform: scale(1);
                    }
                }

                .productListDet {
                    h5 {
                        color: #D71006;
                        font-weight: 700;
                    }
                }
            }
        }
    }
}

/* Responsive */

@media (max-width: 1360px) {
    .relatedProductSec {
        .headingWrap {
            .secH {
                margin-bottom: 15px;
            }

            .headingTxt {
                max-width: 100%;
            }
        }

        .ListingBtmSec {
            .productBox {
                .productListDet {
                    h5 {
                        font-size: 25px;
                    }

                    .prodListDetTxt {
                        p {
                            font-size: 16px;
                            line-height: 26px;
                        }
                    }

                    .viewDetBtn {
                        span {
                            font-size: 17px;
                        }
                        .arrowBtn {
                            width: 35px;
                            height: 35px;
                            &::after {
                                width: 25px;
                                height: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}


@media (max-width: 1199px) {
    .relatedProductSec {
        .ListingBtmSec {
            .productBox {
                height: auto;
                flex-direction: column;

                .productImg {
                    width: 95%;
                    height: 280px;

                    figure {
                        width: 160px;
                    }
                }

                .productListDet {
                    width: 100%;
                    padding-left: 30px;

                    h5 {
                        font-size: 22px;
                        text-align: center;
                    }

                    .prodListDetTxt {
                        height: 130px;

                        p {
                            margin-bottom: 5px;
                        }
                    }

                    .viewDetBtn {
                        justify-content: center;
                    }
                }
            }
        }
    }

}


@media (max-width: 767px) {

    .relatedProductSec {
        .ListingBtmSec {
            .productBox {
                .productListDet {
                    .prodListDetTxt {
                        height: auto;
                    }
                }
            }
        }
    }
}


@media (max-width: 575px){

    .relatedProductSec {
        .ListingBtmSec {
            .productBox {
                .productImg {
                    height: 220px;
                    figure {
                        width: 130px;
                    }
                }
                .productListDet{
                    padding-left: 0;
                }
            }
        }
    }
}