.catalog_item img {
    width: 100%;
    object-fit: cover;
    height: 750px;
}

.result_tags_title{
    margin-top: 60px;
    margin-bottom: -40px;
    font-size: 18px;
    color: #000;
}

.title_recomend_item {
    font-weight: 400;
    color: #000;
    font-size: 11px;
    position: relative;
    top: 103%;
    text-transform: uppercase;
}

.catalog_item {
    display: grid;
    gap: 5px;
    position: relative;
    margin-bottom: 60px !important;
}

.price_recomend_item {
    font-weight: 600;
    font-size: 14px;
    position: relative;
    top: 103%;
}

.fast_view_button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

#list_view img {
    width: 100% !important;
    height: 300px;
    object-fit: cover;
}

.catalog_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.wish_item_button {
    position: absolute;
    top: 50px;
    right: 10px;
    background: #fff;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
}

.wish_item_button span:hover {
    background: none;
}

.wrapp_one_click {
    position: absolute;
    top: 90px;
    right: 10px;
    background: #fff;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
}

.wrapp_one_click span:hover {
    background: none;
}

.btn_cart_abs {
    position: absolute;
    top: 130px;
    right: 10px;
    background: #fff;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
    color: #000;
}

.catalog_item i {
    font-weight: 600;
    color: #858585;
}

.ajax_load_btn {
    display: none;
}

.wish_item_button, .fast_view_button, .wrapp_one_click, .btn_cart_abs {
    opacity: 0;
    transition: .2s all;
    border: 1px solid #fff;
    cursor: pointer;
}

.wish_item_button:hover i, .fast_view_button:hover i, .wrapp_one_click:hover i, .btn_cart_abs:hover i {
    color: #000;
}

.catalog_item:hover .wish_item_button, .catalog_item:hover .fast_view_button, .catalog_item:hover .wrapp_one_click, .catalog_item:hover .btn_cart_abs {
    opacity: 1;
}

.image_wrapper_block, .image_wrapper_block > a {
    min-width: 100% !important;
    height: 700px;
}

.catalog_item.carousel {
    display: none;
}

.mobile_item_info {
    display: none;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    position: relative;
    top: -20px;
}

.carousel-indicators {
    bottom: 1px !important;
}

.dont_sale_price, del {
    font-size: 12px;
    color: #555576;
    top: 0;
}

.sale_price_product_detail {
    display: flex;
    align-items: center;
    gap: 10px;
    /*justify-content: center;*/
    color: #a40501;
}

.title_recomend_item{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.btn_add_to_heart{
    height: max-content;
    background: none;
    border: none;
    border-radius: 5px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 5px;
    padding-top: 3px;
}

.btn_add_to_heart.active{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bi-heart-fill{
    display: none;
}

.btn_add_to_heart.active .bi-heart-fill{
   display: block;
}

.btn_add_to_heart.active .bi-heart{
    display: none;
}

.catalog_list .carousel-indicators{
    margin-bottom: -11px !important;
    gap: 3px !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.carousel-indicators [data-bs-target]{
    background-color: #ccc !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 1px !important;
}

@media (max-width: 1200px) {
    .catalog_list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .result_tags_title{
        margin-top: 15px;
        margin-bottom: 0;
    }
    .catalog_list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .btn_add_to_heart svg{
        height: 12px;
        width: 12px;
    }
    .sale_price_product_detail {
        justify-content: start;
    }

    .mobile_item_info {
        display: block;
    }

    .catalog_item {
        margin-bottom: 0 !important;
    }

    .catalog_item.image_wrapper_block {
        display: none;
    }

    .catalog_item.carousel {
        display: block;
    }

    .fast_view_button {
        display: none;
    }

    .catalog_item img {
        height: auto;
    }

    .wish_item_button {
        top: 10px;
    }

    .wrapp_one_click {
        top: 50px;
    }

    .btn_cart_abs {
        top: 90px;
    }

    .title_recomend_item {
        font-size: 7px;
        top: 5px;
    }

    .price_recomend_item {
        font-size: 10px;
        top: 5px;
    }
    
    .dont_sale_price, del{
        top: 0;
    }

    .btn_add_to_heart{
        position: absolute;
        right: 0;
        bottom: -12px;
    }
}