.nav.items > .body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 10px;
}

.nav.items .entry {
    display: flex;
    gap: 10px;
}

.nav.items .entry > .frame_l {
    width: 306px;
    height: 180px;
    flex-shrink: 0;
    position: relative;
    background: #ddd;
}

.nav.items .entry > .frame_l > :first-child {
    display: block;
    margin: 0 auto;
}

.nav.items .entry > .frame_l > .like {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.nav.items .entry > .frame_l > .like > img {
    width: 30px;
    height: 30px;
}

.nav.items .entry > .frame_l > .like.active > :first-child,
.nav.items .entry > .frame_l > .like:not(.active) > :last-child
{display: none;}

.nav.items .entry > .frame_r,
.nav.items .entry > .frame_r > .extra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.nav.items .entry > .frame_r > .before,
.nav.items .entry > .frame_r > .extra > div {
    display: flex;
    justify-content: space-between;
}

.nav.items .entry > .frame_r #name {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.48px;
    user-select: text;
    cursor: pointer;
}

.nav.items .entry > .frame_r #price {
    width: 90px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.48px;
    text-align: right;
    user-select: text;
}

.nav.items .entry .extra > div:not(.active) {
    display: none;
}

.nav.items .entry .extra > div > :first-child {
    opacity: 0.4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.42px;
}

.nav.items .entry .extra > div > :last-child {
    flex-grow: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.42px;
    text-align: right;
    user-select: text;
}

.nav.items .entry .button {
    width: 130px;
    display: flex;
    padding: 5px 10px;
    border-radius: 30px;
    background: var(--color-dark);
    justify-content: center;
    align-items: center;
    cursor: pointer;

    color: var(--color-font-light);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.42px;
}

.nav.items .entry .button.active {
    background-color: var(--color-gray);
    color: var(--color-dark);
    border: 3px solid var(--color-dark);
    padding: 2.5px 10px;
    width: 124px;
}

.nav.items .entry .button_underline {
    width: 56px;
    opacity: 0.4;
    text-decoration-line: underline;
    cursor: pointer;
}

/* Кнопка удаления товара из корзины (отдельная, заметная, без переноса) */
.nav.items .entry .cart_delete {
    align-self: flex-start;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border: 1px solid rgba(8, 16, 36, 0.18);
    border-radius: 9px;
    background: #fff;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
    -webkit-tap-highlight-color: transparent;
}
.nav.items .entry .cart_delete > svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav.items .entry .cart_delete:hover,
.nav.items .entry .cart_delete:focus-visible {
    color: #c0392b;
    border-color: #c0392b;
    background: rgba(192, 57, 43, 0.06);
    outline: none;
}
.nav.items .entry .cart_delete:active { transform: scale(0.97); }