/*liked*/
.liked {
    margin-top: 56px;
}
.liked__list {
    display: flex;
    gap: 30px 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.liked__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 280px;
    height: 100%;
    position: relative;
}
.liked__top {
    display: flex;
    justify-content: space-between;
}
.liked .img-wrapper {
    max-width: 280px;
    max-height: 275px;
    width: 100%;
    height: 100%;
}
.liked__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 12px
}
.liked__name {
    font-family: var(--font-family-1);
}
.liked__price {
    font-weight: bold;
}
.liked__btn {
    font-size: 14px;
}
.liked__remove-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}
@media (max-width: 768px) {
    .liked {
        margin-top: 79px;
    }
    .liked__item {
        max-width: unset;
        width: 100%;
    }
    .liked__btn {
        max-width: unset;
    }
}