.product_area{
padding: 50px 0;

.sec_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    h4{
        font-size: 22px;
        font-weight: 600;
        color: $text;
    }
    a{
        font-size: 16px;
        color: $primaryColor;
        font-weight: 400;
    }
}
.product_item_wrapper{
    background-color: $white; 
    margin-top: 20px;


    .swiper-button-next{
        height: 40px;
        width: 40px;
        border: 1px solid $primaryColor;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        &::after{
            font-size: 20px;
            color: $primaryColor;
        }
    }
    .swiper-button-prev{
        height: 40px;
        width: 40px;
        border: 1px solid $primaryColor;
        background-color: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        &::after{
            font-size: 20px;
            color: $primaryColor;
        }
    }
}
.product_item{
    height: 300px; 
    width: 100%;
    padding: 15px;
    border-left: 1px solid #33333333;
    margin-top: 10px;
    background-color: $white;
    .productItem_top{
        display: flex;
        justify-content: space-between;
        .categoryName{
            font-size: 15px;
            font-weight: 400;
            color: $text;
        }
        .FevCart_icon{
            i{
                font-size: 22px;
                color: #3333339b;
            }
        }
    }
    .productName{
        font-size: 20px;
        color: $black;
        font-weight: 500;
        line-height: 28px;
    }
    .product_img{
        height: 160px;
        width: auto;
        display: flex;
        justify-content: center;
        align-items:center;
        position: relative;
        margin-top: 10px;
        img{
            max-height: 100%;
            max-width: 100%;
        }
        .productDiscount{
            position: absolute;
            top: 0;
            left: 12px;
            height: 50px;
            width: 50px;
            background-color: $primaryColor;
            z-index: 2;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 17px;
            color: $white;
            font-weight: 500;
        }
    }
    .product_footer{
        display: flex;
        justify-content: space-between;
        align-items: center;
        .productFooter_left{
            font-size: 20px;
            color: $secondColor;
            font-weight: 600;
            span{
                font-size: 16px;
                color: #333;
                font-weight: 400;
                margin-left: 5px;
                position: relative;
            &::after{
                position: absolute;
                content: '';
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                background-color: #333;
                height: 1px;
                width: 100%;
                }
            }
        }
        .productFooter_right{
            height: 38px;
            width: 38px;
            background-color: #d3d3d3;
            border-radius: 50%;
            text-align: center;
            cursor: pointer;
            i{
              color: $black;
              line-height: 38px;
              font-size: 18px;
            }
            &:hover{
                background-color: $primaryColor;
            }
            &:hover i{
                color: $white;
            }
        }
    }
}
}