.catalog_main_item {
    position: relative;
    height: 100%;
    padding: 2.5rem;
    background: #fff;
    border-radius: 2.5rem;
    -webkit-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.catalog_main_item:hover {
    -webkit-box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0.15);
}

.catalog_main_item_body {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    height: 100%;
    z-index: 1;
}

.catalog_main_item_desc {
    font-size: 14px;
}

.catalog_main_item_img {
    position: relative;
    width: 180px;
    height: 180px;
    margin-top: auto;

}

.catalog_main_item_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.catalog_main_item_img:hover img {
    transform: scale(1.1);
}

.catalog_main_item_title {
    font-family: 'Copyright Bolditalic Studio Arha Trial', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: inherit;
    margin-top: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.catalog_main_item_title:hover {
    color: inherit;
}

.catalog_main_item_price {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-family: 'Copyright Bolditalic Studio Arha Trial', sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    padding: 8px 20px;
    background: var(--theme-color-orange);
    border-radius: 4rem;
}

.catalog_main_item_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #dddddd, #919191);
    border-radius: 2.5rem;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.catalog_main_item_cover_img {
    width: 100%;
    height: 100%;
}

.catalog_main_item_cover_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.catalog_main_item:hover .catalog_main_item_cover {
    /*transform: scale(0);*/
    opacity: 0;
}




