.full-item {
    display: grid;
    gap: 20px;
    margin-top: 10px;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 20px;
    position: relative;
}

@media(min-width:768px) {
    .full-item {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }
}

@media(min-width:992px) {
    .full-item {
        grid-template-columns: 350px 1fr;
        gap: 40px;
        padding: 40px;
    }
    .full-item .short-item__bottom {
        max-width: 200px;
    }
}

.full-item .short-item__bottom {
    padding: 0;
    bottom: 0;
}

.full-item__right {

}

.full-item h1.cat {
    margin: 0 0 20px 0;
}

.full-item__info {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.full-item__info .stiker {
    position: relative;
    left: 0;
    top: 0;
}

.full-item__price-box {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: center;
}

.full-item__text p:last-child {
    margin: 0;
}

.full-item__image {
    text-align: center;
    border-radius: var(--border-radius);
}

.full-item__image img {
    border-radius: 20px;
}

.full-item .like {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid var(--color4);
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-item .like.active {
    border: 2px solid var(--color1);
}

.full-item__text-box {
    grid-column: 1/-1;
}

@media(min-width:992px) {
    .full-item__text {
        margin-top: 20px;
    }
}