
.product {
    box-shadow: var(--main-shadow);
    border-radius: 5px;
    transition: 0.3s;
}

.product:hover{
    transform:scale(1.05);
}

.product p {
    direction: rtl;
}

.product-image {
    background-image: url("../img/placeholder.png");
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.product-image>div {
    position: absolute;
    top: 10px;
}
.product-detail>p>span,.shipping-wrapper span{
    font-weight: 100;
    font-size: 14px;
}
.shipping-wrapper svg{
    font-size: 12px;
}

.product-image .heart {
    left: 15px;
}

.product-image .search {
    right: 15px;
}

.product-detail [class*='fa'] {
    color: var(--color-light-gray);
}

.advance-search-swipe.advance-search-wrapper{
    right: 100% ;
    width: 80%;
    bottom: 0;
    background-color: rgba(247,247,247,1);
    left: unset ;
    position: fixed;
    top: 0;
    z-index: 2;
    transition: 0.6s;    
    padding-top: 60px;
}
.advance-search-swipe #accordion-swipe{
    width: 100%;
}
.advance-search-swipe #accordion-swipe .card-header::after{
    width: 100%;
    left: 0;
}
.close-swipe-btn{
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 2;
}