.favorites-list {
        display: grid;
        gap: 14px;
    }

    .item {
        padding: 18px;
        display: grid;
        gap: 14px;
        background: var(--restaurant-surface);
        border: 1px solid var(--restaurant-line);
        border-radius: 20px;
        box-shadow: var(--restaurant-shadow);
    }

    .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .main {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .thumb {
        width: 92px;
        height: 92px;
        border-radius: 16px;
        object-fit: cover;
        background: #ece9e4;
        flex-shrink: 0;
    }

    .name {
        color: var(--restaurant-text);
        font-size: 1.05rem;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .price {
        color: var(--restaurant-text);
        font-size: 1rem;
        line-height: 1;
        font-weight: 500;
        white-space: nowrap;
    }

    .actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .open,
    .remove,
    .browse {
        min-height: 50px;
        padding: 0 22px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .open {
        border: 0;
        background: var(--restaurant-accent);
        color: var(--restaurant-text);
        box-shadow: 0 10px 20px rgba(242, 119, 162, 0.24);
    }

    .remove {
        border: 0;
        background: var(--restaurant-danger);
        color: #fff;
        box-shadow: 0 10px 20px rgba(255, 79, 64, 0.14);
    }

    .browse {
        background: var(--restaurant-accent);
        color: var(--restaurant-text);
        box-shadow: 0 10px 20px rgba(242, 119, 162, 0.24);
    }

    .empty {
        display: none;
    }

    @media (max-width: 720px) {
        .item {
            padding: 16px;
        }

        .thumb {
            width: 84px;
            height: 84px;
        }

        .actions {
            justify-content: stretch;
        }

        .open,
        .remove,
        .browse {
            width: 100%;
        }
    }

    .thumb {
        object-fit: contain;
        background: #f1ede7;
        padding: 8px;
    }
