.catalog__content li {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.catalog__content li:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.catalog__img a {
    display: block;
}
.catalog__img img {
    transition: transform 0.3s ease;
}
.catalog__img a:hover img {
    transform: scale(1.05);
}
.catalog__title a {
    text-decoration: none;
}
.catalog__title a:hover h3 {
    color: #b0708f;
}
.catalog__price span::after {
    content: "\00a0\20BD";
    font-size: inherit;
}
.catalog__more button {
    transition: background 0.2s ease, color 0.2s ease;
}
.catalog__more button:hover {
    background: #b0708f;
    color: #fff;
}

@media (max-width: 801px) {
    .catalog__content {
        width: 100%;
        display: block;
    }
    .catalog__content li {
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
    }
    .catalog__img {
        width: 120px;
        display: block;
        flex-shrink: 0;
    }
    .catalog__info {
        width: calc(100% - 135px);
        display: block;
        margin: 0 0 0 15px;
    }
    .catalog__order {
        width: 100%;
        display: flex;
        margin-top: 12px;
        justify-content: space-between;
        align-items: center;
    }
    .catalog__filter {
        display: none;
    }
    .catalog__title h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    .catalog__val-body {
        width: auto;
        padding-left: 20px;
        background-size: 14px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .catalog__img {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .catalog__img img {
        max-height: 180px;
        width: auto;
    }
    .catalog__info {
        width: 100%;
        margin: 0;
    }
    .catalog__order {
        flex-direction: column;
        gap: 8px;
    }
    .catalog__price {
        font-size: 16px;
    }
    .catalog__delivery {
        font-size: 13px;
    }
    .catalog__btn button {
        width: 100%;
        padding: 12px;
    }
}
